Files
teipe/Cargo.toml
2024-08-18 17:43:59 +02:00

37 lines
883 B
TOML

[workspace]
members = ["libeirs", "libxkbcommonrs"]
[workspace.dependencies]
tokio = { version = "1.39", features = [
"rt",
"macros",
"rt-multi-thread",
"net",
] }
tokio-stream = "0.1"
log = { version = "0.4", features = ["kv"] }
anyhow = "1.0"
bindgen = "0.70"
[package]
name = "teipe"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libeirs = { path = "libeirs" }
libxkbcommonrs = { path = "libxkbcommonrs" }
ashpd = "0.9"
env_logger = { version = "0.11", features = ["unstable-kv"] }
tokio = { workspace = true, features = ["rt", "net"] }
tokio-stream = { workspace = true }
tokio-util = "0.7"
log = { workspace = true, features = ["kv"] }
anyhow = { workspace = true }
widestring = "1.1.0"
polling = "3.7"
clap = { version = "4.5.16", features = ["derive"] }