forked from torrust/torrust-tracker
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 858 Bytes
/
Cargo.toml
File metadata and controls
24 lines (22 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
authors.workspace = true
description = "Common functionality used in all Torrust HTTP servers."
documentation.workspace = true
edition.workspace = true
homepage.workspace = true
keywords = ["lib", "server", "torrust"]
license.workspace = true
name = "torrust-server-lib"
publish.workspace = true
readme = "README.md"
repository.workspace = true
rust-version.workspace = true
version.workspace = true
[dependencies]
derive_more = { version = "2", features = ["as_ref", "constructor", "display", "from"] }
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
torrust-tracker-primitives = { version = "3.0.0-develop", path = "../primitives" }
tower-http = { version = "0", features = ["compression-full", "cors", "propagate-header", "request-id", "trace"] }
tracing = "0"
[dev-dependencies]
rstest = "0.25.0"