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.0"
actix-web = "4.2.1"
lazy_static = "1.4.0"
2023-01-08 01:19:34 +00:00
redis = { version = "0.22.2", default-features = false, features = ["tokio-comp", "connection-manager"] }
2022-11-23 05:40:44 +00:00
regex = "1.7.0"
reqwest = { version = "0.11.13", default-features = false, features = ["rustls-tls", "gzip", "json", "socks"] }
2022-12-26 19:52:17 +00:00
serde = {version = "1.0.152", default-features = false, features = ["derive"]}
2022-12-18 19:17:59 +00:00
serde_json = "1.0.91"
2023-01-06 12:24:43 +00:00
tokio = { version = "1.24.1", features = ["full"] }