nitai/projects
rblxtool / src / crates / rblx-core / Cargo.toml
27 lines · 845 B Raw
1[package]
2name = "rblx-core"
3version = "1.0.0"
4edition = "2021"
5
6[dependencies]
7tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time", "net", "signal"] }
8hyper = { version = "1", features = ["client", "http1", "http2"] }
9hyper-util = { version = "0.1", features = ["client", "client-legacy", "http1", "http2", "tokio"] }
10hyper-rustls = { version = "0.27", default-features = false, features = ["http1", "http2", "ring", "webpki-tokio", "tls12"] }
11rustls = { version = "0.23", default-features = false, features = ["ring", "tls12"] }
12http-body-util = "0.1"
13bytes = "1"
14serde = { version = "1", features = ["derive"] }
15serde_json = "1"
16simd-json = "0.15"
17parking_lot = "0.12"
18dashmap = "6"
19aes-gcm = "0.10"
20argon2 = "0.5"
21rand = "0.9"
22sha2 = "0.10"
23hex = "0.4"
24base64 = "0.22"
25url = "2"
26thiserror = "2"
27mimalloc = "0.1"