nitai/projects
rblxtool / src / crates / rblx-cli / Cargo.toml
14 lines · 365 B Raw
1[package]
2name = "rblx-cli"
3version = "1.0.0"
4edition = "2021"
5[[bin]]
6name = "rblxtool"
7path = "src/main.rs"
8[dependencies]
9rblx-core = { path = "../rblx-core" }
10tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "signal", "io-std", "io-util"] }
11bytes = "1"
12serde = { version = "1", features = ["derive"] }
13serde_json = "1"
14mimalloc = "0.1"