Skip to content

Commit

Permalink
Fix missing feature flags for benchmarks (#2515)
Browse files Browse the repository at this point in the history
Unbreaking `main`

---

<!-- This line will get updated when the PR build summary job finishes.
-->
PR Build Summary: https://build.rerun.io/pr/2515

<!-- pr-link-docs:start -->
Docs preview: https://rerun.io/preview/9cd1c36/docs
Examples preview: https://rerun.io/preview/9cd1c36/examples
<!-- pr-link-docs:end -->
  • Loading branch information
teh-cmc authored and emilk committed Jun 29, 2023
1 parent 2a385a0 commit 29a8537
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 = { workspace = true, optional = true }
rand = { workspace = true, optional = true, features = ["std", "std_rng"] }
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_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 = { workspace = true, features = ["small_rng"] }
rand = { workspace = true, features = ["std", "std_rng", "small_rng"] }
thiserror.workspace = true
tokio.workspace = true

0 comments on commit 29a8537

Please sign in to comment.