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

Introduce support for querying Archetypes #2743

Merged
merged 17 commits into from
Jul 20, 2023
Merged
5 changes: 5 additions & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions crates/re_components/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ serde = ["dep:serde", "half/serde", "re_log_types/serde"]
re_log_types.workspace = true
re_log.workspace = true
re_tracing.workspace = true
re_types.workspace = true

# External
ahash.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/re_components/src/class_id.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,9 @@ impl re_log_types::Component for ClassId {
"rerun.class_id".into()
}
}

impl From<re_types::components::ClassId> for ClassId {
fn from(other: re_types::components::ClassId) -> Self {
Self(other.0)
}
}
6 changes: 6 additions & 0 deletions crates/re_components/src/keypoint_id.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,9 @@ impl re_log_types::Component for KeypointId {
"rerun.keypoint_id".into()
}
}

impl From<re_types::components::KeypointId> for KeypointId {
fn from(other: re_types::components::KeypointId) -> Self {
Self(other.0)
}
}
1 change: 1 addition & 0 deletions crates/re_log_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ re_format.workspace = true
re_log.workspace = true
re_string_interner.workspace = true
re_tracing.workspace = true
re_types.workspace = true
re_tuid = { workspace = true, features = ["arrow2_convert"] }

# External
Expand Down
6 changes: 6 additions & 0 deletions crates/re_log_types/src/instance_key.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,9 @@ impl Component for InstanceKey {
"rerun.instance_key".into()
}
}

impl From<re_types::components::InstanceKey> for InstanceKey {
fn from(other: re_types::components::InstanceKey) -> Self {
Self(other.0)
}
}
2 changes: 2 additions & 0 deletions crates/re_query/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,13 @@ re_components = { workspace = true, features = ["arrow_datagen"] }
re_data_store.workspace = true
re_format.workspace = true
re_log_types.workspace = true
re_types.workspace = true
re_log.workspace = true
re_tracing.workspace = true

# External dependencies:
arrow2.workspace = true
backtrace = "0.3"
document-features = "0.2"
itertools = { workspace = true }
thiserror.workspace = true
Expand Down
Loading