Skip to content

Commit

Permalink
fixup: workspace deps
Browse files Browse the repository at this point in the history
  • Loading branch information
hulthe committed Jan 8, 2025
1 parent f8a7735 commit 3cbed2f
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ hyper-util = {version = "0.1.8", features = ["client", "client-legacy", "http2",

env_logger = "0.10.0"
thiserror = "2.0"
anyhow = "1.0"
log = "0.4"

shadowsocks = "1.20.3"
Expand Down
6 changes: 3 additions & 3 deletions leak-checker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ rust-version.workspace = true

[dependencies]
log.workspace = true
anyhow = "1.0"
socket2 = { version = "0.5.7", features = ["all"] }
anyhow.workspace = true
socket2 = { workspace = true, features = ["all"] }
match_cfg = "0.1.0"
pnet_packet = "0.35.0"
pretty_env_logger = "0.5.0"
tokio = { workspace = true, features = ["macros", "time", "rt", "sync", "net"] }
futures.workspace = true
serde = { workspace = true, features = ["derive"] }
reqwest = { version = "0.12.9", default-features = false, features = ["json", "rustls-tls"] }
clap = { version = "*", features = ["derive"] }
clap = { workspace = true, features = ["derive"] }

[dev-dependencies]
tokio = { workspace = true, features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion mullvad-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ name = "mullvad"
path = "src/main.rs"

[dependencies]
anyhow = "1.0"
anyhow = { workspace = true }
chrono = { workspace = true }
clap = { workspace = true }
thiserror = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion mullvad-daemon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ workspace = true
api-override = ["mullvad-api/api-override"]

[dependencies]
anyhow = "*" # TODO: do we want this?
anyhow = { workspace = true }
chrono = { workspace = true }
thiserror = { workspace = true }
either = "1.11"
Expand Down
4 changes: 2 additions & 2 deletions windows-installer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ workspace = true
[target.'cfg(all(target_os = "windows", target_arch = "x86_64"))'.dependencies]
windows-sys = { version = "0.52.0", features = ["Win32_System", "Win32_System_LibraryLoader", "Win32_System_SystemInformation", "Win32_System_Threading"] }
tempfile = "3.10"
anyhow = "1.0"
anyhow.workspace = true

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

Expand Down
2 changes: 1 addition & 1 deletion wireguard-go-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license.workspace = true

[build-dependencies]
anyhow = "1.0"
anyhow.workspace = true

[target.'cfg(unix)'.dependencies]
thiserror.workspace = true
Expand Down

0 comments on commit 3cbed2f

Please sign in to comment.