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