-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 959 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 959 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
25
26
27
28
29
30
[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 = "1", 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" }
url = "2"
[dev-dependencies]
uuid = { version = "1", features = ["v4"] }