echoip-slatecave/Cargo.toml

27 lines
798 B
TOML
Raw Normal View History

2023-02-11 21:46:55 +01:00
[package]
name = "echoip-slatecave"
2023-02-11 21:46:55 +01:00
version = "0.1.0"
edition = "2021"
2023-02-18 22:16:09 +01:00
authors = ["Slatian <baschdel@disroot.org>"]
2023-02-11 21:46:55 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.6", features = ["macros", "headers"] }
2023-02-18 22:16:09 +01:00
axum-client-ip = "0.4"
clap = { version = "4", features = ["derive"] }
2023-02-25 12:14:50 +01:00
governor = "0.5"
2023-02-23 00:58:38 +01:00
idna = "0.3"
2023-02-22 23:07:43 +01:00
lazy_static = "1.4.0"
2023-03-26 14:27:16 +02:00
parking_lot = "0.12"
2023-02-22 23:07:43 +01:00
regex = "1.7"
2023-02-11 21:46:55 +01:00
serde = { version = "1", features = ["derive"] }
2023-07-19 22:39:13 +02:00
tokio = { version = "1", features = ["macros","signal"] }
2023-02-11 21:46:55 +01:00
tera = "1"
2023-02-18 22:16:09 +01:00
toml = "0.7"
tower = "0.4"
tower-http = { version = "0.4", features = ["fs"] }
trust-dns-proto = "0.22"
2023-08-04 00:00:21 +02:00
trust-dns-resolver = { version = "0.22", features = ["dns-over-rustls","dns-over-https","dns-over-quic"] }
maxminddb = "0.23"