-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (55 loc) · 1.56 KB
/
Cargo.toml
File metadata and controls
65 lines (55 loc) · 1.56 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
[workspace]
members = [
"packages/linting",
"packages/dependency-installer",
]
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"
default-run = "torrust-tracker-deployer"
[lib]
name = "torrust_tracker_deployer_lib"
[[bin]]
name = "torrust-tracker-deployer"
path = "src/main.rs"
[[bin]]
name = "e2e-tests-full"
path = "src/bin/e2e_tests_full.rs"
[[bin]]
name = "e2e-config-tests"
path = "src/bin/e2e_config_tests.rs"
[[bin]]
name = "e2e-provision-and-destroy-tests"
path = "src/bin/e2e_provision_and_destroy_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"
chrono = { version = "0.4", features = [ "serde" ] }
clap = { version = "4.0", features = [ "derive" ] }
derive_more = "0.99"
figment = { version = "0.10", features = [ "json" ] }
rust-embed = "8.0"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
tempfile = "3.0"
tera = "1.0"
testcontainers = { version = "0.25", features = [ "blocking" ] }
thiserror = "1.0"
torrust-linting = { path = "packages/linting" }
tracing = { version = "0.1", features = [ "attributes" ] }
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = [ "env-filter", "json", "fmt" ] }
uuid = { version = "1.0", features = [ "v4", "serde" ] }
[dev-dependencies]
rstest = "0.23"
tracing-test = "0.2"