-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (26 loc) · 1003 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
[package]
name = "wooting-integrations"
version = "0.5.3"
authors = ["Shayne Hartford <shaybox@shaybox.com>"]
edition = "2021"
description = "My personal Wooting keyboard integrations"
readme = "README.md"
repository = "https://github.com/ShayBox/Wooting-Integrations"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
colorgrad = { version = "0.7", optional = true }
hidapi = { version = "2", default-features = false }
hyprland = { version = "0.4.0-alpha.2", optional = true }
memoize = { version = "0.4", optional = true }
[features]
default = ["animation", "hyprland", "latency", "mangohud", "wooting", "hidapi/linux-shared-hidraw"]
animation = ["dep:memoize", "dep:colorgrad"]
hyprland = ["dep:memoize", "dep:hyprland"]
latency = ["dep:memoize"]
mangohud = ["dep:memoize"]
wooting = ["dep:memoize"]
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }