[package]
edition = "2021"
name = "yieldskill"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Build portable, resumable skill workflows in Rust."
homepage = "https://yield.operatorstack.systems/"
documentation = "https://docs.rs/yieldskill"
readme = "README.md"
keywords = [
"agents",
"automation",
"cli",
"workflow",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/operatorstack/yield"
[lib]
name = "yieldskill"
path = "src/lib.rs"
[[bin]]
name = "yskill"
path = "src/bin/yskill.rs"
[dependencies.hex]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[target.'cfg(all(target_os = "linux", target_arch = "aarch64"))'.dependencies.yieldskill-runtime-linux-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 = "macos", target_arch = "aarch64"))'.dependencies.yieldskill-runtime-darwin-arm64]
version = "=0.4.0"
[target.'cfg(all(target_os = "macos", target_arch = "x86_64"))'.dependencies.yieldskill-runtime-darwin-amd64]
version = "=0.4.0"
[target.'cfg(all(target_os = "windows", target_arch = "aarch64"))'.dependencies.yieldskill-runtime-windows-arm64]
version = "=0.4.0"
[target.'cfg(all(target_os = "windows", target_arch = "x86_64"))'.dependencies.yieldskill-runtime-windows-amd64]
version = "=0.4.0"