[package]
edition = "2021"
rust-version = "1.88"
name = "onepipeline"
version = "0.22.2"
build = false
include = [
"src/**/*.rs",
"tests/**/*.rs",
"tests/e2e/hook.sh",
"tests/e2e/hook.bat",
"tests/e2e/probe.sh",
"tests/e2e/probe.bat",
"tests/golden/*.json",
"Cargo.toml",
"README.md",
"LICENSE",
"/docs/contract.md",
"/personas/**",
"/graphs/**",
"/examples/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Execute a task DAG over oneagentgraph and onevcs, merging their event streams into one."
homepage = "https://github.com/nickderobertis/onepipeline"
readme = "README.md"
keywords = [
"orchestration",
"dag",
"agents",
"cli",
"ndjson",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/nickderobertis/onepipeline"
[lib]
name = "onepipeline"
path = "src/lib.rs"
[[bin]]
name = "onepipeline"
path = "src/main.rs"
[[test]]
name = "contract"
path = "tests/contract.rs"
[[test]]
name = "coverage"
path = "tests/coverage.rs"
[[test]]
name = "e2e"
path = "tests/e2e/main.rs"
[[test]]
name = "linked_engines"
path = "tests/linked_engines.rs"
[[test]]
name = "note"
path = "tests/note/main.rs"
[[test]]
name = "oneagentgraph_liveness"
path = "tests/oneagentgraph_liveness.rs"
[[test]]
name = "onevcs_seam"
path = "tests/onevcs_seam.rs"
[[test]]
name = "patch_pin"
path = "tests/patch_pin.rs"
[[test]]
name = "provisioning"
path = "tests/provisioning.rs"
[[test]]
name = "published_smoke"
path = "tests/published_smoke.rs"
[[test]]
name = "release_targets"
path = "tests/release_targets.rs"
[[test]]
name = "replay"
path = "tests/replay.rs"
[[test]]
name = "smoke"
path = "tests/smoke/main.rs"
[dependencies.clap]
version = "4.6"
features = ["derive"]
[dependencies.minijinja]
version = "2.24"
[dependencies.oneagentgraph]
version = "0.3.15"
[dependencies.onejudge]
version = "0.7.0"
[dependencies.onevcs]
version = "0.19.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = [
"preserve_order",
"float_roundtrip",
]
[dependencies.serde_norway]
version = "0.9"
[dependencies.serde_path_to_error]
version = "0.1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.fs4]
version = "0.13"
[dev-dependencies.onevcs-testing]
version = "0.5.5"
[dev-dependencies.sha2]
version = "0.10"
[dev-dependencies.toml]
version = "1"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_System_Console",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_Threading",
]
[profile.release]
lto = "thin"
codegen-units = 1
strip = true