lune/crates/lune-std-stdio/Cargo.toml

26 lines
556 B
TOML
Raw Normal View History

2024-05-12 12:30:32 +01:00
[package]
name = "lune-std-stdio"
2024-08-10 12:07:56 +01:00
version = "0.1.2"
2024-05-12 12:30:32 +01:00
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/lune-org/lune"
description = "Lune standard library - Stdio"
2024-05-12 12:30:32 +01:00
[lib]
path = "src/lib.rs"
[lints]
workspace = true
[dependencies]
dialoguer = "0.11"
2024-08-10 12:07:56 +01:00
mlua = { version = "0.9.9", features = ["luau"] }
mlua-luau-scheduler = { version = "0.0.2", path = "../mlua-luau-scheduler" }
2024-05-12 12:30:32 +01:00
tokio = { version = "1", default-features = false, features = [
"io-std",
"io-util",
] }
2024-08-10 12:07:56 +01:00
lune-utils = { version = "0.1.3", path = "../lune-utils" }