mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-11 22:53:00 +00:00
28 lines
793 B
TOML
28 lines
793 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]
|
|
fabro-store = { path = "../fabro-store", features = ["test-support"] }
|
|
object_store.workspace = true
|
|
tokio = { workspace = true, features = ["full"] }
|