-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
32 lines (30 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
authors.workspace = true
description = "A wrapper for the Axum server for Torrust HTTP servers to add timeouts."
documentation.workspace = true
edition.workspace = true
homepage.workspace = true
keywords = [ "axum", "server", "torrust", "wrapper" ]
license.workspace = true
name = "torrust-axum-server"
publish.workspace = true
readme = "README.md"
repository.workspace = true
rust-version.workspace = true
version.workspace = true
[dependencies]
axum-server = { version = "0", features = [ "tls-rustls-no-provider" ] }
camino = { version = "1", features = [ "serde", "serde1" ] }
futures-util = "0"
http-body = "1"
hyper = "1"
hyper-util = { version = "0", features = [ "http1", "http2", "tokio" ] }
pin-project-lite = "0"
thiserror = "2"
tokio = { version = "1", features = [ "macros", "net", "rt-multi-thread", "signal", "sync" ] }
torrust-server-lib = { version = "3.0.0-develop", path = "../server-lib" }
torrust-tracker-configuration = { version = "3.0.0-develop", path = "../configuration" }
torrust-tracker-located-error = { version = "3.0.0-develop", path = "../located-error" }
tower = { version = "0", features = [ "timeout" ] }
tracing = "0"
[dev-dependencies]