Add new lune-roblox crate

This commit is contained in:
Filip Tibell 2024-04-22 22:59:20 +02:00
parent bc42cf5a37
commit 040c40a3b9
No known key found for this signature in database
4 changed files with 23 additions and 0 deletions

7
Cargo.lock generated
View file

@ -1537,6 +1537,13 @@ dependencies = [
"zip_next",
]
[[package]]
name = "lune-roblox"
version = "0.1.0"
dependencies = [
"mlua",
]
[[package]]
name = "lune-std"
version = "0.1.0"

View file

@ -3,6 +3,7 @@ resolver = "2"
default-members = ["crates/lune"]
members = [
"crates/lune",
"crates/lune-roblox",
"crates/lune-std",
"crates/lune-std-datetime",
"crates/lune-std-fs",

View file

@ -0,0 +1,14 @@
[package]
name = "lune-roblox"
version = "0.1.0"
edition = "2021"
license = "MPL-2.0"
[lib]
path = "src/lib.rs"
[lints]
workspace = true
[dependencies]
mlua = { version = "0.9.7", features = ["luau"] }

View file

@ -0,0 +1 @@
#![allow(clippy::cargo_common_metadata)]