28 lines
728 B
TOML
28 lines
728 B
TOML
[package]
|
|
name = "mybar"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
wayland-backend = { version = "0.3.6", features = ["client_system"] }
|
|
wayland-client = "0.31.5"
|
|
wayland-scanner = "0.31.4"
|
|
wayland-protocols-wlr = { version = "0.3.3", features = ["client"] }
|
|
wayland-protocols = { version = "0.32.3", features = ["client"]}
|
|
|
|
tempfile = "3.2"
|
|
bitflags = "2"
|
|
rustix = { version = "0.38.0", features = ["event"] }
|
|
log = { version = "0.4", optional = true }
|
|
wgpu = "22.1.0"
|
|
raw-window-handle = { version = "0.6.2", features = ["alloc"] }
|
|
smithay-client-toolkit = "0.19.2"
|
|
|
|
[dev-dependencies]
|
|
futures-channel = "0.3.16"
|
|
futures-util = "0.3"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|