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]
|
|
|
|
tracing = "0.1.37"
|
|
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
2023-09-09 03:46:01 +02:00
|
|
|
smithay = { git = "https://github.com/Smithay/smithay", rev = "1a61e1c", features = ["desktop", "wayland_frontend"] }
|
2023-06-18 01:55:04 +02:00
|
|
|
smithay-drm-extras = { git = "https://github.com/Smithay/smithay", optional = true }
|
2023-09-09 03:46:01 +02:00
|
|
|
thiserror = "1.0.48"
|
2023-09-08 07:21:09 +02:00
|
|
|
xcursor = { version = "0.3.4", optional = true }
|
2023-09-09 03:46:01 +02:00
|
|
|
image = { version = "0.24.7", default-features = false, optional = true }
|
|
|
|
serde = { version = "1.0.188", features = ["derive"] }
|
2023-07-24 04:53:49 +02:00
|
|
|
rmp = { version = "0.8.12" }
|
|
|
|
rmp-serde = { version = "1.1.2" }
|
2023-06-29 18:58:33 +02:00
|
|
|
calloop = { version = "0.10.1", features = ["executor", "futures-io"] }
|
|
|
|
futures-lite = { version = "1.13.0" }
|
|
|
|
async-process = { version = "1.7.0" }
|
2023-07-28 00:31:40 +02:00
|
|
|
x11rb = { version = "0.12.0", default-features = false, features = ["composite"], optional = true }
|
2023-08-08 02:06:10 +02:00
|
|
|
shellexpand = "3.1.0"
|
2023-09-09 03:46:01 +02:00
|
|
|
toml = "0.7.7"
|
|
|
|
anyhow = { version = "1.0.75", features = ["backtrace"] }
|
2023-09-08 07:21:09 +02:00
|
|
|
clap = { version = "4.4.2", features = ["derive"] }
|
2023-09-10 02:27:05 +02:00
|
|
|
xkbcommon = "0.6.0"
|
2023-09-11 05:53:24 +02:00
|
|
|
xdg = "2.5.2"
|
2023-09-11 06:40:22 +02:00
|
|
|
lazy_static = "1.4.0"
|
2023-09-11 09:48:33 +02:00
|
|
|
tracing-appender = "0.2.2"
|
|
|
|
walkdir = "2.4.0"
|
2023-09-11 10:58:43 +02:00
|
|
|
sysinfo = "0.29.10"
|
|
|
|
|
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"]
|