mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
Add new lune-roblox crate
This commit is contained in:
parent
bc42cf5a37
commit
040c40a3b9
4 changed files with 23 additions and 0 deletions
7
Cargo.lock
generated
7
Cargo.lock
generated
|
@ -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"
|
||||
|
|
|
@ -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",
|
||||
|
|
14
crates/lune-roblox/Cargo.toml
Normal file
14
crates/lune-roblox/Cargo.toml
Normal 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"] }
|
1
crates/lune-roblox/src/lib.rs
Normal file
1
crates/lune-roblox/src/lib.rs
Normal file
|
@ -0,0 +1 @@
|
|||
#![allow(clippy::cargo_common_metadata)]
|
Loading…
Add table
Reference in a new issue