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