Files
optimclaw/channels-src/discord/Cargo.toml
T
c592c50dad discord: mentions + signature verification in WASM channel (#335)
* discord: address PR feedback on polling, auth, and tests

* discord: add signature verification dependencies on latest main

* test(discord): expand coverage for helper and signature edge cases

---------

Co-authored-by: firat.sertgoz <[email protected]>
2026-03-12 12:13:42 -07:00

28 lines
504 B
TOML

[package]
name = "discord-channel"
version = "0.2.0"
edition = "2021"
description = "Discord channel for IronClaw"
license = "MIT OR Apache-2.0"
publish = false
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.36"
ed25519-dalek = { version = "2", default-features = false, features = ["alloc", "fast", "zeroize"] }
hex = "0.4"
[lib]
crate-type = ["cdylib"]
[profile.release]
strip = true
opt-level = "s"
lto = true
codegen-units = 1
[workspace]