mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
Add the WorkflowVersion domain resource with exactly entrypoint, files, and workflow_dependencies, plus strict WorkflowPath validation and deterministic canonical raw JSON. Semantic validation of graph imports, templates, file references, workflow.toml rules, Dockerfile paths, and exact child-workflow dependency bindings lives in the new fabro-workflow-version crate, which validates the complete stored dependency closure through the shared blob store before writing a root. The authenticated create-only POST /api/v1/workflow-versions endpoint ships with its OpenAPI contract, Rust type replacements, and generated TypeScript client. Squashed from the resource commits of the original combined branch; the walker unification this builds on landed separately. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
27 lines
722 B
TOML
27 lines
722 B
TOML
[package]
|
|
name = "fabro-workflow-version"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
publish = false
|
|
license.workspace = true
|
|
description = "Semantic validation and storage for immutable workflow versions"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
fabro-config = { path = "../../foundation/fabro-config" }
|
|
fabro-graphviz = { path = "../fabro-graphviz" }
|
|
fabro-store = { path = "../fabro-store" }
|
|
fabro-template = { path = "../../foundation/fabro-template" }
|
|
fabro-types = { path = "../../foundation/fabro-types" }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
|
|
[dev-dependencies]
|
|
object_store.workspace = true
|
|
tokio = { workspace = true, features = ["full"] }
|