pinnacle/Cargo.toml

67 lines
2.2 KiB
TOML
Raw Normal View History

2023-06-17 18:55:04 -05:00
[package]
name = "pinnacle"
2023-09-08 00:21:09 -05:00
authors = ["Ottatop <ottatop1227@gmail.com>"]
2023-07-23 21:53:49 -05:00
version = "0.0.1"
2023-06-17 18:55:04 -05:00
edition = "2021"
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"
2023-09-10 23:40:22 -05:00
repository = "https://github.com/pinnacle-comp/pinnacle/"
2023-09-08 00:21:09 -05:00
keywords = ["wayland", "compositor", "smithay", "lua"]
2023-06-17 18:55:04 -05:00
[dependencies]
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing-appender = "0.2.3"
smithay = { git = "https://github.com/Smithay/smithay", rev = "810df89", default-features = false, features = ["desktop", "wayland_frontend"] }
smithay-drm-extras = { git = "https://github.com/Smithay/smithay", rev = "810df89", 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"] }
x11rb = { version = "0.13", default-features = false, features = ["composite"], optional = true }
2023-08-07 19:06:10 -05:00
shellexpand = "3.1.0"
toml = "0.8"
2023-09-08 20:46:01 -05:00
anyhow = { version = "1.0.75", features = ["backtrace"] }
clap = { version = "4.4", features = ["derive"] }
xkbcommon = "0.7"
2023-09-10 22:53:24 -05:00
xdg = "2.5.2"
lazy_static = "1.4"
2024-01-08 12:42:29 -06:00
sysinfo = "0.30.5"
nix = { version = "0.27", features = ["user", "resource"] }
2024-01-08 12:51:04 -06:00
prost = "0.12.3"
prost-types = "0.12.3"
tonic = "0.10.2"
2024-01-08 20:11:02 -06:00
tonic-reflection = "0.10.2"
2024-01-08 12:51:04 -06:00
tokio-stream = { version = "0.1.14", features = ["net"] }
2024-01-14 13:34:00 -06:00
tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread", "process", "io-util", "signal"]}
bitflags = "2.4.1"
pinnacle-api-defs = { path = "./pinnacle-api-defs" }
2024-01-08 12:51:04 -06:00
[build-dependencies]
xdg = "2.5.2"
2023-06-17 18:55:04 -05:00
[features]
2023-07-24 18:59:05 -05:00
default = ["egl", "winit", "udev", "xwayland"]
2023-06-17 18:55:04 -05: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-09 20:29:17 -05:00
]
2023-06-17 18:55:04 -05:00
winit = ["smithay/backend_winit", "smithay/backend_drm"]
xwayland = ["smithay/xwayland", "x11rb", "smithay/x11rb_event_source", "xcursor"]
[workspace]
members = ["pinnacle-api-defs"]
exclude = ["api/rust"]