mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-10 22:43:37 +00:00
Share canonicalize_location and resolve_existing_workflow_location between the local package resolver and the version collector, drop the redundant package-root pre-check and the PackageFileReadError enum in favor of anyhow context, and read HEAD's SHA from git2 instead of a separate rev-parse subprocess. Make GitRunTargetObservation a plain struct, replace the repo-info tuple with a named struct, tighten the closure view trait, avoid deep-cloning the root workflow during collected validation, remove the unused into_closure accessor, and dedupe test helpers. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
35 lines
950 B
TOML
35 lines
950 B
TOML
[package]
|
|
name = "fabro-manifest"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
publish = false
|
|
license.workspace = true
|
|
description = "Fabro run manifest construction"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
fabro-api = { path = "../../foundation/fabro-api" }
|
|
fabro-config = { path = "../../foundation/fabro-config" }
|
|
fabro-github = { path = "../fabro-github" }
|
|
fabro-graphviz = { path = "../fabro-graphviz" }
|
|
fabro-template = { path = "../../foundation/fabro-template" }
|
|
fabro-types = { path = "../../foundation/fabro-types" }
|
|
fabro-workflow = { path = "../fabro-workflow" }
|
|
fabro-workflow-version = { path = "../fabro-workflow-version" }
|
|
git2.workspace = true
|
|
thiserror.workspace = true
|
|
toml.workspace = true
|
|
|
|
[dev-dependencies]
|
|
fabro-test.workspace = true
|
|
fabro-util = { path = "../../foundation/fabro-util" }
|
|
insta.workspace = true
|
|
serde_json.workspace = true
|
|
tempfile = "3"
|
|
temp-env = "0.3"
|