PluralKit/crates/commands/Cargo.toml

21 lines
No EOL
452 B
TOML

[package]
name = "commands"
version = "0.1.0"
edition = "2021"
default-run = "commands"
[[bin]]
name = "write_cs_glue"
path = "src/bin/write_cs_glue.rs"
[lib]
crate-type = ["cdylib", "lib"]
[dependencies]
lazy_static = { workspace = true }
command_parser = { path = "../command_parser"}
command_definitions = { path = "../command_definitions"}
uniffi = { version = "0.25" }
[build-dependencies]
uniffi = { version = "0.25", features = [ "build" ] }