region-restriction-checker/Cargo.toml

18 lines
651 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.1.1"
2024-02-04 03:08:49 +00:00
actix-web = "4.5.1"
2022-11-23 05:40:44 +00:00
lazy_static = "1.4.0"
2024-04-04 12:13:10 +00:00
redis = { version = "0.25.3", default-features = false, features = ["tokio-comp", "connection-manager"] }
2024-03-23 01:57:09 +00:00
regex = "1.10.4"
2024-04-19 18:41:31 +00:00
reqwest = { version = "0.12.4", default-features = false, features = ["rustls-tls", "gzip", "json", "socks"] }
2024-05-01 19:49:25 +00:00
serde = {version = "1.0.200", default-features = false, features = ["derive"]}
serde_json = "1.0.116"
2024-03-28 20:44:30 +00:00
tokio = { version = "1.37.0", features = ["full"] }