mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 13:00:37 +00:00
23 lines
515 B
TOML
23 lines
515 B
TOML
[package]
|
|
name = "lune-std-fs"
|
|
version = "0.1.2"
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
repository = "https://github.com/lune-org/lune"
|
|
description = "Lune standard library - FS"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
mlua = { version = "0.9.9", features = ["luau"] }
|
|
|
|
bstr = "1.9"
|
|
|
|
tokio = { version = "1", default-features = false, features = ["fs"] }
|
|
|
|
lune-utils = { version = "0.1.3", path = "../lune-utils" }
|
|
lune-std-datetime = { version = "0.1.2", path = "../lune-std-datetime" }
|