Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version rand & friends at workspace level #2508

Merged
merged 2 commits into from
Jun 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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