region-restriction-checker/Cargo.toml

18 lines
650 B
TOML
Raw Normal View History

2022-11-23 11:10:44 +05:30
[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.4"
2023-02-26 10:22:54 +05:30
actix-web = "4.3.1"
2022-11-23 11:10:44 +05:30
lazy_static = "1.4.0"
2023-01-24 05:48:43 +05:30
redis = { version = "0.22.3", default-features = false, features = ["tokio-comp", "connection-manager"] }
2023-03-25 10:11:50 +05:30
regex = "1.7.3"
2023-03-28 00:47:12 +05:30
reqwest = { version = "0.11.16", default-features = false, features = ["rustls-tls", "gzip", "json", "socks"] }
2023-03-28 15:11:17 +05:30
serde = {version = "1.0.159", default-features = false, features = ["derive"]}
2023-03-28 00:48:58 +05:30
serde_json = "1.0.95"
2023-03-28 08:23:10 +05:30
tokio = { version = "1.27.0", features = ["full"] }