Skip to content

Commit

Permalink
fix dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Dec 19, 2024
1 parent c655460 commit cf49745
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2398,7 +2398,6 @@ name = "extend_viewer_ui"
version = "0.22.0-alpha.1+dev"
dependencies = [
"mimalloc",
"re_byte_size",
"re_crash_handler",
"re_sdk_comms",
"re_viewer",
Expand Down
1 change: 1 addition & 0 deletions crates/store/re_chunk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ pub mod external {
pub use arrow2;
pub use nohash_hasher;

pub use re_byte_size;
pub use re_log_types;

#[cfg(not(target_arch = "wasm32"))]
Expand Down
1 change: 0 additions & 1 deletion examples/rust/extend_viewer_ui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ default = []
analytics = ["re_crash_handler/analytics", "re_viewer/analytics"]

[dependencies]
re_byte_size.workspace = true
re_crash_handler = { path = "../../../crates/utils/re_crash_handler" }
re_viewer = { path = "../../../crates/viewer/re_viewer", default-features = false }

Expand Down
3 changes: 2 additions & 1 deletion examples/rust/extend_viewer_ui/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
//! This example shows how to wrap the Rerun Viewer in your own GUI.
use re_viewer::external::{
arrow2, eframe, egui, re_chunk_store, re_entity_db, re_log, re_log_types, re_memory, re_types,
arrow2, eframe, egui, re_byte_size, re_chunk_store, re_entity_db, re_log, re_log_types,
re_memory, re_types,
};

// By using `re_memory::AccountingAllocator` Rerun can keep track of exactly how much memory it is using,
Expand Down

0 comments on commit cf49745

Please sign in to comment.