30 lines
752 B
TOML
30 lines
752 B
TOML
[package]
|
|
name = "zclaw-skills"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
description = "ZCLAW skill system"
|
|
|
|
[features]
|
|
default = []
|
|
wasm = ["wasmtime", "wasmtime-wasi/p1"]
|
|
|
|
[dependencies]
|
|
zclaw-types = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
regex = { workspace = true }
|
|
uuid = { workspace = true }
|
|
shlex = { workspace = true }
|
|
|
|
# Optional WASM runtime (enable with --features wasm)
|
|
wasmtime = { workspace = true, optional = true }
|
|
wasmtime-wasi = { workspace = true, optional = true }
|