yieldskill 0.4.0

Build portable, resumable skill workflows in Rust.
Documentation
[package]
name = "yieldskill"
version = "0.4.0"
edition = "2021"
description = "Build portable, resumable skill workflows in Rust."
license = "MIT"
repository = "https://github.com/operatorstack/yield"
homepage = "https://yield.operatorstack.systems/"
documentation = "https://docs.rs/yieldskill"
readme = "README.md"
keywords = ["agents", "automation", "cli", "workflow"]
categories = ["command-line-utilities", "development-tools"]

[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
hex = "0.4"

[[bin]]
name = "yskill"
path = "src/bin/yskill.rs"

[target.'cfg(all(target_os = "macos", target_arch = "x86_64"))'.dependencies]
yieldskill-runtime-darwin-amd64 = { version = "=0.4.0" }

[target.'cfg(all(target_os = "macos", target_arch = "aarch64"))'.dependencies]
yieldskill-runtime-darwin-arm64 = { version = "=0.4.0" }

[target.'cfg(all(target_os = "linux", target_arch = "x86_64"))'.dependencies]
yieldskill-runtime-linux-amd64 = { version = "=0.4.0" }

[target.'cfg(all(target_os = "linux", target_arch = "aarch64"))'.dependencies]
yieldskill-runtime-linux-arm64 = { version = "=0.4.0" }

[target.'cfg(all(target_os = "windows", target_arch = "x86_64"))'.dependencies]
yieldskill-runtime-windows-amd64 = { version = "=0.4.0" }

[target.'cfg(all(target_os = "windows", target_arch = "aarch64"))'.dependencies]
yieldskill-runtime-windows-arm64 = { version = "=0.4.0" }