domani/Cargo.toml

58 lines
1.7 KiB
TOML
Raw Normal View History

2023-05-03 07:58:06 +00:00
[package]
2023-06-25 11:35:59 +00:00
name = "domani"
2023-05-03 07:58:06 +00:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2023-05-07 11:22:55 +00:00
[dev-dependencies]
2023-05-07 16:07:31 +00:00
tempdir = "0.3.7"
2023-05-07 11:22:55 +00:00
2023-05-03 07:58:06 +00:00
[dependencies]
2023-05-03 10:42:00 +00:00
sha2 = "0.10.6"
hex = "0.4.3"
2023-05-04 12:56:31 +00:00
gix = { version = "0.44.1", features = [
"blocking-network-client",
"blocking-http-transport-reqwest-rust-tls",
]}
2023-05-06 13:38:43 +00:00
serde = { version = "1.0.162", features = [ "derive" ]}
serde_json = "1.0.96"
trust-dns-client = "0.22.0"
2023-05-07 15:17:04 +00:00
mockall = "0.11.4"
thiserror = "1.0.40"
tokio = { version = "1.34.0", features = ["full", "net", "signal"] }
signal-hook = "0.3.15"
futures = "0.3.28"
clap = { version = "4.2.7", features = ["derive", "env"] }
handlebars = { version = "4.3.7", features = [ "rust-embed" ]}
rust-embed = "6.6.1"
mime_guess = "2.0.4"
2023-05-20 12:28:02 +00:00
hyper = { version = "0.14.26", features = [ "server", "stream" ]}
http = "0.2.9"
serde_urlencoded = "0.7.1"
2023-07-31 18:46:54 +00:00
tokio-util = { version = "0.7.8", features = [ "io" ]}
acme2 = "0.5.1"
openssl = "0.10.52"
rustls = "0.21.1"
pem = "2.0.1"
serde_with = "3.0.0"
2023-05-20 12:28:02 +00:00
tls-listener = { version = "0.7.0", features = [ "rustls", "hyper-h1" ]}
tokio-rustls = "0.24.0"
2023-06-13 19:33:43 +00:00
log = "0.4.19"
env_logger = "0.10.0"
2023-07-09 14:09:00 +00:00
serde_yaml = "0.9.22"
rand = "0.8.5"
hyper-reverse-proxy = "0.5.2-dev"
2023-07-31 18:46:54 +00:00
gemini = "0.0.5"
bytes = "1.4.0"
hyper-trust-dns = "0.5.0"
gix-hash = "0.14.1"
reqwest = { version = "0.11.23", features = ["gzip", "deflate"] }
gix-object = "0.41.0"
[patch.crates-io]
# The micropelago fork of tokio-rustls allows for gemini proxying
tokio-rustls = { git = "https://code.betamike.com/micropelago/tokio-rustls.git", branch = "start-handshake-into-inner" }
hyper-reverse-proxy = { git = "https://code.betamike.com/micropelago/hyper-reverse-proxy.git", branch = "dont-set-host-header" }