Skip to content

Commit

Permalink
warning fixes, remove unused crates
Browse files Browse the repository at this point in the history
  • Loading branch information
Wumpf committed May 31, 2023
1 parent 61011d8 commit 0abf747
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 48 deletions.
20 changes: 0 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 0 additions & 6 deletions crates/re_space_view/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,10 @@ include = ["../../LICENSE-APACHE", "../../LICENSE-MIT", "**/*.rs", "Cargo.toml"]
all-features = true

[dependencies]
re_arrow_store.workspace = true
re_components.workspace = true
re_data_store.workspace = true
re_data_ui.workspace = true
re_log_types.workspace = true
re_log.workspace = true
re_query.workspace = true
re_renderer.workspace = true
re_tracing.workspace = true
re_ui.workspace = true
re_viewer_context.workspace = true

ahash.workspace = true
Expand Down
8 changes: 2 additions & 6 deletions crates/re_space_view/src/highlights.rs
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
use ahash::HashMap;
use egui::NumExt;
use lazy_static::lazy_static;
use nohash_hasher::IntMap;

use re_log_types::{EntityPath, EntityPathHash, InstanceKey};
use re_log_types::{EntityPathHash, InstanceKey};
use re_renderer::OutlineMaskPreference;

use re_viewer_context::{
HoverHighlight, InteractionHighlight, Item, SelectionHighlight, SelectionState, SpaceViewId,
};
use re_viewer_context::InteractionHighlight;

/// Highlights of a specific entity path in a specific space view.
///
Expand Down
11 changes: 1 addition & 10 deletions crates/re_space_view_spatial/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ re_log_types.workspace = true
re_log.workspace = true
re_query.workspace = true
re_renderer.workspace = true
re_string_interner.workspace = true
re_tracing.workspace = true
re_ui.workspace = true
re_viewer_context.workspace = true
Expand All @@ -35,20 +34,12 @@ re_space_view.workspace = true
ahash.workspace = true
anyhow.workspace = true
bytemuck.workspace = true
egui-wgpu.workspace = true
egui.workspace = true
eframe.workspace = true
glam.workspace = true
half.workspace = true
itertools.workspace = true
lazy_static.workspace = true
macaw.workspace = true
ndarray.workspace = true
macaw = { workspace = true, features = ["with_serde"] }
nohash-hasher.workspace = true
serde = "1"
slotmap.workspace = true
smallvec = { workspace = true, features = ["serde"] }
thiserror.workspace = true
uuid = { version = "1.1", features = ["serde", "v4", "js"] }
vec1.workspace = true
wgpu.workspace = true
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use re_components::{ColorRGBA, Component, InstanceKey, Mesh3D};
use re_data_store::EntityPath;
use re_query::{query_primary_with_history, EntityView, QueryError};
use re_space_view::{SpaceViewHighlights, SpaceViewOutlineMasks};
use re_space_view::SpaceViewHighlights;
use re_viewer_context::{DefaultColor, SceneQuery, ViewerContext};

use crate::{
Expand Down
5 changes: 0 additions & 5 deletions crates/re_viewport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ re_arrow_store.workspace = true
re_components = { workspace = true, features = ["ecolor", "glam", "image"] }
re_data_store = { workspace = true, features = ["serde"] }
re_data_ui.workspace = true
re_error.workspace = true
re_format.workspace = true
re_log_types.workspace = true
re_log.workspace = true
Expand Down Expand Up @@ -58,12 +57,8 @@ image = { workspace = true, default-features = false, features = [
"png",
] }
itertools.workspace = true
lazy_static.workspace = true
macaw = { workspace = true, features = ["with_serde"] }
ndarray.workspace = true
nohash-hasher = "0.2"
serde = "1.0"
slotmap.workspace = true
smallvec = { workspace = true, features = ["serde"] }
thiserror.workspace = true
wgpu.workspace = true

0 comments on commit 0abf747

Please sign in to comment.