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