-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 786 Bytes
/
Cargo.toml
File metadata and controls
25 lines (23 loc) · 786 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
[package]
name = "hyperrust"
version = "0.1.6"
edition = "2024"
description = "RGB utility for HyperX Alloy Origins 60 keyboard"
license = "MIT"
repository = "https://github.com/EriksRemess/hyperrust"
readme = "Readme.md"
keywords = ["hyperx", "keyboard", "rgb", "cli", "utility"]
categories = ["command-line-utilities", "hardware-support"]
include = ["src/**", "themes/**", "Cargo.toml", "Readme.md"]
[dependencies]
clap = { version = "4.5.53", features = ["derive"] }
ctrlc = "3.5.1"
hidapi = { version = "2.6.4", features = ["windows-native", "linux-static-hidraw", "macos-shared-device"], default-features = false }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.148"
[profile.release]
strip = true
lto = true
opt-level = 3
debug = false
panic = "abort"