2024-02-18 06:50:36 +01: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]
|
2024-03-02 08:23:31 +01:00
|
|
|
# Tokio
|
2024-02-18 06:50:36 +01:00
|
|
|
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"]}
|
2024-02-23 23:24:43 +01:00
|
|
|
tokio-stream = { version = "0.1.14", features = ["net"] }
|
2024-03-02 08:23:31 +01:00
|
|
|
# gRPC
|
2024-02-18 06:50:36 +01:00
|
|
|
prost = "0.12.3"
|
|
|
|
tonic = "0.11.0"
|
|
|
|
tonic-reflection = "0.11.0"
|
|
|
|
tonic-build = "0.11.0"
|
2024-03-02 08:23:31 +01:00
|
|
|
# API definitions
|
2024-02-18 06:50:36 +01:00
|
|
|
pinnacle-api-defs = { path = "./pinnacle-api-defs" }
|
2024-03-02 08:23:31 +01:00
|
|
|
# Misc.
|
2024-02-18 06:50:36 +01:00
|
|
|
xkbcommon = "0.7.0"
|
|
|
|
xdg = "2.5.2"
|
|
|
|
|
2024-03-02 08:23:31 +01:00
|
|
|
########################################################################yo😎###########
|
2024-02-18 06:50:36 +01:00
|
|
|
|
2023-06-18 01:55:04 +02:00
|
|
|
[package]
|
|
|
|
name = "pinnacle"
|
2023-07-24 04:53:49 +02:00
|
|
|
version = "0.0.1"
|
2024-02-18 06:50:36 +01:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
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"
|
2024-02-18 06:50:36 +01:00
|
|
|
repository.workspace = true
|
2023-09-08 07:21:09 +02:00
|
|
|
keywords = ["wayland", "compositor", "smithay", "lua"]
|
2023-06-18 01:55:04 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2024-03-02 08:23:31 +01:00
|
|
|
# Smithay
|
2024-02-29 23:28:25 +01:00
|
|
|
smithay = { git = "https://github.com/Smithay/smithay", rev = "418190e", default-features = false, features = ["desktop", "wayland_frontend"] }
|
|
|
|
smithay-drm-extras = { git = "https://github.com/Smithay/smithay", rev = "418190e" }
|
2024-03-02 08:23:31 +01:00
|
|
|
# Tracing
|
2023-12-26 04:02:50 +01:00
|
|
|
tracing = "0.1.40"
|
2024-02-19 07:17:26 +01:00
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "registry"] }
|
2023-12-26 04:02:50 +01:00
|
|
|
tracing-appender = "0.2.3"
|
2024-03-02 08:23:31 +01:00
|
|
|
# Errors
|
2024-02-18 06:50:36 +01:00
|
|
|
anyhow = { version = "1.0.79", features = ["backtrace"] }
|
|
|
|
thiserror = "1.0.57"
|
2024-03-02 08:23:31 +01:00
|
|
|
# xcursor stuff
|
2024-02-18 06:50:36 +01:00
|
|
|
xcursor = { version = "0.3.5" }
|
|
|
|
image = { version = "0.24.8", default-features = false }
|
2024-03-02 08:23:31 +01:00
|
|
|
# gRPC
|
|
|
|
prost = { workspace = true }
|
|
|
|
tonic = { workspace = true }
|
|
|
|
tonic-reflection = { workspace = true }
|
|
|
|
# Tokio
|
|
|
|
tokio = { workspace = true, features = ["process", "io-util", "signal"] }
|
|
|
|
tokio-stream = { workspace = true }
|
|
|
|
# CLI
|
|
|
|
clap = { version = "4.5.1", features = ["derive"] }
|
|
|
|
cliclack = "0.1.13"
|
|
|
|
# Misc.
|
|
|
|
bitflags = "2.4.2"
|
2024-02-08 02:38:15 +01:00
|
|
|
serde = { version = "1.0.196", features = ["derive"] }
|
|
|
|
toml = "0.8.10"
|
2024-03-04 21:44:33 +01:00
|
|
|
shellexpand = { version = "3.1.0", features = ["path"] }
|
2024-02-18 06:50:36 +01:00
|
|
|
x11rb = { version = "0.13.0", default-features = false, features = ["composite"] }
|
|
|
|
xkbcommon = { workspace = true }
|
|
|
|
xdg = { workspace = true }
|
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-02-18 06:50:36 +01:00
|
|
|
pinnacle-api-defs = { workspace = true }
|
2024-03-02 08:23:31 +01:00
|
|
|
dircpy = "0.3.16"
|
|
|
|
chrono = "0.4.34"
|
2024-01-08 19:51:04 +01:00
|
|
|
|
2024-01-13 04:48:07 +01:00
|
|
|
[build-dependencies]
|
2024-02-18 06:50:36 +01:00
|
|
|
xdg = { workspace = true }
|
2023-09-11 10:58:43 +02:00
|
|
|
|
2024-02-17 07:00:25 +01:00
|
|
|
[dev-dependencies]
|
|
|
|
temp-env = "0.3.6"
|
|
|
|
tempfile = "3.10.0"
|
|
|
|
|
2023-06-18 01:55:04 +02:00
|
|
|
[features]
|
2024-02-18 06:50:36 +01: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-10 03:29:17 +02:00
|
|
|
]
|