Skip to content

Commit

Permalink
Add futures to workspace dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Serock3 committed Sep 24, 2024
1 parent adf9981 commit 3c80927
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ unused_async = "deny"
[workspace.dependencies]
tokio = { version = "1.8" }
parity-tokio-ipc = "0.9"
futures = "0.3.15"
# Tonic and related crates
tonic = "0.10.0"
tonic-build = { version = "0.10.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion mullvad-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ api-override = []
libc = "0.2"
chrono = { workspace = true }
thiserror = { workspace = true }
futures = "0.3"
futures = { workspace = true }
http = "0.2"
hyper = { version = "0.14", features = ["client", "stream", "http1", "tcp" ] }
ipnetwork = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion mullvad-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ anyhow = "1.0"
chrono = { workspace = true }
clap = { workspace = true }
thiserror = { workspace = true }
futures = "0.3"
futures = { workspace = true }
itertools = "0.10"
natord = "1.0.9"

Expand Down
2 changes: 1 addition & 1 deletion mullvad-daemon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ chrono = { workspace = true }
thiserror = { workspace = true }
either = "1.11"
fern = { version = "0.6", features = ["colored"] }
futures = "0.3"
futures = { workspace = true }
libc = "0.2"
log = { workspace = true }
regex = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion mullvad-jni/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ crate-type = ["cdylib"]
tokio = { workspace = true, features = ["rt"] }

thiserror = { workspace = true }
futures = "0.3"
futures = { workspace = true }
ipnetwork = { workspace = true }
jnix = { version = "0.5.1", features = ["derive"] }
log = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion mullvad-management-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ tonic = { workspace = true }
tower = { workspace = true }
prost = { workspace = true }
prost-types = { workspace = true }
futures = "0.3"
futures = { workspace = true }
tokio = { workspace = true, features = ["rt"] }
parity-tokio-ipc = { workspace = true }

Expand Down
2 changes: 1 addition & 1 deletion talpid-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ workspace = true
[dependencies]
chrono = { workspace = true, features = ["clock"] }
thiserror = { workspace = true }
futures = "0.3.15"
futures = { workspace = true }
ipnetwork = { workspace = true }
libc = "0.2"
log = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion talpid-openvpn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ workspace = true
[dependencies]
async-trait = "0.1"
thiserror = { workspace = true }
futures = "0.3.15"
futures = { workspace = true }
log = { workspace = true }
shell-escape = "0.1"
talpid-routing = { path = "../talpid-routing" }
Expand Down
2 changes: 1 addition & 1 deletion talpid-routing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ workspace = true

[dependencies]
thiserror = { workspace = true }
futures = "0.3.15"
futures = { workspace = true }
ipnetwork = { workspace = true }
log = { workspace = true }
tokio = { workspace = true, features = ["process", "rt-multi-thread", "net", "io-util", "time"] }
Expand Down
2 changes: 1 addition & 1 deletion talpid-tunnel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ cfg-if = "1.0"
ipnetwork = { workspace = true }
talpid-routing = { path = "../talpid-routing" }
talpid-types = { path = "../talpid-types" }
futures = "0.3.15"
futures = { workspace = true }
tokio = { workspace = true, features = ["process", "rt-multi-thread", "fs"] }

[target.'cfg(all(unix, not(target_os = "android")))'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion talpid-windows/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ workspace = true
[target.'cfg(windows)'.dependencies]
thiserror = { workspace = true }
socket2 = { version = "0.5.3" }
futures = "0.3.15"
futures = { workspace = true }

talpid-types = { path = "../talpid-types" }

Expand Down
2 changes: 1 addition & 1 deletion talpid-wireguard/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ workspace = true

[dependencies]
thiserror = { workspace = true }
futures = "0.3.15"
futures = { workspace = true }
hex = "0.4"
ipnetwork = { workspace = true }
once_cell = { workspace = true }
Expand Down

0 comments on commit 3c80927

Please sign in to comment.