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