2024-04-13 17:56:02 +02:00
|
|
|
[package]
|
|
|
|
name = "wlcs_pinnacle"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
smithay = { workspace = true }
|
2024-06-14 00:21:32 +02:00
|
|
|
pinnacle = { path = "..", features = ["wlcs"], default-features = false }
|
|
|
|
pinnacle-api = { path = "../api/rust", default-features = false }
|
2024-04-13 17:56:02 +02:00
|
|
|
wayland-sys = { version = "0.31.1", features = ["client", "server"] }
|
2024-04-15 20:15:24 +02:00
|
|
|
wlcs = "0.1"
|
|
|
|
|
2024-04-26 10:21:43 +02:00
|
|
|
tracing = { workspace = true }
|
|
|
|
tracing-subscriber = { workspace = true }
|
2024-04-16 20:07:10 +02:00
|
|
|
|
2024-04-24 19:02:15 +02:00
|
|
|
tokio = { workspace = true, features = ["net", "rt"] }
|
|
|
|
|
2024-06-14 00:21:32 +02:00
|
|
|
tempfile = { workspace = true }
|