Skip to content

Commit 4de546b

Browse files
committed
Move deps around
1 parent 8e68cca commit 4de546b

File tree

4 files changed

+50
-41
lines changed

4 files changed

+50
-41
lines changed

Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,8 @@ unused_async = "deny"
8787
wildcard_dependencies = "deny"
8888

8989
[workspace.dependencies]
90+
# Should follow whatever tokio uses
91+
bytes = "^1.2"
9092
dirs = "6.0.0"
9193
tokio = { version = "1.44" }
9294
tokio-util = "0.7"
@@ -97,6 +99,7 @@ sha2 = "0.10"
9799
chrono = { version = "0.4.26", default-features = false }
98100
clap = { version = "4.4.18", features = ["cargo", "derive"] }
99101
once_cell = "1.16"
102+
papaya = "0.2"
100103
serde = "1.0.204"
101104
serde_json = "1.0.122"
102105
widestring = "1.2"
@@ -117,6 +120,8 @@ rustls = { version = "0.23", default-features = false }
117120
rustls-pki-types = "1.13.1"
118121
webpki-roots = "1.0.4"
119122

123+
124+
120125
rtnetlink = "0.18"
121126
netlink-packet-core = "0.8.0"
122127
netlink-packet-route = "0.25"

mullvad-api/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ clap = { workspace = true, features = ["cargo", "derive"] }
6161
tracing-subscriber = { workspace = true }
6262
shadowsocks = { workspace = true, features = ["stream-cipher"] }
6363

64-
papaya = "0.2"
64+
papaya = { workspace = true }
6565
# Should follow whatever tokio uses
66-
bytes = "^1.2"
66+
bytes = { workspace = true }
6767

6868
[target.'cfg(not(target_os = "ios"))'.dependencies]
6969
mullvad-update = { path = "../mullvad-update", features = ["client"] }

test/Cargo.lock

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

test/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,10 @@ unused_async = "deny"
4343
wildcard_dependencies = "deny"
4444

4545
[workspace.dependencies]
46+
bytes = "^1.2"
4647
dirs = "6.0.0"
4748
futures = "0.3"
49+
papaya = "0.2"
4850
tokio = { version = "1.44", features = [
4951
"macros",
5052
"rt",
@@ -79,7 +81,6 @@ colored = "2.0.0"
7981
windows-sys = "0.52.0"
8082
chrono = { version = "0.4.26", default-features = false }
8183
clap = { version = "4.2.7", features = ["cargo", "derive"] }
82-
bytes = "1.3.0"
8384
async-trait = "0.1.58"
8485
socket2 = "0.5.7"
8586
surge-ping = "0.8"

0 commit comments

Comments
 (0)