mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
33 lines
849 B
TOML
33 lines
849 B
TOML
[package]
|
|
name = "fabro-tool"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
publish = false
|
|
license.workspace = true
|
|
description = "Shared Fabro run-control tool behavior"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-trait.workspace = true
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
fabro-api = { path = "../../foundation/fabro-api" }
|
|
fabro-client = { path = "../../foundation/fabro-client" }
|
|
fabro-types = { path = "../../foundation/fabro-types" }
|
|
fabro-util = { path = "../../foundation/fabro-util" }
|
|
futures.workspace = true
|
|
schemars = "1.2.1"
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
strum.workspace = true
|
|
tokio.workspace = true
|
|
toml.workspace = true
|
|
|
|
[dev-dependencies]
|
|
fabro-types = { path = "../../foundation/fabro-types", features = ["test-support"] }
|
|
tempfile = "3"
|