-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 910 Bytes
/
Cargo.toml
File metadata and controls
32 lines (30 loc) · 910 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
29
30
31
32
[package]
name = "rcue"
version = "0.1.0"
description = "Simple stat reader for Corsair H150iRGBPROXT AIO"
authors = ["mygnu <tech@gill.net.in>"]
edition = "2018"
readme = "README.md"
license = "GPL-3.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rusb = "0.9"
byteorder = "1.3"
# Metadata for Debian Package Builder `cargo-deb`
[package.metadata.deb]
maintainer = "Harry Gill <tech@gill.net.in>"
copyright = "2020, Harry Gill <tech@gill.net.in>"
license-file = ["LICENSE"]
extended-description = """\
Simple stat reader for Corsair H150iRGBPROXT AIO \
"""
# try autogenerate dependencies for .deb installer
depends = "$auto"
# debian application category
section = "utils"
priority = "optional"
# files to copy on install
assets = [
["target/release/rcue", "/usr/bin/", "755"],
["README.md", "usr/share/doc/rcue/README", "644"],
]