Files
ironclaw/tools-src/github/Cargo.toml
Henry Park 97ccfd4a28 Expand GitHub WASM tool surface (#1884)
* Expand GitHub WASM tool surface

* Tighten GitHub tool input validation
2026-04-01 14:54:26 -07:00

26 lines
429 B
TOML

[package]
name = "github-tool"
version = "0.2.2"
edition = "2021"
description = "GitHub integration tool for IronClaw (WASM component)"
license = "MIT OR Apache-2.0"
publish = false
[dependencies]
base64 = "0.22"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.41.0"
[lib]
crate-type = ["cdylib"]
[profile.release]
opt-level = "s"
lto = true
strip = true
codegen-units = 1
[workspace]