-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathCargo.toml
More file actions
21 lines (20 loc) · 828 Bytes
/
Cargo.toml
File metadata and controls
21 lines (20 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[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-net-primitives = { version = "3.0.0-develop", path = "../net-primitives" }
tower-http = { version = "0", features = [ "compression-full", "cors", "propagate-header", "request-id", "trace" ] }
tracing = "0"