pinnacle/Cargo.toml

128 lines
3.3 KiB
TOML
Raw Normal View History

2024-02-18 06:50:36 +01:00
[workspace]
2024-04-13 17:56:02 +02:00
members = [
"pinnacle-api-defs",
"api/rust",
"api/rust/pinnacle-api-macros",
"wlcs_pinnacle",
]
2024-02-18 06:50:36 +01:00
[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-03-30 23:23:47 +01:00
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread"]}
tokio-stream = { version = "0.1.15", features = ["net"] }
2024-03-02 08:23:31 +01:00
# gRPC
2024-04-12 14:24:37 +02:00
prost = "0.12.4"
2024-02-18 06:50:36 +01:00
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"
bitflags = "2.5.0"
clap = { version = "4.5.4", features = ["derive"] }
dircpy = "0.3.16"
2024-02-18 06:50:36 +01:00
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-03-07 01:50:45 +01:00
# smithay is down there somewhere
smithay-drm-extras = { git = "https://github.com/Smithay/smithay", rev = "c293ec7" }
2024-03-02 08:23:31 +01:00
# Tracing
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "registry"] }
tracing-appender = "0.2.3"
2024-03-02 08:23:31 +01:00
# Errors
2024-03-30 23:23:47 +01:00
anyhow = { version = "1.0.81", features = ["backtrace"] }
thiserror = "1.0.58"
2024-03-02 08:23:31 +01:00
# xcursor stuff
2024-02-18 06:50:36 +01:00
xcursor = { version = "0.3.5" }
2024-04-06 23:14:45 +02:00
image = { version = "0.25.1", 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 = { workspace = true }
2024-04-12 14:24:37 +02:00
cliclack = "0.2.5"
2024-03-02 08:23:31 +01:00
# Misc.
bitflags = { workspace = true }
2024-03-05 02:22:02 +01:00
serde = { version = "1.0.197", features = ["derive"] }
2024-03-30 23:23:47 +01:00
toml = "0.8.12"
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-04-12 14:24:37 +02:00
sysinfo = "0.30.10"
nix = { version = "0.28.0", features = ["user", "resource", "process", "signal"] }
2024-02-18 06:50:36 +01:00
pinnacle-api-defs = { workspace = true }
dircpy = { workspace = true }
2024-03-30 23:23:47 +01:00
chrono = "0.4.37"
bytemuck = "1.15.0"
pinnacle-api = { path = "./api/rust" }
2024-04-13 17:56:02 +02:00
smithay = { workspace = true }
2024-01-08 19:51:04 +01:00
2024-04-13 17:56:02 +02:00
[workspace.dependencies.smithay]
2024-03-07 01:50:45 +01:00
git = "https://github.com/Smithay/smithay"
rev = "c293ec7"
2024-03-07 01:50:45 +01:00
default-features = false
features = [
"desktop",
"wayland_frontend",
# udev
"backend_libinput",
"backend_udev",
"backend_drm",
"backend_gbm",
"backend_vulkan",
"backend_egl",
"backend_session_libseat",
"renderer_gl",
"renderer_multi",
# egl
"use_system_lib",
"backend_egl",
# winit
"backend_winit",
"backend_drm",
# xwayland
"xwayland",
"x11rb_event_source",
]
[build-dependencies]
2024-02-18 06:50:36 +01:00
xdg = { workspace = true }
2024-02-17 07:00:25 +01:00
[dev-dependencies]
temp-env = "0.3.6"
2024-03-05 02:22:02 +01:00
tempfile = "3.10.1"
2024-03-07 01:50:45 +01:00
test-log = { version = "0.2.15", default-features = false, features = ["trace"] }
pinnacle = { path = ".", features = ["testing"] }
pinnacle-api = { path = "./api/rust" }
2024-02-17 07:00:25 +01:00
2023-06-18 01:55:04 +02:00
[features]
2024-03-07 01:50:45 +01:00
testing = [
"smithay/renderer_test",
2023-06-10 03:29:17 +02:00
]