mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-03-31 17:55:36 +00:00
36 lines
1.3 KiB
TOML
36 lines
1.3 KiB
TOML
[package]
|
|
name = "aquatic_http_private"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/greatest-ape/aquatic"
|
|
keywords = ["http", "benchmark", "peer-to-peer", "torrent", "bittorrent"]
|
|
|
|
[lib]
|
|
name = "aquatic_http_private"
|
|
|
|
[[bin]]
|
|
name = "aquatic_http_private"
|
|
|
|
[dependencies]
|
|
aquatic_common = { version = "0.2.0", path = "../aquatic_common", features = ["rustls-config"] }
|
|
aquatic_http_protocol = { version = "0.2.0", path = "../aquatic_http_protocol", features = ["with-axum"] }
|
|
aquatic_toml_config = { version = "0.2.0", path = "../aquatic_toml_config" }
|
|
|
|
anyhow = "1"
|
|
axum = { version = "0.5", default-features = false, features = ["headers", "http1", "matched-path", "original-uri"] }
|
|
dotenv = "0.15"
|
|
futures-util = { version = "0.3", default-features = false }
|
|
hex = "0.4"
|
|
hyper = "0.14"
|
|
log = "0.4"
|
|
mimalloc = { version = "0.1", default-features = false }
|
|
rand = { version = "0.8", features = ["small_rng"] }
|
|
rustls = "0.20"
|
|
serde = { version = "1", features = ["derive"] }
|
|
signal-hook = { version = "0.3" }
|
|
socket2 = { version = "0.4", features = ["all"] }
|
|
sqlx = { version = "0.5", features = [ "runtime-tokio-rustls" , "mysql" ] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-rustls = "0.23"
|