-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 1.02 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]
description = "A library to provide configuration to the Torrust Tracker."
keywords = [ "config", "library", "settings" ]
name = "torrust-tracker-configuration"
readme = "README.md"
authors.workspace = true
documentation.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
publish.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true
[dependencies]
camino = { version = "1", features = [ "serde", "serde1" ] }
derive_more = { version = "2", features = [ "constructor", "display" ] }
figment = { version = "0", features = [ "env", "test", "toml" ] }
serde = { version = "1", features = [ "derive" ] }
serde_json = { version = "1", features = [ "preserve_order" ] }
serde_with = "3"
thiserror = "2"
toml = "0"
torrust-tracker-located-error = { version = "3.0.0-develop", path = "../located-error" }
tracing = "0"
tracing-subscriber = { version = "0", features = [ "json" ] }
url = "2"
[dev-dependencies]
uuid = { version = "1", features = [ "v4" ] }