PluralKit/crates/commands/Cargo.toml

24 lines
485 B
TOML
Raw Normal View History

2024-09-13 16:02:30 +09:00
[package]
name = "commands"
version = "0.1.0"
edition = "2021"
default-run = "commands"
[[bin]]
name = "write_cs_glue"
2025-10-08 21:50:58 +00:00
path = "src/write_cs_glue.rs"
2024-09-13 16:02:30 +09:00
[lib]
crate-type = ["cdylib", "lib"]
2024-09-13 16:02:30 +09:00
[dependencies]
lazy_static = { workspace = true }
command_parser = { path = "../command_parser"}
command_definitions = { path = "../command_definitions"}
2025-10-08 14:22:10 +00:00
uniffi = { version = "0.29" }
log = "0.4"
simple_logger = "4.3.3"
2024-09-13 16:02:30 +09:00
[build-dependencies]
2025-10-08 21:50:58 +00:00
uniffi = { version = "0.29", features = [ "build" ] }