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"] }
2024-01-21 15:32:52 +00:00
regex = "1.10.3"
2024-01-31 19:46:43 +00:00
reqwest = { version = "0.11.24", default-features = false, features = ["rustls-tls", "gzip", "json", "socks"] }
2024-01-26 23:27:50 +00:00
serde = {version = "1.0.196", default-features = false, features = ["derive"]}
serde_json = "1.0.113"
2024-02-02 13:05:26 +00:00
tokio = { version = "1.36.0", features = ["full"] }