Skip to content

Commit

Permalink
Version rand & friends at workspace level (#2508)
Browse files Browse the repository at this point in the history
<!-- This line will get updated when the PR build summary job finishes.
-->
PR Build Summary: https://build.rerun.io/pr/2508

<!-- This comment will be replaced by a link to the documentation
preview -->
  • Loading branch information
teh-cmc authored and emilk committed Jun 29, 2023
1 parent d0064ed commit 78a1d02
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ polars-core = "0.29"
polars-lazy = "0.29"
polars-ops = "0.29"
puffin = "0.15"
rand = { version = "0.8", default-features = false }
rand_distr = { version = "0.4", default-features = false }
rayon = "1.7"
rfd = { version = "0.11.3", default_features = false, features = [
"xdg-portal",
Expand Down
2 changes: 1 addition & 1 deletion crates/re_arrow_store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ polars-core = { workspace = true, features = [
"fmt",
"sort_multiple",
] }
rand = "0.8"
rand.workspace = true
tinyvec.workspace = true

[lib]
Expand Down
2 changes: 1 addition & 1 deletion crates/re_components/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ uuid = { version = "1.1", features = ["serde", "v4", "js"] }
ecolor = { workspace = true, optional = true }
glam = { workspace = true, optional = true }
image = { workspace = true, optional = true, default-features = false }
rand = { version = "0.8", optional = true }
rand = { workspace = true, optional = true }
serde = { version = "1", optional = true, features = ["derive", "rc"] }
zune-core = { version = "0.2", optional = true }
zune-jpeg = { version = "0.3", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/re_data_store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ re_components = { workspace = true, features = ["arrow_datagen"] }
re_log_encoding = { workspace = true, features = ["decoder", "encoder"] }
criterion = "0.5"
mimalloc.workspace = true
rand = "0.8"
rand.workspace = true

[lib]
bench = false
Expand Down
2 changes: 1 addition & 1 deletion crates/re_renderer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ wgpu-core.workspace = true
image = { workspace = true, default-features = false, features = ["png"] }
log = "0.4"
pollster = "0.3"
rand = "0.8"
rand = { workspace = true, features = ["std", "std_rng"] }
web-time.workspace = true
winit = "0.28.1"
zip = { version = "0.6", default-features = false, features = ["deflate"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/re_sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ thiserror.workspace = true
arrow2_convert.workspace = true
ndarray.workspace = true
ndarray-rand = "0.14"
rand = "0.8"
rand.workspace = true
similar-asserts = "1.4.2"


Expand Down
2 changes: 1 addition & 1 deletion crates/re_sdk_comms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ re_smart_channel.workspace = true
ahash.workspace = true
crossbeam.workspace = true
document-features = "0.2"
rand = { version = "0.8.5", features = ["small_rng"] }
rand = { workspace = true, features = ["small_rng"] }
thiserror.workspace = true
tokio.workspace = true
2 changes: 1 addition & 1 deletion rerun_py/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ numpy = { version = "0.19.0", features = ["half"] }
once_cell = "1.12"
parking_lot = "0.12"
pyo3 = { version = "0.19.0", features = ["abi3-py38"] }
rand = { version = "0.8", features = ["std_rng"] }
rand = { workspace = true, features = ["std_rng"] }
tokio = { workspace = true, features = ["rt-multi-thread", "signal"] }
uuid = "1.1"

Expand Down

0 comments on commit 78a1d02

Please sign in to comment.