mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 04:50:36 +00:00
34 lines
712 B
TOML
34 lines
712 B
TOML
[package]
|
|
name = "lune-std-process"
|
|
version = "0.1.3"
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
repository = "https://github.com/lune-org/lune"
|
|
description = "Lune standard library - Process"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
mlua = { version = "0.9.9", features = ["luau"] }
|
|
mlua-luau-scheduler = { version = "0.0.2", path = "../mlua-luau-scheduler" }
|
|
|
|
directories = "5.0"
|
|
pin-project = "1.0"
|
|
os_str_bytes = { version = "7.0", features = ["conversions"] }
|
|
|
|
bstr = "1.9"
|
|
bytes = "1.6.0"
|
|
|
|
tokio = { version = "1", default-features = false, features = [
|
|
"io-std",
|
|
"io-util",
|
|
"process",
|
|
"rt",
|
|
"sync",
|
|
] }
|
|
|
|
lune-utils = { version = "0.1.3", path = "../lune-utils" }
|