2023-02-11 21:46:55 +01:00
|
|
|
[package]
|
2023-02-24 21:38:33 +01:00
|
|
|
name = "echoip-slatecave"
|
2023-10-30 01:56:18 +01:00
|
|
|
version = "1.2.0"
|
2023-02-11 21:46:55 +01:00
|
|
|
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]
|
2023-10-30 01:22:27 +01:00
|
|
|
lib-humus = { version="0.1", features=["axum-view+cookie"], git="https://codeberg.org/slatian/lib-humus.git" }
|
|
|
|
|
2023-02-21 10:00:10 +01:00
|
|
|
axum = { version = "0.6", features = ["macros", "headers"] }
|
2023-08-05 22:36:28 +02:00
|
|
|
axum-extra = { version = "0.7", features = ["cookie"] }
|
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-10-08 09:12:06 +02:00
|
|
|
serde = { version = "1", features = ["derive","rc"] }
|
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"
|
2023-02-25 13:30:46 +01:00
|
|
|
tower = "0.4"
|
|
|
|
tower-http = { version = "0.4", features = ["fs"] }
|
2023-02-24 11:43:29 +01:00
|
|
|
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"] }
|
2023-02-24 00:42:15 +01:00
|
|
|
maxminddb = "0.23"
|
2023-10-29 16:51:43 +01:00
|
|
|
mime = "0.3"
|