[package]
edition = "2024"
rust-version = "1.88"
name = "ignition-core"
version = "1.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for ign: config, profiles, gateway client, actions, error taxonomy"
readme = false
license = "MIT"
repository = "https://github.com/TheThoughtagen/ignition-cli"
[lib]
name = "ignition_core"
path = "src/lib.rs"
[[test]]
name = "api_classify_contract"
path = "tests/api_classify_contract.rs"
[[test]]
name = "backup_contract"
path = "tests/backup_contract.rs"
[[test]]
name = "eam_contract"
path = "tests/eam_contract.rs"
[[test]]
name = "edit_pipeline"
path = "tests/edit_pipeline.rs"
[[test]]
name = "gateway_info_contract"
path = "tests/gateway_info_contract.rs"
[[test]]
name = "keyring_smoke"
path = "tests/keyring_smoke.rs"
[[test]]
name = "lint_contract"
path = "tests/lint_contract.rs"
[[test]]
name = "live_gateway"
path = "tests/live_gateway.rs"
[[test]]
name = "logs_contract"
path = "tests/logs_contract.rs"
[[test]]
name = "projects_contract"
path = "tests/projects_contract.rs"
[[test]]
name = "resources_contract"
path = "tests/resources_contract.rs"
[[test]]
name = "restart_wait_contract"
path = "tests/restart_wait_contract.rs"
[[test]]
name = "script_contract"
path = "tests/script_contract.rs"
[[test]]
name = "scripts_codec_contract"
path = "tests/scripts_codec_contract.rs"
[[test]]
name = "session_contract"
path = "tests/session_contract.rs"
[[test]]
name = "sessions_contract"
path = "tests/sessions_contract.rs"
[[test]]
name = "status_contract"
path = "tests/status_contract.rs"
[[test]]
name = "tags_contract"
path = "tests/tags_contract.rs"
[[test]]
name = "trial_contract"
path = "tests/trial_contract.rs"
[[test]]
name = "webdev_contract"
path = "tests/webdev_contract.rs"
[[test]]
name = "workspace_checkout"
path = "tests/workspace_checkout.rs"
[[test]]
name = "workspace_path_mapping"
path = "tests/workspace_path_mapping.rs"
[[test]]
name = "workspace_status_push"
path = "tests/workspace_status_push.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.csv]
version = "1"
[dependencies.directories]
version = "6.0"
[dependencies.futures-util]
version = "0.3"
features = ["std"]
default-features = false
[dependencies.keyring]
version = "4.1"
[dependencies.percent-encoding]
version = "2"
[dependencies.quick-xml]
version = "0.41"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"query",
"stream",
]
default-features = true
[dependencies.semver]
version = "1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
features = ["raw_value"]
[dependencies.tempfile]
version = "3.27"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.53"
features = [
"rt-multi-thread",
"macros",
"time",
"fs",
"io-std",
"io-util",
"process",
"sync",
]
[dependencies.toml]
version = "1.1"
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2.5"
features = ["serde"]
[dependencies.zip]
version = "8.6"
features = ["deflate"]
default-features = false
[dev-dependencies.proptest]
version = "1.11.0"
[dev-dependencies.tempfile]
version = "3.27"
[dev-dependencies.wiremock]
version = "0.6"