[package]
edition = "2024"
name = "pupoxide"
version = "0.2.3"
authors = ["iTmage Lab <contact@itmagelab.ru>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance, memory-safe, declarative configuration management tool inspired by Puppet."
homepage = "https://gitverse.ru/itmagelab/pupoxide"
readme = "README.md"
keywords = [
"scm",
"puppet",
"automation",
"devops",
"IaC",
]
categories = [
"config",
"os",
]
license = "MIT"
repository = "https://gitverse.ru/itmagelab/pupoxide"
[lib]
name = "pupoxide"
path = "src/lib.rs"
[[bin]]
name = "pupoxide"
path = "src/main.rs"
[[test]]
name = "environment_test"
path = "tests/environment_test.rs"
[[test]]
name = "exec_test"
path = "tests/exec_test.rs"
[[test]]
name = "fs_test"
path = "tests/fs_test.rs"
[[test]]
name = "import_test"
path = "tests/import_test.rs"
[[test]]
name = "package_test"
path = "tests/package_test.rs"
[[test]]
name = "parallel_execution_test"
path = "tests/parallel_execution_test.rs"
[[test]]
name = "partial_failure_test"
path = "tests/partial_failure_test.rs"
[[test]]
name = "repro_include_method"
path = "tests/repro_include_method.rs"
[[test]]
name = "role_constraints_test"
path = "tests/role_constraints_test.rs"
[[test]]
name = "roles_profiles_test"
path = "tests/roles_profiles_test.rs"
[[test]]
name = "stdlib_module_test"
path = "tests/stdlib_module_test.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.8"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.colored]
version = "2.1"
[dependencies.nix]
version = "0.30.1"
features = [
"user",
"fs",
]
[dependencies.petgraph]
version = "0.8.3"
features = [
"serde",
"serde-1",
]
[dependencies.rcgen]
version = "0.12"
[dependencies.reqwest]
version = "0.13.1"
features = ["json"]
[dependencies.rhai]
version = "1.19"
features = ["sync"]
[dependencies.rustls-pemfile]
version = "2.0"
[dependencies.sea-orm]
version = "1.1"
features = [
"sqlx-postgres",
"runtime-tokio-rustls",
"macros",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.sysinfo]
version = "0.37"
[dependencies.tera]
version = "1.20"
[dependencies.thiserror]
version = "2.0"
[dependencies.time]
version = "0.3"
[dependencies.tokio]
version = "1.41"
features = ["full"]
[dependencies.tokio-rustls]
version = "0.24"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.uuid]
version = "1.6"
features = [
"v4",
"serde",
]
[dependencies.validator]
version = "0.20"
features = ["derive"]
[dependencies.yaml_serde]
version = "0.10"
[dev-dependencies.tempfile]
version = "3"