fabro/lib/crates/fabro-core/Cargo.toml
Bryan Helmkamp 9aff6530b4 Add publish = false to all crates to prevent accidental crates.io publish
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-29 13:47:09 -04:00

27 lines
586 B
TOML

[package]
name = "fabro-core"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Generic workflow execution engine"
[lib]
doctest = false
[lints]
workspace = true
[dependencies]
async-trait.workspace = true
fabro-types = { path = "../fabro-types" }
fabro-util = { path = "../fabro-util" }
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
tokio.workspace = true
tokio-util.workspace = true
tracing.workspace = true
[dev-dependencies]
tokio = { workspace = true, features = ["test-util", "macros"] }