-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
79 lines (69 loc) · 2.17 KB
/
Cargo.toml
File metadata and controls
79 lines (69 loc) · 2.17 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[workspace]
members = [
"packages/dependency-installer",
"packages/sdk",
"packages/deployer-types",
]
resolver = "2"
[package]
name = "torrust-tracker-deployer"
version = "0.1.0"
edition = "2021"
description = "Torrust Tracker Deployer - Deployment Infrastructure with Ansible and OpenTofu"
license = "MIT"
repository = "https://github.com/torrust/torrust-tracker-deployer"
readme = "README.md"
default-run = "torrust-tracker-deployer"
[lib]
name = "torrust_tracker_deployer_lib"
[[bin]]
name = "torrust-tracker-deployer"
path = "src/main.rs"
[[bin]]
name = "e2e-complete-workflow-tests"
path = "src/bin/e2e_complete_workflow_tests.rs"
[[bin]]
name = "e2e-deployment-workflow-tests"
path = "src/bin/e2e_deployment_workflow_tests.rs"
[[bin]]
name = "e2e-infrastructure-lifecycle-tests"
path = "src/bin/e2e_infrastructure_lifecycle_tests.rs"
[[bin]]
name = "linter"
path = "src/bin/linter.rs"
[[bin]]
name = "test_logging"
path = "src/bin/test_logging.rs"
[dependencies]
tokio = { version = "1.0", features = [ "full" ] }
anyhow = "1.0"
base64 = "0.22"
chrono = { version = "0.4", features = [ "serde" ] }
clap = { version = "4.0", features = [ "derive" ] }
derive_more = { version = "2.1", features = [ "display", "from" ] }
figment = { version = "0.10", features = [ "json" ] }
parking_lot = "0.12"
percent-encoding = "2.0"
rand = "0.9"
reqwest = "0.12"
rust-embed = "8.0"
schemars = "1.1"
secrecy = { version = "0.10", features = [ "serde" ] }
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
tempfile = "3.0"
tera = "1.0"
testcontainers = { version = "0.27", features = [ "blocking" ] }
thiserror = "2.0"
torrust-tracker-deployer-dependency-installer = { path = "packages/dependency-installer", version = "0.1.0" }
torrust-tracker-deployer-types = { path = "packages/deployer-types", version = "0.1.0" }
torrust-linting = "0.1.0"
tracing = { version = "0.1", features = [ "attributes" ] }
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = [ "env-filter", "json", "fmt" ] }
url = { version = "2.0", features = [ "serde" ] }
uuid = { version = "1.0", features = [ "v4", "serde" ] }
[dev-dependencies]
regex = "1.0"
rstest = "0.26"
tracing-test = "0.2"