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-08-29 01:32:33 +00:00
actix-web = "4.4.0"
2022-11-23 05:40:44 +00:00
lazy_static = "1.4.0"
2023-09-01 15:24:12 +00:00
redis = { version = "0.23.3", default-features = false, features = ["tokio-comp", "connection-manager"] }
2023-10-14 17:00:20 +00:00
regex = "1.10.1"
2023-10-03 13:38:25 +00:00
reqwest = { version = "0.11.22", default-features = false, features = ["rustls-tls", "gzip", "json", "socks"] }
2023-10-13 03:38:33 +00:00
serde = {version = "1.0.189", default-features = false, features = ["derive"]}
serde_json = "1.0.107"
2023-10-09 13:00:34 +00:00
tokio = { version = "1.33.0", features = ["full"] }