2023-10-19 06:05:07 +02:00
|
|
|
[package]
|
2024-01-22 06:45:09 +01:00
|
|
|
name = "pinnacle-api"
|
|
|
|
version = "0.0.2"
|
2024-02-18 06:50:36 +01:00
|
|
|
edition.workspace = true
|
|
|
|
authors.workspace = true
|
2024-01-22 06:45:09 +01:00
|
|
|
description = "The Rust implementation of the Pinnacle compositor's configuration API"
|
|
|
|
license = "MPL-2.0"
|
2024-02-18 06:50:36 +01:00
|
|
|
repository.workspace = true
|
2024-01-22 06:45:09 +01:00
|
|
|
keywords = ["compositor", "pinnacle", "api", "config"]
|
|
|
|
categories = ["api-bindings", "config"]
|
2023-10-19 06:05:07 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-18 06:50:36 +01:00
|
|
|
pinnacle-api-defs = { workspace = true }
|
2024-01-22 06:45:09 +01:00
|
|
|
pinnacle-api-macros = { path = "./pinnacle-api-macros" }
|
2024-02-18 06:50:36 +01:00
|
|
|
tokio = { workspace = true, features = ["net"] }
|
2024-02-23 23:24:43 +01:00
|
|
|
tokio-stream = { workspace = true }
|
2024-02-18 06:50:36 +01:00
|
|
|
tonic = { workspace = true }
|
2024-12-16 21:50:42 +01:00
|
|
|
tower = { workspace = true }
|
2024-12-16 06:36:30 +01:00
|
|
|
hyper-util = { workspace = true }
|
2024-12-16 21:50:42 +01:00
|
|
|
futures = { workspace = true }
|
|
|
|
num_enum = "0.7.3"
|
2024-02-18 06:50:36 +01:00
|
|
|
xkbcommon = { workspace = true }
|
2024-03-22 22:40:06 +01:00
|
|
|
rand = "0.8.5"
|
2024-04-16 18:10:47 +02:00
|
|
|
bitflags = { workspace = true }
|
2024-06-14 21:47:05 +02:00
|
|
|
snowcap-api = { path = "../../snowcap/api/rust", optional = true }
|
2024-06-15 23:58:47 +02:00
|
|
|
indexmap = { workspace = true }
|
2024-07-14 22:45:02 +02:00
|
|
|
tracing = { workspace = true }
|
|
|
|
tracing-subscriber = { workspace = true }
|
2024-06-14 00:21:32 +02:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["snowcap"]
|
|
|
|
snowcap = ["dep:snowcap-api"]
|