Files
optimclaw/channels-src/slack/Cargo.toml
T

30 lines
518 B
TOML

[package]
name = "slack-channel"
version = "0.1.0"
edition = "2021"
description = "Slack Events API channel for NEAR Agent"
license = "MIT OR Apache-2.0"
[lib]
crate-type = ["cdylib"]
[dependencies]
# WIT bindgen for WASM component model
wit-bindgen = "0.36"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# HMAC for signature validation
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
[profile.release]
# Optimize for size
opt-level = "s"
lto = true
strip = true
codegen-units = 1