-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (40 loc) · 1.29 KB
/
Copy pathCargo.toml
File metadata and controls
44 lines (40 loc) · 1.29 KB
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
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "worklouderctl"
version = "0.1.1"
edition = "2021"
rust-version = "1.61"
description = "Full-configuration CLI for Codex Micro, Codex, and Work Louder Input"
license = "MIT"
repository = "https://github.com/MarlinDiary/worklouder-input-cli"
keywords = ["work-louder", "codex-micro", "cli", "macropad", "automation"]
categories = ["command-line-utilities", "config"]
[lib]
name = "worklouderctl"
path = "src/lib.rs"
[[bin]]
name = "worklouderctl"
path = "src/main.rs"
[dependencies]
anyhow = "=1.0.75"
# Keep deterministic, non-ANSI help output and exclude Clap 3's optional
# unmaintained `atty` color dependency (GHSA-g98v-hv3f-hcfr).
clap = { version = "=3.2.25", default-features = false, features = ["derive", "std", "suggestions"] }
clap_complete = "=3.2.5"
# Keep open-ended transitive ranges on versions that support our declared
# Rust 1.61 MSRV. Remove these anchors only together with an MSRV bump.
itoa = "=1.0.4"
libc = "=0.2.137"
once_cell = "=1.17.1"
proc-macro2 = "=1.0.47"
quote = "=1.0.21"
ryu = "=1.0.11"
smawk = "=0.3.1"
serde = { version = "=1.0.145", features = ["derive"] }
serde_json = { version = "=1.0.85", features = ["preserve_order"] }
textwrap = "=0.16.0"
toml = "=0.5.9"
unicode-ident = "=1.0.5"
unicode-width = "=0.1.10"
[profile.release]
lto = "thin"
strip = true