-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
33 lines (30 loc) · 1.18 KB
/
Cargo.toml
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
[package]
name = "wl-gammarelay-rs"
version = "1.0.0"
authors = ["Max Verevkin <[email protected]>"]
edition = "2021"
description = "A simple program that provides DBus interface to control display temperature and brightness under wayland without flickering"
repository = "https://github.com/MaxVerevkin/wl-gammarelay-rs"
license = "GPL-3.0-only"
keywords = ["redshift", "gammastep", "wayland", "night-mode"]
[dependencies]
anyhow = "1.0"
bytemuck = "1.13"
clap = { version = "4.0", default-features = false, features = ["std", "help", "usage", "derive"] }
libc = "0.2"
memmap2 = "0.9"
rustbus-service = { git = "https://github.com/MaxVerevkin/rustbus-service", rev = "1bd3aef" }
shmemfdrs2 = "1.0"
wayrs-client = "1.0"
wayrs-protocols = { version = "0.14", features = ["wlr-gamma-control-unstable-v1"] }
# [patch.'https://github.com/KillingSpark/rustbus']
# rustbus = { path = "../rustbus/rustbus" }
# [patch.'https://github.com/MaxVerevkin/rustbus-service']
# rustbus-service = { path = "../rustbus-service" }
# [patch.crates-io]
# wayrs-client = { path = "../wayrs/wayrs-client" }
# wayrs-protocols = { path = "../wayrs/wayrs-protocols" }
[profile.release]
lto = "fat"
strip = true
codegen-units = 1