lune/crates/lune-std-process/Cargo.toml
2025-04-29 15:59:49 +02:00

33 lines
731 B
TOML

[package]
name = "lune-std-process"
version = "0.2.1"
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.10.3", features = ["luau"] }
mlua-luau-scheduler = { version = "0.1.1", path = "../mlua-luau-scheduler" }
directories = "6.0"
pin-project = "1.0"
os_str_bytes = { version = "7.0", features = ["conversions"] }
bstr = "1.9"
bytes = "1.6.0"
async-channel = "2.3"
async-lock = "3.4"
async-process = "2.3"
blocking = "1.6"
futures-lite = "2.6"
futures-util = "0.3" # Needed for select! macro...
lune-utils = { version = "0.2.1", path = "../lune-utils" }