-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 787 Bytes
/
Cargo.toml
File metadata and controls
28 lines (26 loc) · 787 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
[package]
name = "liquidrust"
version = "0.2.2"
edition = "2021"
authors = ["EriksRemess"]
description = "A simple Rust application for displaying information and setting RGB colors for the Corsair H115i RGB PRO XT AIO."
license = "MIT"
readme = "Readme.md"
repository = "https://github.com/EriksRemess/liquidrust"
homepage = "https://github.com/EriksRemess/liquidrust"
keywords = ["corsair", "rgb", "liquid", "cooling", "monitoring"]
categories = ["command-line-utilities", "hardware-support"]
include = [
"**/*.rs",
"Cargo.toml",
"Readme.md",
]
[dependencies]
clap = { version = "4.5.15", features = ["derive"] }
hidapi = "2.6.3"
rand = "0.8.5"
regex = "1.10.6"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
[profile.release]
strip = true