-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (59 loc) · 1.56 KB
/
Copy pathCargo.toml
File metadata and controls
67 lines (59 loc) · 1.56 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[workspace.package]
description = "A cross-platform Rust GUI and CLI for controlling Line 6 HX and Helix devices."
version = "0.2.2"
authors = ["Allan Somensi <allansomensidev@proton.me>"]
documentation = "https://github.com/allansomensi/openhx"
homepage = "https://github.com/allansomensi/openhx"
repository = "https://github.com/allansomensi/openhx"
readme = "README.md"
keywords = ["usb", "line6", "audio", "cli", "gui"]
categories = ["command-line-utilities", "multimedia::audio", "hardware-support"]
license = "MIT"
exclude = ["/.github/", "/pkg/"]
edition = "2024"
[workspace]
members = [
"crates/core",
"crates/cli",
"crates/gui",
"crates/i18n",
"crates/openhx",
]
resolver = "2"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
panic = "abort"
[profile.dist]
inherits = "release"
lto = "thin"
[workspace.dependencies]
openhx_core = { path = "crates/core" }
openhx_i18n = { path = "crates/i18n" }
clap = { version = "4.6", features = ["derive"] }
iced = { version = "0.14", features = ["tokio"] }
rusb = "0.9"
rmpv = "1.0"
tokio = { version = "1", features = ["full"] }
thiserror = "2.0"
# Debug
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# i18n
i18n-embed = { version = "0.16", features = [
"fluent-system",
"desktop-requester",
] }
i18n-embed-fl = "0.10"
rust-embed = "8.9"
# Dev
cargo-husky = { version = "1.5.0", default-features = false, features = [
"run-for-all",
"prepush-hook",
"precommit-hook",
"run-cargo-test",
"run-cargo-clippy",
"run-cargo-fmt",
] }