region-restriction-checker/Cargo.toml

18 lines
652 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.0.5"
2023-12-24 18:42:38 +00:00
actix-web = "4.4.1"
2022-11-23 05:40:44 +00:00
lazy_static = "1.4.0"
2023-12-05 18:42:37 +00:00
redis = { version = "0.24.0", default-features = false, features = ["tokio-comp", "connection-manager"] }
2023-10-16 15:11:21 +00:00
regex = "1.10.2"
2023-12-18 21:19:25 +00:00
reqwest = { version = "0.11.23", default-features = false, features = ["rustls-tls", "gzip", "json", "socks"] }
2024-01-02 09:58:52 +00:00
serde = {version = "1.0.194", default-features = false, features = ["derive"]}
serde_json = "1.0.111"
2023-12-19 19:52:38 +00:00
tokio = { version = "1.35.1", features = ["full"] }