mirror of
https://github.com/outbackdingo/optimclaw.git
synced 2026-08-25 14:53:34 +00:00
30 lines
518 B
TOML
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
|