Skip to content

Commit e7a4258

Browse files
authored
Convert remaining deps into workspace deps (#11454)
1 parent 6b56966 commit e7a4258

File tree

21 files changed

+50
-142
lines changed

21 files changed

+50
-142
lines changed

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,9 @@ profiling = { version = "1.0.12", default-features = false }
308308
prometheus-client = "0.24"
309309
prost = "0.13.3"
310310
prost-build = "0.13.3"
311-
prost-types = "0.13.3"
312311
prost-reflect = "0.15.3"
312+
prost-types = "0.13.3"
313+
protoc-prebuilt = "0.3"
313314
puffin = "0.19.1"
314315
puffin_http = "0.16"
315316
pyo3 = "0.24.1"

crates/build/re_protos_builder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ camino.workspace = true
2929
tonic-build = { workspace = true, default-features = false, features = [
3030
"prost",
3131
] }
32-
prost-build = { workspace = true }
32+
prost-build.workspace = true

examples/rust/animated_urdf/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ rerun = { path = "../../../crates/top/rerun", features = [
1212
"data_loaders",
1313
] }
1414

15-
anyhow = "1.0"
16-
clap = { version = "4.0", features = ["derive"] }
17-
emath = "0.32.0"
15+
anyhow.workspace = true
16+
clap = { workspace = true, features = ["derive"] }
17+
emath.workspace = true

examples/rust/clock/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ rerun = { path = "../../../crates/top/rerun", features = [
1212
"clap",
1313
] }
1414

15-
anyhow = "1.0"
16-
clap = { version = "4.0", features = ["derive"] }
15+
anyhow.workspace = true
16+
clap = { workspace = true, features = ["derive"] }

examples/rust/custom_callback/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ rerun = { path = "../../../crates/top/rerun", default-features = false, features
2626
"run",
2727
] }
2828

29-
bincode = "1.3.3"
30-
mimalloc = "0.1.43"
31-
parking_lot = "0.12"
32-
serde = { version = "1.0.213", features = ["derive"] }
33-
tokio = { version = "1.14.0", features = [
29+
bincode.workspace = true
30+
mimalloc.workspace = true
31+
parking_lot.workspace = true
32+
serde = { workspace = true, features = ["derive"] }
33+
tokio = { workspace = true, features = [
34+
"io-util",
3435
"macros",
35-
"rt-multi-thread",
36-
"time",
3736
"net",
38-
"io-util",
39-
"sync",
37+
"rt-multi-thread",
4038
"signal",
39+
"sync",
40+
"time",
4141
] }

examples/rust/custom_view/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ rerun = { path = "../../../crates/top/rerun", default-features = false, features
2020
] }
2121

2222
# mimalloc is a much faster allocator:
23-
mimalloc = "0.1.43"
23+
mimalloc.workspace = true

examples/rust/dataframe_query/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ rerun = { path = "../../../crates/top/rerun", default-features = false, features
1111
"dataframe",
1212
] }
1313

14-
itertools = "0.14"
15-
unindent = "0.2"
14+
itertools.workspace = true
15+
unindent.workspace = true

examples/rust/dna/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ publish = false
99
[dependencies]
1010
rerun = { path = "../../../crates/top/rerun" }
1111

12-
itertools = "0.14"
13-
rand = "0.8"
12+
itertools.workspace = true
13+
rand = { workspace = true, features = ["std"] }

examples/rust/extend_viewer_ui/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ rerun = { path = "../../../crates/top/rerun", default-features = false, features
2020
] }
2121

2222
# mimalloc is a much faster allocator:
23-
mimalloc = "0.1.43"
23+
mimalloc.workspace = true

examples/rust/external_data_loader/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ rerun = { path = "../../../crates/top/rerun", default-features = false, features
1111
"sdk",
1212
] }
1313

14-
anyhow = "1.0"
15-
argh = "0.1"
14+
anyhow.workspace = true
15+
argh.workspace = true

0 commit comments

Comments
 (0)