xcrab/Cargo.toml

21 lines
402 B
TOML
Raw Permalink Normal View History

2022-06-24 10:46:16 -05:00
[package]
name = "xcrab"
version = "0.1.0"
edition = "2021"
[dependencies]
2022-06-24 14:23:03 -05:00
breadx = { version = "2.0.0", features = ["async"] }
tokio = { version = "1.19.2", features = ["full"] }
2022-06-25 19:40:09 -05:00
toml = "0.5.9"
serde = { version = "1.0.137", features = ["derive"]}
lazy_static = "1.4.0"
2022-06-26 17:27:47 -05:00
slotmap = "1.0.6"
gluten-keyboard = "0.1.2"
2023-04-17 10:39:58 -05:00
thiserror = "1.0.40"
2022-06-27 00:53:40 -05:00
[[bin]]
name = "xcrab-msg"
path = "src/msg/main.rs"
2022-06-27 10:24:49 -05:00
2022-06-28 02:00:12 -05:00
[features]