[package]
edition = "2021"
name = "torrust-tracker-deployer"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "torrust-tracker-deployer"
description = "Torrust Tracker Deployer - Deployment Infrastructure with Ansible and OpenTofu"
readme = "README.md"
license = "MIT"
repository = "https://github.com/torrust/torrust-tracker-deployer"
[lib]
name = "torrust_tracker_deployer_lib"
path = "src/lib.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 = "lock_holder_helper"
path = "src/bin/lock_holder_helper.rs"
[[bin]]
name = "lxd_cleanup"
path = "src/bin/lxd_cleanup.rs"
[[bin]]
name = "test_logging"
path = "src/bin/test_logging.rs"
[[bin]]
name = "torrust-tracker-deployer"
path = "src/main.rs"
[[test]]
name = "e2e_integration"
path = "tests/e2e_integration.rs"
[[test]]
name = "file_lock_multiprocess"
path = "tests/file_lock_multiprocess.rs"
[[test]]
name = "logging_integration"
path = "tests/logging_integration.rs"
[[test]]
name = "ssh_client_integration"
path = "tests/ssh_client_integration.rs"
[[test]]
name = "template_integration"
path = "tests/template_integration.rs"
[[test]]
name = "user_output_reentrancy"
path = "tests/user_output_reentrancy.rs"
[[test]]
name = "validate_ai_training_examples"
path = "tests/validate_ai_training_examples.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.0"
features = ["derive"]
[dependencies.derive_more]
version = "2.1"
features = [
"display",
"from",
]
[dependencies.figment]
version = "0.10"
features = ["json"]
[dependencies.parking_lot]
version = "0.12"
[dependencies.percent-encoding]
version = "2.0"
[dependencies.rand]
version = "0.9"
[dependencies.reqwest]
version = "0.12"
[dependencies.rust-embed]
version = "8.0"
[dependencies.schemars]
version = "1.1"
[dependencies.secrecy]
version = "0.10"
features = ["serde"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tempfile]
version = "3.0"
[dependencies.tera]
version = "1.0"
[dependencies.testcontainers]
version = "0.27"
features = ["blocking"]
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.0"
features = ["full"]
[dependencies.torrust-linting]
version = "0.1.0"
[dependencies.torrust-tracker-deployer-dependency-installer]
version = "0.1.0"
[dependencies.torrust-tracker-deployer-types]
version = "0.1.0"
[dependencies.tracing]
version = "0.1"
features = ["attributes"]
[dependencies.tracing-appender]
version = "0.2"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
"fmt",
]
[dependencies.url]
version = "2.0"
features = ["serde"]
[dependencies.uuid]
version = "1.0"
features = [
"v4",
"serde",
]
[dev-dependencies.regex]
version = "1.0"
[dev-dependencies.rstest]
version = "0.26"
[dev-dependencies.tracing-test]
version = "0.2"