PluralKit/crates/commands/Cargo.toml
dusk eec9f64026
feat: implement proper ("static") parameters handling command parser -> bot
feat: handle few more commands bot side
fix(commands): handle missing parameters and return error
refactor(commands): use ordermap instead of relying on a sort function to sort tokens
2025-01-05 13:00:06 +09:00

17 lines
288 B
TOML

[package]
name = "commands"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[dependencies]
lazy_static = { workspace = true }
uniffi = { version = "0.25" }
smol_str = "0.3.2"
ordermap = "0.5"
[build-dependencies]
uniffi = { version = "0.25", features = [ "build" ] }