forked from Treeniks/chameleos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (33 loc) · 907 Bytes
/
Cargo.toml
File metadata and controls
38 lines (33 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "chameleos"
version = "0.1.2"
authors = ["Thomas Lindae <thomas.lindae@in.tum.de>"]
edition = "2024"
description = "Screen annotation tool for niri and Hyprland"
repository = "https://github.com/Treeniks/chameleos"
license = "MIT"
keywords = ["wayland"]
default-run = "chameleos"
[dependencies]
clap = { version = "4.5.48", features = ["derive"] }
csscolorparser = "0.8.0"
wayland-client = "0.31.11"
# layer shell
wayland-protocols-wlr = { version = "0.3.9", features = ["client"] }
# cursor shape
wayland-protocols = { version = "0.32.9", features = [
"client",
"staging",
"unstable",
] }
# required to get raw window handles
wayland-backend = { version = "0.3.11", features = ["client_system"] }
wgpu = "27.0.1"
raw-window-handle = "0.6.2"
env_logger = "0.11.8"
log = "0.4.28"
pollster = "0.4.0"
lyon = "1.0.16"
bytemuck = "1.24.0"
[build-dependencies]
chrono = "0.4.42"