Skip to content

Commit be17794

Browse files
authored
Remove unnecessary re_types dev dependency in re_entity_db (#9264)
minor cleanup in passing
1 parent 675c6cf commit be17794

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

Cargo.lock

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6174,7 +6174,6 @@ dependencies = [
61746174
"re_query",
61756175
"re_smart_channel",
61766176
"re_tracing",
6177-
"re_types",
61786177
"re_types_core",
61796178
"serde",
61806179
"similar-asserts",

crates/store/re_entity_db/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ web-time.workspace = true
5353

5454
[dev-dependencies]
5555
re_log_encoding = { workspace = true, features = ["decoder", "encoder"] }
56-
re_types.workspace = true
5756

5857
anyhow.workspace = true
5958
criterion.workspace = true

crates/store/re_entity_db/tests/clear.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ use re_log_types::{
1010
example_components::{MyColor, MyIndex, MyPoint},
1111
EntityPath, StoreId, TimeInt, TimePoint, Timeline,
1212
};
13-
use re_types::ComponentBatch as _;
14-
use re_types_core::{archetypes::Clear, components::ClearIsRecursive, AsComponents as _};
13+
use re_types_core::{
14+
archetypes::Clear, components::ClearIsRecursive, AsComponents as _, ComponentBatch as _,
15+
};
1516

1617
// ---
1718

0 commit comments

Comments
 (0)