Skip to content

Commit b0a7ba5

Browse files
authored
chore: remove unneeded dependencies (#106)
1 parent ea211ed commit b0a7ba5

7 files changed

Lines changed: 12 additions & 212 deletions

File tree

Cargo.lock

Lines changed: 3 additions & 202 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ incremental = true # Improves re-compile times
3131
[workspace.dependencies]
3232
tokio = { version = "1.43", features = ["full"] }
3333
# Application
34-
idevice = { git = "https://github.com/PlumeImpactor/plume-idevice", rev = "5e350a", features = [
35-
"full"
34+
idevice = { git = "https://github.com/PlumeImpactor/plume-idevice", rev = "5e350a", default-features = false, features = [
35+
"full",
36+
"ring",
3637
] }
3738
plist = "1.8.0"
3839

apps/plumeimpactor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ plume_store = { path = "../../crates/plume_store" }
2222
# TODO: move to workspace
2323
chrono = { version = "0.4.42", features = ["serde"] }
2424

25-
rustls = { version = "0.23.32", features = ["ring"] }
25+
rustls = { version = "0.23.32", default-features = false, features = ["std", "tls12", "ring"] }
2626

2727
iced = { version = "0.14.0", features = ["image", "advanced"] }
2828
tray-icon = { version = "0.21.2", default-features = false }

apps/plumeimpactor/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ mod appearance;
99
mod defaults;
1010
mod refresh;
1111
mod screen;
12-
mod subscriptions;
1312
mod startup;
13+
mod subscriptions;
1414
mod tray;
1515

1616
pub const APP_NAME: &str = "Impactor";

0 commit comments

Comments
 (0)