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.2"
2023-01-21 21:25:00 +00:00
actix-web = "4.3.0"
2022-11-23 05:40:44 +00:00
lazy_static = "1.4.0"
2023-01-24 00:18:43 +00:00
redis = { version = "0.22.3", default-features = false, features = ["tokio-comp", "connection-manager"] }
2023-01-09 17:29:45 +00:00
regex = "1.7.1"
2023-01-19 22:14:45 +00:00
reqwest = { version = "0.11.14", 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"]}
2023-02-09 00:01:40 +00:00
serde_json = "1.0.93"
2023-01-29 23:50:07 +00:00
tokio = { version = "1.25.0", features = ["full"] }