2024-02-17 23:50:36 -06:00
|
|
|
[workspace]
|
|
|
|
members = ["pinnacle-api-defs", "api/rust", "api/rust/pinnacle-api-macros"]
|
|
|
|
|
|
|
|
[workspace.package]
|
|
|
|
authors = ["Ottatop <ottatop1227@gmail.com>"]
|
|
|
|
edition = "2021"
|
|
|
|
repository = "https://github.com/pinnacle-comp/pinnacle/"
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
|
|
|
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"]}
|
2024-02-23 16:24:43 -06:00
|
|
|
tokio-stream = { version = "0.1.14", features = ["net"] }
|
2024-02-17 23:50:36 -06:00
|
|
|
|
|
|
|
prost = "0.12.3"
|
|
|
|
tonic = "0.11.0"
|
|
|
|
tonic-reflection = "0.11.0"
|
|
|
|
tonic-build = "0.11.0"
|
|
|
|
|
|
|
|
pinnacle-api-defs = { path = "./pinnacle-api-defs" }
|
|
|
|
|
|
|
|
xkbcommon = "0.7.0"
|
|
|
|
xdg = "2.5.2"
|
|
|
|
|
|
|
|
#################################################################################
|
|
|
|
|
2023-06-17 18:55:04 -05:00
|
|
|
[package]
|
|
|
|
name = "pinnacle"
|
2023-07-23 21:53:49 -05:00
|
|
|
version = "0.0.1"
|
2024-02-17 23:50:36 -06:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
2023-08-02 20:18:08 -05:00
|
|
|
license = "GPL-3.0+"
|
2023-09-08 00:21:09 -05:00
|
|
|
description = "A WIP Smithay-based Wayland compositor, inspired by AwesomeWM"
|
|
|
|
readme = "README.md"
|
2024-02-17 23:50:36 -06:00
|
|
|
repository.workspace = true
|
2023-09-08 00:21:09 -05:00
|
|
|
keywords = ["wayland", "compositor", "smithay", "lua"]
|
2023-06-17 18:55:04 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-17 23:50:36 -06:00
|
|
|
smithay = { git = "https://github.com/Smithay/smithay", rev = "1074914", default-features = false, features = ["desktop", "wayland_frontend"] }
|
|
|
|
smithay-drm-extras = { git = "https://github.com/Smithay/smithay", rev = "1074914" }
|
|
|
|
|
2023-12-25 21:02:50 -06:00
|
|
|
tracing = "0.1.40"
|
2024-02-19 00:17:26 -06:00
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "registry"] }
|
2023-12-25 21:02:50 -06:00
|
|
|
tracing-appender = "0.2.3"
|
2024-02-17 23:50:36 -06:00
|
|
|
|
|
|
|
anyhow = { version = "1.0.79", features = ["backtrace"] }
|
|
|
|
thiserror = "1.0.57"
|
|
|
|
|
|
|
|
xcursor = { version = "0.3.5" }
|
|
|
|
image = { version = "0.24.8", default-features = false }
|
|
|
|
|
2024-02-07 19:38:15 -06:00
|
|
|
serde = { version = "1.0.196", features = ["derive"] }
|
|
|
|
toml = "0.8.10"
|
2024-02-17 23:50:36 -06:00
|
|
|
shellexpand = "3.1.0"
|
|
|
|
clap = { version = "4.5.1", features = ["derive"] }
|
|
|
|
x11rb = { version = "0.13.0", default-features = false, features = ["composite"] }
|
|
|
|
xkbcommon = { workspace = true }
|
|
|
|
xdg = { workspace = true }
|
2024-01-08 12:42:29 -06:00
|
|
|
sysinfo = "0.30.5"
|
2024-02-07 19:38:15 -06:00
|
|
|
nix = { version = "0.27.1", features = ["user", "resource"] }
|
2024-02-17 23:50:36 -06:00
|
|
|
|
|
|
|
prost = { workspace = true }
|
|
|
|
tonic = { workspace = true }
|
|
|
|
tonic-reflection = { workspace = true }
|
|
|
|
|
|
|
|
tokio = { workspace = true, features = ["process", "io-util", "signal"] }
|
2024-02-23 16:24:43 -06:00
|
|
|
tokio-stream = { workspace = true }
|
2024-02-17 23:50:36 -06:00
|
|
|
|
2024-02-07 19:38:15 -06:00
|
|
|
bitflags = "2.4.2"
|
2024-02-17 23:50:36 -06:00
|
|
|
pinnacle-api-defs = { workspace = true }
|
2024-01-08 12:51:04 -06:00
|
|
|
|
2024-01-12 21:48:07 -06:00
|
|
|
[build-dependencies]
|
2024-02-17 23:50:36 -06:00
|
|
|
xdg = { workspace = true }
|
2023-09-11 03:58:43 -05:00
|
|
|
|
2024-02-17 00:00:25 -06:00
|
|
|
[dev-dependencies]
|
|
|
|
temp-env = "0.3.6"
|
|
|
|
tempfile = "3.10.0"
|
|
|
|
|
2023-06-17 18:55:04 -05:00
|
|
|
[features]
|
2024-02-17 23:50:36 -06:00
|
|
|
default = [
|
|
|
|
# udev
|
|
|
|
"smithay/backend_libinput",
|
|
|
|
"smithay/backend_udev",
|
|
|
|
"smithay/backend_drm",
|
|
|
|
"smithay/backend_gbm",
|
|
|
|
"smithay/backend_vulkan",
|
|
|
|
"smithay/backend_egl",
|
|
|
|
"smithay/backend_session_libseat",
|
|
|
|
"smithay/renderer_gl",
|
|
|
|
"smithay/renderer_multi",
|
|
|
|
# egl
|
|
|
|
"smithay/use_system_lib",
|
|
|
|
"smithay/backend_egl",
|
|
|
|
# winit
|
|
|
|
"smithay/backend_winit",
|
|
|
|
"smithay/backend_drm",
|
|
|
|
# xwayland
|
|
|
|
"smithay/xwayland",
|
|
|
|
"smithay/x11rb_event_source"
|
2023-06-09 20:29:17 -05:00
|
|
|
]
|