Files
honey-biscuit-workshop/workshop-engine/Cargo.toml
T
Catty Steve 8fd807f174 refactor!: extract execution engine into standalone workshop-engine
crate

BREAKING CHANGE: Moved engine/ module (cgroups, executor, pm, upm,
types) and shared types (command, repology, time) from workshop-baker to
new workshop-engine crate. All internal error types consolidated into
workshop-engine::error. Import paths changed throughout codebase.
2026-04-26 23:07:08 +08:00

22 lines
468 B
TOML

[package]
name = "workshop-engine"
version = "0.1.0"
edition = "2024"
[lib]
name = "workshop_engine"
path = "src/lib.rs"
[dependencies]
tokio = { version = "1.48.0", features = ["full"] }
thiserror = "2.0.17"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.148"
serde_yaml = "0.9.34"
chrono = { version = "0.4.42", features = ["serde"] }
async-trait = "0.1.87"
lazy_static = "1.5.0"
log = "0.4.28"
os_info = "3.14.0"
duration-str = "0.21.0"