-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
33 lines (29 loc) · 845 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
[package]
name = "warthog-config"
version = "0.1.0"
description = "Command-line tool that can be used to control the LEDs of a Thrustmaster HOTAS Warthog throttle."
keywords = ["thrustmaster", "hotas", "warthog", "warthog-hotas"]
categories = ["command-line-utilities"]
authors = ["Alexis Jeandeau <alexis.jeandeau@gmail.com>"]
edition = "2018"
repository = "https://github.com/jeandeaual/warthog-config"
license = "MIT"
build = "build.rs"
[dependencies]
rusb = "0.9"
byteorder = "1.4"
bitflags = "1.3"
regex = "1"
[dependencies.clap]
version = "3.0.0-beta.4"
default-features = false
features = ["std", "regex", "wrap_help"]
[build-dependencies]
built = "0.5"
[profile.release]
# Optimize for size
opt-level = "z"
# Enable Link Time Optimization
lto = true
# Reduce parallel code generation units to increase optimization
codegen-units = 1