Skip to content

Commit 4ecc1f3

Browse files
committed
Get tokio version from workspace everywhere
Signed-off-by: J Robert Ray <[email protected]>
1 parent 27933e2 commit 4ecc1f3

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

crates/spfs-cli/cmd-clean/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ miette = { workspace = true, features = ["fancy"] }
2727
question = "0.2.2"
2828
spfs = { workspace = true }
2929
spfs-cli-common = { workspace = true }
30-
tokio = { version = "1.43", features = ["rt", "rt-multi-thread"] }
30+
tokio = { workspace = true, features = ["rt", "rt-multi-thread"] }
3131
tracing = { workspace = true }
3232
url = { version = "2.2", features = ["serde"] }

crates/spfs-cli/cmd-enter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ miette = { workspace = true, features = ["fancy"] }
2525
nix = { workspace = true }
2626
spfs = { workspace = true }
2727
spfs-cli-common = { workspace = true }
28-
tokio = { version = "1.43", features = ["rt", "rt-multi-thread"] }
28+
tokio = { workspace = true, features = ["rt", "rt-multi-thread"] }
2929
tracing = { workspace = true }
3030
url = "2.2"

crates/spfs-cli/cmd-fuse/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ miette = { workspace = true, features = ["fancy"] }
3535
nix = { workspace = true, features = ["process"] }
3636
spfs = { workspace = true, features = ["fuse-backend"] }
3737
spfs-cli-common = { workspace = true }
38-
tokio = { version = "1.43", features = ["rt", "rt-multi-thread"] }
38+
tokio = { workspace = true, features = ["rt", "rt-multi-thread"] }
3939
tracing = { workspace = true }
4040
url = "2.2"
4141

crates/spfs-cli/cmd-join/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ futures = { workspace = true }
2525
miette = { workspace = true, features = ["fancy"] }
2626
spfs = { workspace = true }
2727
spfs-cli-common = { workspace = true }
28-
tokio = { version = "1.43", features = ["rt", "rt-multi-thread"] }
28+
tokio = { workspace = true, features = ["rt", "rt-multi-thread"] }
2929
tracing = { workspace = true }

crates/spfs-cli/cmd-monitor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ miette = { workspace = true, features = ["fancy"] }
2525
nix = { workspace = true }
2626
spfs = { workspace = true, features = ["fuse-backend"] }
2727
spfs-cli-common = { workspace = true }
28-
tokio = { version = "1.43", features = ["rt", "rt-multi-thread"] }
28+
tokio = { workspace = true, features = ["rt", "rt-multi-thread"] }
2929
tracing = { workspace = true }
3030
url = "2.2"

crates/spfs-cli/cmd-render/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ serde_json = { workspace = true }
2828
spfs = { workspace = true }
2929
spfs-cli-common = { workspace = true }
3030
strum = { workspace = true, features = ["derive"] }
31-
tokio = { version = "1.43", features = ["rt", "rt-multi-thread"] }
31+
tokio = { workspace = true, features = ["rt", "rt-multi-thread"] }
3232
tracing = { workspace = true }

crates/spfs-cli/cmd-winfsp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ nix = { workspace = true, features = ["process"] }
2828
spfs-vfs = { workspace = true, features = ["winfsp-backend"] }
2929
spfs = { workspace = true, features = ["winfsp-backend"] }
3030
spfs-cli-common = { workspace = true }
31-
tokio = { version = "1.43", features = ["rt"] }
31+
tokio = { workspace = true, features = ["rt"] }
3232
tracing = { workspace = true }
3333
tonic = { workspace = true }
3434
tower = { workspace = true }

crates/spfs-cli/main/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ serde_yaml = { workspace = true }
4141
spfs = { workspace = true }
4242
spfs-cli-common = { workspace = true }
4343
strum = { workspace = true, features = ["derive"] }
44-
tokio = { version = "1.43", features = ["io-util", "rt", "rt-multi-thread"] }
44+
tokio = { workspace = true, features = ["io-util", "rt", "rt-multi-thread"] }
4545
tokio-stream = { version = "0.1", features = ["net"] }
4646
tonic = { workspace = true, optional = true }
4747
tracing = { workspace = true }

crates/spfs-encoding/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ data-encoding = { workspace = true }
1717
ring = { workspace = true }
1818
serde = { workspace = true, features = ["derive"] }
1919
spfs-proto = { path = "../spfs-proto" }
20-
tokio = { version = "1.43", features = ["io-util", "io-std"] }
20+
tokio = { workspace = true, features = ["io-util", "io-std"] }
2121
thiserror = { workspace = true }
2222
miette = { workspace = true }
2323

crates/spfs-vfs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ miette = { workspace = true, features = ["fancy"] }
4141
prost = { workspace = true, optional = true }
4242
spfs = { workspace = true }
4343
thiserror = { workspace = true }
44-
tokio = { version = "1.20", features = ["rt", "rt-multi-thread"] }
44+
tokio = { workspace = true, features = ["rt", "rt-multi-thread"] }
4545
tracing = { workspace = true }
4646
tonic = { workspace = true, optional = true }
4747
url = "2.2"

0 commit comments

Comments
 (0)