forked from wiiznokes/fan-control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
80 lines (68 loc) · 1.98 KB
/
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
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
68
69
70
71
72
73
74
75
76
77
78
79
[workspace]
members = ["data", "hardware", "ui", "utils"]
resolver = "2"
[workspace.package]
authors = ["wiiznokes <[email protected]>"]
edition = "2021"
license = "MIT"
homepage = "https://github.com/wiiznokes/fan-control/"
repository = "https://github.com/wiiznokes/fan-control.git"
keywords = ["fan-control", "lhm", "lmsensors", "sensors", "iced-app"]
[package]
name = "fan-control"
version = "0.1.3"
description = "Control your fans with different behaviors"
exclude = ["/.*", "justfile", "LICENCE"]
authors.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
[package.metadata.packager]
before-each-package-command = "cargo build --release"
identifier = "io.github.wiiznokes.fan-control"
icons = ["resource/windows/app_icon.ico"]
resources = ["resource/icons", "resource/windows/lhmbuild"]
category = "Utility"
[package.metadata.packager.windows]
allow_downgrades = true
[features]
fake_hardware = ["hardware/fake_hardware"]
[dependencies]
data.workspace = true
ui.workspace = true
thiserror.workspace = true
clap.workspace = true
log.workspace = true
env_logger.workspace = true
hardware.workspace = true
crossterm = "0.27.0"
[build-dependencies]
winres = "0.1"
[workspace.dependencies]
hardware = { path = "hardware" }
data = { path = "data" }
ui = { path = "ui" }
utils = { path = "utils" }
clap = { version = "4.3", features = ["derive"] }
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
toml = "0.8"
env_logger = "0.11"
log = "0.4"
i18n-embed = { version = "0.14", features = [
"fluent-system",
"desktop-requester",
] }
rust-embed = "8.0"
i18n-embed-fl = "0.8"
lazy_static = "1.4"
once_cell = "1.18"
thiserror = "1.0"
derive_more = { version = "1.0.0-beta.6", default-features = false, features = [
"unwrap",
"display"
] }
cargo-packager-resource-resolver = { version = "0.1", features = ["auto-detect-format"]}
# strum = { version = "0.25", features = ["derive"] }