region-restriction-checker/Cargo.toml

18 lines
651 B
TOML
Raw Normal View History

2022-11-23 05:40:44 +00:00
[package]
edition = "2021"
name = "region-restriction-checker"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-recursion = "1.1.0"
2024-02-04 03:08:49 +00:00
actix-web = "4.5.1"
2022-11-23 05:40:44 +00:00
lazy_static = "1.4.0"
2024-03-16 19:20:10 +00:00
redis = { version = "0.25.2", default-features = false, features = ["tokio-comp", "connection-manager"] }
2024-03-23 01:57:09 +00:00
regex = "1.10.4"
2024-03-25 15:42:52 +00:00
reqwest = { version = "0.12.2", default-features = false, features = ["rustls-tls", "gzip", "json", "socks"] }
2024-02-20 01:05:33 +00:00
serde = {version = "1.0.197", default-features = false, features = ["derive"]}
serde_json = "1.0.115"
2024-02-02 13:05:26 +00:00
tokio = { version = "1.36.0", features = ["full"] }