region-restriction-checker/Cargo.toml

18 lines
651 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.1.1"
2024-02-04 08:38:49 +05:30
actix-web = "4.5.1"
2022-11-23 11:10:44 +05:30
lazy_static = "1.4.0"
2024-09-12 15:05:53 +05:30
redis = { version = "0.27.0", default-features = false, features = ["tokio-comp", "connection-manager"] }
2024-03-23 07:27:09 +05:30
regex = "1.10.4"
2024-04-20 00:11:31 +05:30
reqwest = { version = "0.12.4", default-features = false, features = ["rustls-tls", "gzip", "json", "socks"] }
2024-05-02 01:19:25 +05:30
serde = {version = "1.0.200", default-features = false, features = ["derive"]}
serde_json = "1.0.116"
2024-03-29 02:14:30 +05:30
tokio = { version = "1.37.0", features = ["full"] }