mirror of
https://github.com/lune-org/lune.git
synced 2025-05-04 10:43:57 +01:00
33 lines
731 B
TOML
33 lines
731 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.10.3", features = ["luau"] }
|
|
mlua-luau-scheduler = { version = "0.0.2", 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.1.3", path = "../lune-utils" }
|