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

Move Time/ComponentColumnDescriptor to new re_sorbet #8813

Merged
merged 8 commits into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,10 @@ Update instructions:
| --------------- | --------------------------------------------------------------------------------------------- |
| re_chunk | A chunk of Rerun data, encoded using Arrow. Used for logging, transport, storage and compute. |
| re_chunk_store | An in-memory time series database for Rerun log data, based on Apache Arrow. |
| re_format_arrow | Formatting of Apache Arrow tables. |
| re_log_types | The basic building blocks of the Rerun data types and tables. |
| re_sorbet | Rerun arrow metadata and record batch definitions. |
| re_types_core | The core traits and types that power Rerun's data model. |
| re_format_arrow | Formatting of Apache Arrow tables. |

### Data flow

Expand Down
12 changes: 12 additions & 0 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5758,6 +5758,7 @@ dependencies = [
"re_log_encoding",
"re_log_types",
"re_protos",
"re_sorbet",
"re_tracing",
"re_types",
"re_types_core",
Expand Down Expand Up @@ -6469,6 +6470,17 @@ dependencies = [
"web-time",
]

[[package]]
name = "re_sorbet"
version = "0.22.0-alpha.1+dev"
dependencies = [
"arrow",
"re_log",
"re_log_types",
"re_types_core",
"thiserror 1.0.65",
]

[[package]]
name = "re_string_interner"
version = "0.22.0-alpha.1+dev"
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ re_log_encoding = { path = "crates/store/re_log_encoding", version = "=0.22.0-al
re_log_types = { path = "crates/store/re_log_types", version = "=0.22.0-alpha.1", default-features = false }
re_query = { path = "crates/store/re_query", version = "=0.22.0-alpha.1", default-features = false }
re_sdk_comms = { path = "crates/store/re_sdk_comms", version = "=0.22.0-alpha.1", default-features = false }
re_sorbet = { path = "crates/store/re_sorbet", version = "=0.22.0-alpha.1", default-features = false }
re_types = { path = "crates/store/re_types", version = "=0.22.0-alpha.1", default-features = false }
re_types_core = { path = "crates/store/re_types_core", version = "=0.22.0-alpha.1", default-features = false }
re_ws_comms = { path = "crates/store/re_ws_comms", version = "=0.22.0-alpha.1", default-features = false }
Expand Down
1 change: 1 addition & 0 deletions crates/store/re_chunk_store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ re_log = { workspace = true, features = ["setup"] }
re_log_encoding = { workspace = true, features = ["decoder"] }
re_log_types.workspace = true
re_protos.workspace = true
re_sorbet.workspace = true
re_tracing.workspace = true
re_types_core.workspace = true

Expand Down
Loading
Loading