region-restriction-checker/Cargo.toml

18 lines
650 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.4"
2023-02-26 04:52:54 +00:00
actix-web = "4.3.1"
2022-11-23 05:40:44 +00:00
lazy_static = "1.4.0"
2023-04-05 06:54:55 +00:00
redis = { version = "0.23.0", default-features = false, features = ["tokio-comp", "connection-manager"] }
2023-05-25 21:25:05 +00:00
regex = "1.8.3"
2023-05-16 22:04:01 +00:00
reqwest = { version = "0.11.18", default-features = false, features = ["rustls-tls", "gzip", "json", "socks"] }
2023-05-11 05:24:09 +00:00
serde = {version = "1.0.163", default-features = false, features = ["derive"]}
2023-04-13 04:33:46 +00:00
serde_json = "1.0.96"
2023-05-27 21:59:54 +00:00
tokio = { version = "1.28.2", features = ["full"] }