[package]
edition = "2021"
name = "aivcs-core"
version = "0.2.0"
authors = ["Stevedores Org <engineering@stevedores.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for AIVCS domain logic and orchestration"
readme = false
license = "Apache-2.0"
[lib]
name = "aivcs_core"
path = "src/lib.rs"
[[test]]
name = "compat"
path = "tests/compat.rs"
[[test]]
name = "deploy_by_digest"
path = "tests/deploy_by_digest.rs"
[[test]]
name = "diff"
path = "tests/diff.rs"
[[test]]
name = "eval_workflow"
path = "tests/eval_workflow.rs"
[[test]]
name = "graph_lifecycle"
path = "tests/graph_lifecycle.rs"
[[test]]
name = "merge_gate"
path = "tests/merge_gate.rs"
[[test]]
name = "node_path_diff"
path = "tests/node_path_diff.rs"
[[test]]
name = "observability"
path = "tests/observability.rs"
[[test]]
name = "promote_validator"
path = "tests/promote_validator.rs"
[[test]]
name = "publish_gate"
path = "tests/publish_gate.rs"
[[test]]
name = "state_diff"
path = "tests/state_diff.rs"
[[test]]
name = "tool_call_diff"
path = "tests/tool_call_diff.rs"
[[test]]
name = "version_consistency"
path = "tests/version_consistency.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.hex]
version = "0.4"
[dependencies.nix-env-manager]
version = "0.2.0"
[dependencies.oxidized-state]
version = "0.2.0"
[dependencies.oxidizedgraph]
version = "0.2.0"
[dependencies.semantic-rag-merge]
version = "0.2.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.tempfile]
version = "3.10"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.35"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[dependencies.uuid]
version = "1.6"
features = [
"v4",
"serde",
]
[dev-dependencies.tempfile]
version = "3.10"
[dev-dependencies.tokio]
version = "1.35"
features = [
"full",
"test-util",
]
[dev-dependencies.toml]
version = "0.8"