Skip to content

Commit 3cbed2f

Browse files
committed
fixup: workspace deps
1 parent f8a7735 commit 3cbed2f

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ hyper-util = {version = "0.1.8", features = ["client", "client-legacy", "http2",
126126

127127
env_logger = "0.10.0"
128128
thiserror = "2.0"
129+
anyhow = "1.0"
129130
log = "0.4"
130131

131132
shadowsocks = "1.20.3"

leak-checker/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ rust-version.workspace = true
99

1010
[dependencies]
1111
log.workspace = true
12-
anyhow = "1.0"
13-
socket2 = { version = "0.5.7", features = ["all"] }
12+
anyhow.workspace = true
13+
socket2 = { workspace = true, features = ["all"] }
1414
match_cfg = "0.1.0"
1515
pnet_packet = "0.35.0"
1616
pretty_env_logger = "0.5.0"
1717
tokio = { workspace = true, features = ["macros", "time", "rt", "sync", "net"] }
1818
futures.workspace = true
1919
serde = { workspace = true, features = ["derive"] }
2020
reqwest = { version = "0.12.9", default-features = false, features = ["json", "rustls-tls"] }
21-
clap = { version = "*", features = ["derive"] }
21+
clap = { workspace = true, features = ["derive"] }
2222

2323
[dev-dependencies]
2424
tokio = { workspace = true, features = ["full"] }

mullvad-cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ name = "mullvad"
1515
path = "src/main.rs"
1616

1717
[dependencies]
18-
anyhow = "1.0"
18+
anyhow = { workspace = true }
1919
chrono = { workspace = true }
2020
clap = { workspace = true }
2121
thiserror = { workspace = true }

mullvad-daemon/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ workspace = true
1515
api-override = ["mullvad-api/api-override"]
1616

1717
[dependencies]
18-
anyhow = "*" # TODO: do we want this?
18+
anyhow = { workspace = true }
1919
chrono = { workspace = true }
2020
thiserror = { workspace = true }
2121
either = "1.11"

windows-installer/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ workspace = true
1313
[target.'cfg(all(target_os = "windows", target_arch = "x86_64"))'.dependencies]
1414
windows-sys = { version = "0.52.0", features = ["Win32_System", "Win32_System_LibraryLoader", "Win32_System_SystemInformation", "Win32_System_Threading"] }
1515
tempfile = "3.10"
16-
anyhow = "1.0"
16+
anyhow.workspace = true
1717

1818
[build-dependencies]
1919
winres = "0.1"
20-
anyhow = "1.0"
20+
anyhow.workspace = true
2121
windows-sys = { version = "0.52.0", features = ["Win32_System", "Win32_System_LibraryLoader", "Win32_System_SystemServices"] }
2222
mullvad-version = { path = "../mullvad-version" }
2323

wireguard-go-rs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
license.workspace = true
66

77
[build-dependencies]
8-
anyhow = "1.0"
8+
anyhow.workspace = true
99

1010
[target.'cfg(unix)'.dependencies]
1111
thiserror.workspace = true

0 commit comments

Comments
 (0)