-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
35 lines (30 loc) · 931 Bytes
/
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
34
35
[package]
name = "gdevd"
version = "0.3.0-dev"
authors = ["Richard Liebscher <r1tschy@posteo.de>"]
license = "MIT OR Apache-2.0"
description = "Daemon to control background LEDs of Logitech gaming devices"
repository = "https://github.com/R1tschY/gdevd"
readme = "README.md"
keywords = ["logitech", "led"]
exclude = [".*"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = "fat"
panic = "abort"
[dependencies]
rusb = "0.9.2"
hex = "0.4.3"
clap = { version = "4.3.19", features = ["derive"] }
dbus = "0.9.7"
dbus-tree = "0.9.2"
log = "0.4.19"
simple_logger = { version = "4.2.0", default_features = false }
rust-ini = "0.19.0"
quick-error = "2.0.1"
signal-hook = { version = "0.3.17", features = ["iterator"] }
[package.metadata.release]
allow-branch = ["master"]
pre-release-commit-message = "Release"
tag-message = "Release {{version}}"