[package]
edition = "2021"
name = "aivcs-core"
version = "0.3.1"
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"
homepage = "https://docs.stevedores.org/aivcs"
documentation = "https://docs.stevedores.org/aivcs"
readme = false
keywords = [
"ai",
"agents",
"version-control",
"workflow",
]
categories = ["development-tools"]
license = "Apache-2.0"
repository = "https://github.com/stevedores-org/aivcs"
[lib]
name = "aivcs_core"
path = "src/lib.rs"
[[test]]
name = "ci_workflow"
path = "tests/ci_workflow.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 = "hitl_controls"
path = "tests/hitl_controls.rs"
[[test]]
name = "memory_context"
path = "tests/memory_context.rs"
[[test]]
name = "memory_index_e2e"
path = "tests/memory_index_e2e.rs"
[[test]]
name = "memory_retention_e2e"
path = "tests/memory_retention_e2e.rs"
[[test]]
name = "merge_gate"
path = "tests/merge_gate.rs"
[[test]]
name = "multi_repo_epic9"
path = "tests/multi_repo_epic9.rs"
[[test]]
name = "node_path_diff"
path = "tests/node_path_diff.rs"
[[test]]
name = "observability"
path = "tests/observability.rs"
[[test]]
name = "planning_autonomy"
path = "tests/planning_autonomy.rs"
[[test]]
name = "promote_validator"
path = "tests/promote_validator.rs"
[[test]]
name = "publish_gate"
path = "tests/publish_gate.rs"
[[test]]
name = "quality_guardrails"
path = "tests/quality_guardrails.rs"
[[test]]
name = "replay_contract"
path = "tests/replay_contract.rs"
[[test]]
name = "role_orchestration"
path = "tests/role_orchestration.rs"
[[test]]
name = "role_orchestration_e2e"
path = "tests/role_orchestration_e2e.rs"
[[test]]
name = "role_orchestration_parallel"
path = "tests/role_orchestration_parallel.rs"
[[test]]
name = "sandbox_execution"
path = "tests/sandbox_execution.rs"
[[test]]
name = "sandbox_policy_e2e"
path = "tests/sandbox_policy_e2e.rs"
[[test]]
name = "self_healing"
path = "tests/self_healing.rs"
[[test]]
name = "state_diff"
path = "tests/state_diff.rs"
[[test]]
name = "tool_call_diff"
path = "tests/tool_call_diff.rs"
[[test]]
name = "tooling_sandbox"
path = "tests/tooling_sandbox.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.3.1"
[dependencies.oxidized-state]
version = "0.3.1"
[dependencies.oxidizedgraph]
version = "0.2.0"
[dependencies.semantic-rag-merge]
version = "0.3.1"
[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"