pinnacle/Cargo.toml

67 lines
2.2 KiB
TOML
Raw Normal View History

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.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing-appender = "0.2.3"
2024-01-08 19:42:29 +01:00
smithay = { git = "https://github.com/Smithay/smithay", rev = "77686d7", default-features = false, features = ["desktop", "wayland_frontend"] }
smithay-drm-extras = { git = "https://github.com/Smithay/smithay", rev = "77686d7", optional = true }
thiserror = "1"
xcursor = { version = "0.3", optional = true }
image = { version = "0.24", default-features = false, optional = true }
serde = { version = "1.0", features = ["derive"] }
2023-07-24 04:53:49 +02:00
rmp = { version = "0.8.12" }
rmp-serde = { version = "1.1.2" }
2023-10-13 00:10:23 +02:00
calloop = { version = "0.12.2", features = ["executor", "futures-io"] }
futures-lite = { version = "2" }
async-process = { version = "2" }
async-channel = "2"
2024-01-08 19:51:04 +01:00
async-net = "2.0.0"
x11rb = { version = "0.13", default-features = false, features = ["composite"], optional = true }
2023-08-08 02:06:10 +02:00
shellexpand = "3.1.0"
toml = "0.8"
2023-09-09 03:46:01 +02:00
anyhow = { version = "1.0.75", features = ["backtrace"] }
clap = { version = "4.4", features = ["derive"] }
xkbcommon = "0.7"
2023-09-11 05:53:24 +02:00
xdg = "2.5.2"
lazy_static = "1.4"
2024-01-08 19:42:29 +01:00
sysinfo = "0.30.5"
nix = { version = "0.27", features = ["user", "resource"] }
2024-01-08 19:51:04 +01:00
prost = "0.12.3"
prost-types = "0.12.3"
tonic = "0.10.2"
tokio-stream = { version = "0.1.14", features = ["net"] }
tokio = { version = "1.35.1", features = ["macros"]}
[build-dependencies]
tonic-build = "0.10.2"
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"]
xwayland = ["smithay/xwayland", "x11rb", "smithay/x11rb_event_source", "xcursor"]