From 71faa8409fe870a13f34e56dc0e0282d2db521a4 Mon Sep 17 00:00:00 2001 From: Andreas Reich Date: Thu, 14 Nov 2024 19:14:27 +0100 Subject: [PATCH 01/16] Better clarify use of FFmpeg in video docs (#8150) ### What ### Checklist * [x] I have read and agree to [Contributor Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and the [Code of Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md) * [x] I've included a screenshot or gif (if applicable) * [x] I have tested the web demo (if applicable): * Using examples from latest `main` build: [rerun.io/viewer](https://rerun.io/viewer/pr/8150?manifest_url=https://app.rerun.io/version/main/examples_manifest.json) * Using full set of examples from `nightly` build: [rerun.io/viewer](https://rerun.io/viewer/pr/8150?manifest_url=https://app.rerun.io/version/nightly/examples_manifest.json) * [x] The PR title and labels are set such as to maximize their usefulness for the next release's CHANGELOG * [x] If applicable, add a new check to the [release checklist](https://github.com/rerun-io/rerun/blob/main/tests/python/release_checklist)! * [x] If have noted any breaking changes to the log API in `CHANGELOG.md` and the migration guide - [PR Build Summary](https://build.rerun.io/pr/8150) - [Recent benchmark results](https://build.rerun.io/graphs/crates.html) - [Wasm size tracking](https://build.rerun.io/graphs/sizes.html) To run all checks from `main`, comment on the PR with `@rerun-bot full-check`. To deploy documentation changes immediately after merging this PR, add the `deploy docs` label. --- docs/content/reference/video.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/docs/content/reference/video.md b/docs/content/reference/video.md index ffb44c126c79..ce86ecc1157c 100644 --- a/docs/content/reference/video.md +++ b/docs/content/reference/video.md @@ -64,9 +64,20 @@ In those cases where encoding time matters, we recommend H.264/avc. ### Native viewer -* AV1 is supported out of the box using a software decoder paired with gpu based image conversion -* H.264/avc is supported via a system installed `FFmpeg` binary - * When no binary is found, Rerun offers a download link to a build of `FFmpeg` for your platform in the selection panel upon selecting the failed video +#### AV1 + +AV1 is supported out of the box using a software decoder paired with gpu based image conversion + +#### H.264/avc + +H.264/avc is supported via a separately installed `FFmpeg` binary, requiring a minimum version of `5.1`. + +The viewer does intentionally not come bundled with `FFmpeg` to avoid licensing issues. +By default rerun will look for a system installed `FFmpeg` installation in `PATH`, +but you can specify a custom path in the viewer's settings. + +If you select a video that failed to play due to missing or incompatible `FFmpeg` binaries it will offer a download link to a build of `FFmpeg` for your platform. + ### Web viewer Video playback in the Rerun Web Viewer is done using the browser's own video decoder, so the exact supported codecs depend on your browser. From 48ea6da8070b2bdff3f3572d1ce87776d711e363 Mon Sep 17 00:00:00 2001 From: Andreas Reich Date: Thu, 14 Nov 2024 19:14:55 +0100 Subject: [PATCH 02/16] Fix some anchor links in docs (#8152) ### What ### Checklist * [x] I have read and agree to [Contributor Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and the [Code of Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md) * [x] I've included a screenshot or gif (if applicable) * [x] I have tested the web demo (if applicable): * Using examples from latest `main` build: [rerun.io/viewer](https://rerun.io/viewer/pr/8152?manifest_url=https://app.rerun.io/version/main/examples_manifest.json) * Using full set of examples from `nightly` build: [rerun.io/viewer](https://rerun.io/viewer/pr/8152?manifest_url=https://app.rerun.io/version/nightly/examples_manifest.json) * [x] The PR title and labels are set such as to maximize their usefulness for the next release's CHANGELOG * [x] If applicable, add a new check to the [release checklist](https://github.com/rerun-io/rerun/blob/main/tests/python/release_checklist)! * [x] If have noted any breaking changes to the log API in `CHANGELOG.md` and the migration guide - [PR Build Summary](https://build.rerun.io/pr/8152) - [Recent benchmark results](https://build.rerun.io/graphs/crates.html) - [Wasm size tracking](https://build.rerun.io/graphs/sizes.html) To run all checks from `main`, comment on the PR with `@rerun-bot full-check`. To deploy documentation changes immediately after merging this PR, add the `deploy docs` label. --- docs/content/concepts/app-model.md | 12 +++++++----- docs/content/concepts/blueprint.md | 2 +- .../content/getting-started/navigating-the-viewer.md | 2 +- docs/content/reference/video.md | 2 +- docs/content/reference/viewer/blueprint.md | 2 +- 5 files changed, 11 insertions(+), 9 deletions(-) diff --git a/docs/content/concepts/app-model.md b/docs/content/concepts/app-model.md index e486626975b7..4029e722d385 100644 --- a/docs/content/concepts/app-model.md +++ b/docs/content/concepts/app-model.md @@ -129,7 +129,7 @@ Reference: * [🌊 C++ `save`](https://ref.rerun.io/docs/cpp/stable/classrerun_1_1RecordingStream.html#a555a7940a076c93d951de5b139d14918) @@ -172,22 +172,24 @@ rerun --port 6789 image.jpg & + +- [Rust API docs](https://ref.rerun.io/docs/rust/stable/rerun/) - [Troubleshooting](https://www.rerun.io/docs/getting-started/troubleshooting) diff --git a/crates/top/rerun/README.md b/crates/top/rerun/README.md index 3882f1f038e5..cddfb83967cf 100644 --- a/crates/top/rerun/README.md +++ b/crates/top/rerun/README.md @@ -6,7 +6,7 @@

Latest version - Documentation + Documentation MIT Apache Rerun Discord @@ -32,7 +32,9 @@ rec.log("image", &rerun::archetypes::Image::new(image))?; ## Getting started - [Examples](https://github.com/rerun-io/rerun/tree/latest/examples/rust) - [High-level docs](http://rerun.io/docs) -- [Rust API docs](https://docs.rs/rerun/) + + +- [Rust API docs](https://ref.rerun.io/docs/rust/stable/rerun/) - [Troubleshooting](https://www.rerun.io/docs/getting-started/troubleshooting) ## Library diff --git a/docs/content/concepts/annotation-context.md b/docs/content/concepts/annotation-context.md index cd89d4cee311..8fc00f0d0bc1 100644 --- a/docs/content/concepts/annotation-context.md +++ b/docs/content/concepts/annotation-context.md @@ -54,7 +54,7 @@ The Annotation Context is defined as a list of Class Descriptions that define ho Annotation contexts are logged with: * Python: 🐍[`rr.AnnotationContext`](https://ref.rerun.io/docs/python/stable/common/archetypes/#rerun.archetypes.AnnotationContext) -* Rust: 🦀[`rerun::AnnotationContext`](https://docs.rs/rerun/latest/rerun/archetypes/struct.AnnotationContext.html#) +* Rust: 🦀[`rerun::AnnotationContext`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.AnnotationContext.html#) snippet: tutorials/annotation-context @@ -72,7 +72,7 @@ By default, Rerun will automatically assign colors to each class id, but by defi you can explicitly determine the color of each class. * Python: [`rr.SegmentationImage`](https://ref.rerun.io/docs/python/stable/common/archetypes/#rerun.archetypes.SegmentationImage) -* Rust: Log a [`rerun::SegmentationImage`](https://docs.rs/rerun/latest/rerun/archetypes/struct.SegmentationImage.html) +* Rust: Log a [`rerun::SegmentationImage`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.SegmentationImage.html) diff --git a/docs/content/concepts/app-model.md b/docs/content/concepts/app-model.md index 4029e722d385..1666e493939e 100644 --- a/docs/content/concepts/app-model.md +++ b/docs/content/concepts/app-model.md @@ -84,7 +84,7 @@ Dataflow: Reference: * [SDK operating modes: `connect`](../reference/sdk/operating-modes.md#connect) * [🐍 Python `connect`](https://ref.rerun.io/docs/python/0.19.0/common/initialization_functions/#rerun.connect) -* [🦀 Rust `connect`](https://docs.rs/rerun/latest/rerun/struct.RecordingStreamBuilder.html#method.connect) +* [🦀 Rust `connect`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStreamBuilder.html#method.connect) * [🌊 C++ `connect`](https://ref.rerun.io/docs/cpp/stable/classrerun_1_1RecordingStream.html#aef3377ffaa2441b906d2bac94dd8fc64) ### Asynchronous workflow @@ -125,7 +125,7 @@ Dataflow: Reference: * [SDK operating modes: `save`](../reference/sdk/operating-modes.md#save) * [🐍 Python `save`](https://ref.rerun.io/docs/python/0.19.0/common/initialization_functions/#rerun.save) -* [🦀 Rust `save`](https://docs.rs/rerun/latest/rerun/struct.RecordingStreamBuilder.html#method.save) +* [🦀 Rust `save`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStreamBuilder.html#method.save) * [🌊 C++ `save`](https://ref.rerun.io/docs/cpp/stable/classrerun_1_1RecordingStream.html#a555a7940a076c93d951de5b139d14918) - -The easiest way to log geometric primitives is the use the [`RecordingStream::log`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.log) method with one of the built-in archetype class, such as [`Points3D`](https://docs.rs/rerun/latest/0.9.0-alpha.10/struct.Points3D.html). Archetypes take care of building batches +The easiest way to log geometric primitives is the use the [`RecordingStream::log`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.log) method with one of the built-in archetype class, such as [`Points3D`](https://ref.rerun.io/docs/rust/stable/rerun/struct.Points3D.html). Archetypes take care of building batches of components that are recognized and correctly displayed by the Rerun viewer. ### Components @@ -133,11 +131,9 @@ cases, it's possible to add custom components to archetypes, or even log entirel archetypes altogether. For more information on how the Rerun data model works, refer to our section on [Entities and Components](../../concepts/entity-component.md). -Notably, the [`RecordingStream::log`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.log) method - - +Notably, the [`RecordingStream::log`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.log) method -will handle any data type that implements the [`AsComponents`](https://docs.rs/rerun/latest/rerun/trait.AsComponents.html) trait, making it easy to add your own data. +will handle any data type that implements the [`AsComponents`](https://ref.rerun.io/docs/rust/stable/rerun/trait.AsComponents.html) trait, making it easy to add your own data. For more information on how to supply your own components see [Use custom data](../../howto/extend/custom-data.md). ### Entities & hierarchies @@ -265,7 +261,7 @@ for i in 0..400 { } ``` -First we use [`RecordingStream::set_time_seconds`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.set_time_seconds) to declare our own custom `Timeline` and set the current timestamp. +First we use [`RecordingStream::set_time_seconds`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.set_time_seconds) to declare our own custom `Timeline` and set the current timestamp. You can add as many timelines and timestamps as you want when logging data. ⚠️ If you run this code as is, the result will be.. surprising: the beads are animating as expected, but everything we've logged until that point is gone! ⚠️ @@ -334,7 +330,7 @@ Sometimes, sending the data over the network is not an option. Maybe you'd like Rerun has you covered: -- Use [`RecordingStream::save`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.save) to stream all logging data to disk. +- Use [`RecordingStream::save`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.save) to stream all logging data to disk. - Visualize it via `rerun path/to/recording.rrd` You can also save a recording (or a portion of it) as you're visualizing it, directly from the viewer. @@ -343,7 +339,7 @@ You can also save a recording (or a portion of it) as you're visualizing it, dir ### Spawning the Viewer from your process -If the Rerun Viewer is [installed](../installing-viewer.md) and available in your `PATH`, you can use [`RecordingStream::spawn`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.spawn) to automatically start a Viewer in a new process and connect to it over TCP. +If the Rerun Viewer is [installed](../installing-viewer.md) and available in your `PATH`, you can use [`RecordingStream::spawn`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.spawn) to automatically start a Viewer in a new process and connect to it over TCP. If an external Viewer was already running, `spawn` will connect to that one instead of spawning a new one. ```rust @@ -357,7 +353,7 @@ fn main() -> Result<(), Box> { } ``` -Alternatively, you can use [`rerun::native_viewer::show`](https://docs.rs/rerun/latest/rerun/native_viewer/fn.show.html) to start a Viewer on the main thread (for platform-compatibility reasons) and feed it data from memory. +Alternatively, you can use [`rerun::native_viewer::show`](https://ref.rerun.io/docs/rust/stable/rerun/native_viewer/fn.show.html) to start a Viewer on the main thread (for platform-compatibility reasons) and feed it data from memory. This requires the `native_viewer` feature to be enabled in `Cargo.toml`: ```toml diff --git a/docs/content/howto/logging/custom-data.md b/docs/content/howto/logging/custom-data.md index 8200fc88f701..6c14c80a47f4 100644 --- a/docs/content/howto/logging/custom-data.md +++ b/docs/content/howto/logging/custom-data.md @@ -16,7 +16,7 @@ rr.log( ) ``` -You can also create your own component by implementing the `AsComponents` [Python protocol](https://ref.rerun.io/docs/python/0.9.0/common/interfaces/#rerun.AsComponents) or [Rust trait](https://docs.rs/rerun/latest/rerun/trait.AsComponents.html), which means implementing the function, `as_component_batches()`. +You can also create your own component by implementing the `AsComponents` [Python protocol](https://ref.rerun.io/docs/python/0.9.0/common/interfaces/#rerun.AsComponents) or [Rust trait](https://ref.rerun.io/docs/rust/stable/rerun/trait.AsComponents.html), which means implementing the function, `as_component_batches()`. ## Remapping to a Rerun archetype Let's start with a simple example where you have your own point cloud class that is perfectly representable as a Rerun archetype. diff --git a/docs/content/howto/logging/send-columns.md b/docs/content/howto/logging/send-columns.md index cef7745b253a..9f5860821b10 100644 --- a/docs/content/howto/logging/send-columns.md +++ b/docs/content/howto/logging/send-columns.md @@ -14,7 +14,7 @@ In contrast to the `log` function, `send_columns` does NOT add any other timelin API docs of `send_columns`: * [🌊 C++](https://ref.rerun.io/docs/cpp/stable/classrerun_1_1RecordingStream.html#ad17571d51185ce2fc2fc2f5c3070ad65) * [🐍 Python](https://ref.rerun.io/docs/python/stable/common/columnar_api/#rerun.send_columns) -* [🦀 Rust](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.send_columns) +* [🦀 Rust](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.send_columns) ### Using `send_columns` for logging scalars diff --git a/docs/content/howto/visualization/reuse-blueprints.md b/docs/content/howto/visualization/reuse-blueprints.md index 4317e32cb4be..5c942faf6f95 100644 --- a/docs/content/howto/visualization/reuse-blueprints.md +++ b/docs/content/howto/visualization/reuse-blueprints.md @@ -29,7 +29,7 @@ The interactive way is to import the blueprint file directly into the Rerun view The programmatic way works by calling `log_file_from_path`: * [🐍 Python `log_file_from_path`](https://ref.rerun.io/docs/python/stable/common/logging_functions/#rerun.log_file_from_path) -* [🦀 Rust `log_file_from_path`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.log_file_from_path) +* [🦀 Rust `log_file_from_path`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.log_file_from_path) * [🌊 C++ `log_file_from_path`](https://ref.rerun.io/docs/cpp/stable/classrerun_1_1RecordingStream.html#a20798d7ea74cce5c8174e5cacd0a2c47) This method allows you to log any file that contains data that Rerun understands (in this case, blueprint data) as part of your current recording: diff --git a/docs/content/reference/data-loaders/overview.md b/docs/content/reference/data-loaders/overview.md index 8d99a890be41..dd6cb06b3fe9 100644 --- a/docs/content/reference/data-loaders/overview.md +++ b/docs/content/reference/data-loaders/overview.md @@ -35,7 +35,7 @@ The Rerun Viewer/SDK will then automatically load the data streamed to the exter Like any other `DataLoader`, an external loader will be notified of all file openings, unconditionally. -To indicate that it does not support a given file, the loader has to exit with a [dedicated status code](https://docs.rs/rerun/latest/rerun/constant.EXTERNAL_DATA_LOADER_INCOMPATIBLE_EXIT_CODE.html). +To indicate that it does not support a given file, the loader has to exit with a [dedicated status code](https://ref.rerun.io/docs/rust/stable/rerun/constant.EXTERNAL_DATA_LOADER_INCOMPATIBLE_EXIT_CODE.html). When the Viewer and/or SDK executes an external loader, it will pass to it a set of recommended settings in the form of CLI parameters (in addition to the file path to be loaded, which is passed as the one and only positional argument): diff --git a/docs/content/reference/dataframes.md b/docs/content/reference/dataframes.md index a7cb2dd076de..1f810b7ad47a 100644 --- a/docs/content/reference/dataframes.md +++ b/docs/content/reference/dataframes.md @@ -6,7 +6,7 @@ order: 300 Rerun, at its core, is a database. As such, you can always get your data back in the form of tables (also known as dataframes, or records, or batches...). This can be achieved in three different ways, depending on your needs: -* using the dataframe API, currently available in [Python](https://ref.rerun.io/docs/python/stable/common/dataframe/) and [Rust](https://docs.rs/rerun/latest/rerun/dataframe/index.html), +* using the dataframe API, currently available in [Python](https://ref.rerun.io/docs/python/stable/common/dataframe/) and [Rust](https://ref.rerun.io/docs/rust/stable/rerun/dataframe/index.html), * using the [blueprint API](../concepts/blueprint.md) to configure a [dataframe view](types/views/dataframe_view.md) from code, * or simply by setting up [dataframe view](types/views/dataframe_view.md) manually in the UI. @@ -28,7 +28,7 @@ snippet: reference/dataframe_query Check out the API reference to learn more about all the ways that data can be searched and filtered: * [🐍 Python API reference](https://ref.rerun.io/docs/python/stable/common/dataframe/) * [Example](https://github.com/rerun-io/rerun/blob/c00a9f649fd4463f91620e8e2eac11355b245ac5/examples/python/dataframe_query/dataframe_query.py) -* [🦀 Rust API reference](https://docs.rs/rerun/latest/rerun/dataframe/index.html) +* [🦀 Rust API reference](https://ref.rerun.io/docs/rust/stable/rerun/dataframe/index.html) * [Example](https://github.com/rerun-io/rerun/blob/c00a9f649fd4463f91620e8e2eac11355b245ac5/examples/rust/dataframe_query/src/main.rs) @@ -61,7 +61,7 @@ snippet: reference/dataframe_view_query_external Check out the blueprint API and `log_file_from_path` references to learn more: * [🐍 Python blueprint API reference](https://ref.rerun.io/docs/python/stable/common/blueprint_apis/) * [🐍 Python `log_file_from_path`](https://ref.rerun.io/docs/python/stable/common/logging_functions/#rerun.log_file_from_path) -* [🦀 Rust `log_file_from_path`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.log_file_from_path) +* [🦀 Rust `log_file_from_path`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.log_file_from_path) * [🌊 C++ `log_file_from_path`](https://ref.rerun.io/docs/cpp/stable/classrerun_1_1RecordingStream.html#a20798d7ea74cce5c8174e5cacd0a2c47) You can learn more in our [dedicated page about blueprint re-use](../howto/visualization/reuse-blueprints.md). diff --git a/docs/content/reference/migration/migration-0-9.md b/docs/content/reference/migration/migration-0-9.md index fb9749f08c48..4cbb65370693 100644 --- a/docs/content/reference/migration/migration-0-9.md +++ b/docs/content/reference/migration/migration-0-9.md @@ -245,21 +245,21 @@ Rust already used a more type oriented interface, so the changes are not as dras ## Removal of MsgSender -The biggest change that `MsgSender` is gone and all logging happens instead directly on the [`RecordingStream::RecordingStream`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html) -using its [`log`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.log) and [`RecordingStream::log_timeless`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.log_timeless) functions. +The biggest change that `MsgSender` is gone and all logging happens instead directly on the [`RecordingStream::RecordingStream`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html) +using its [`log`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.log) and [`RecordingStream::log_timeless`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.log_timeless) functions. ## Logging time -The new `log` function logs time implicitly. `log_time` and `log_tick` are always included, as well as any custom timeline set using [`RecordingStream::set_timepoint`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.set_timepoint), or one of the shorthands [`RecordingStream::set_time_sequence`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.set_time_sequence)/[`RecordingStream::set_time_seconds`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.set_time_seconds)/[`RecordingStream::set_time_nanos`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.set_time_nanos) +The new `log` function logs time implicitly. `log_time` and `log_tick` are always included, as well as any custom timeline set using [`RecordingStream::set_timepoint`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.set_timepoint), or one of the shorthands [`RecordingStream::set_time_sequence`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.set_time_sequence)/[`RecordingStream::set_time_seconds`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.set_time_seconds)/[`RecordingStream::set_time_nanos`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.set_time_nanos) ## Components -> archetypes -The new log messages consume any type that implements the [`AsComponents`](https://docs.rs/rerun/latest/rerun/trait.AsComponents.html) trait -which is [implemented by](https://docs.rs/rerun/latest/rerun/trait.AsComponents.html#implementors) all archetypes. +The new log messages consume any type that implements the [`AsComponents`](https://ref.rerun.io/docs/rust/stable/rerun/trait.AsComponents.html) trait +which is [implemented by](https://ref.rerun.io/docs/rust/stable/rerun/trait.AsComponents.html#implementors) all archetypes. All previously separately logged components have corresponding types and are used in one or more archetypes. See the respective API docs as well as the [Archetype Overview](../types/archetypes.md) to learn more and find self-contained code examples. -For continuing to log collections of components without implementing the [`AsComponents`](https://docs.rs/rerun/latest/rerun/trait.AsComponents.html) trait, use [`RecordingStream::log_component_batches`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.log_component_batches) +For continuing to log collections of components without implementing the [`AsComponents`](https://ref.rerun.io/docs/rust/stable/rerun/trait.AsComponents.html) trait, use [`RecordingStream::log_component_batches`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.log_component_batches) @@ -267,4 +267,4 @@ For continuing to log collections of components without implementing the [`AsCom Splatting is no longer done explicitly (before `MsgSender::splat`), but automatically inferred whenever there is a single component together with larger component batches on the same entity path. -See also [`RecordingStream::log_component_batches`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.log_component_batches) for more information. +See also [`RecordingStream::log_component_batches`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.log_component_batches) for more information. diff --git a/docs/content/reference/rust.md b/docs/content/reference/rust.md index 16ec9e4d616f..6523a1748d31 100644 --- a/docs/content/reference/rust.md +++ b/docs/content/reference/rust.md @@ -1,5 +1,5 @@ --- title: 🦀 Rust APIs order: 2200 -redirect: https://docs.rs/rerun/ +redirect: https://ref.rerun.io/docs/rust/stable --- diff --git a/docs/content/reference/sdk/operating-modes.md b/docs/content/reference/sdk/operating-modes.md index cf6c729067ee..470d01425333 100644 --- a/docs/content/reference/sdk/operating-modes.md +++ b/docs/content/reference/sdk/operating-modes.md @@ -27,7 +27,7 @@ This is the default behavior you get when running all of our C++/Python/Rust exa Call [`rr.spawn`](https://ref.rerun.io/docs/python/stable/common/initialization_functions/#rerun.spawn) once at the start of your program to start a Rerun Viewer in an external process and stream all the data to it via TCP. If an external Viewer was already running, `spawn` will connect to that one instead of spawning a new one. #### Rust -[`RecordingStream::spawn`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.spawn) spawns a new Rerun Viewer process using an executable available in your PATH, then streams all the data to it via TCP. If an external Viewer was already running, `spawn` will connect to that one instead of spawning a new one. +[`RecordingStream::spawn`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.spawn) spawns a new Rerun Viewer process using an executable available in your PATH, then streams all the data to it via TCP. If an external Viewer was already running, `spawn` will connect to that one instead of spawning a new one. ### Connect @@ -43,7 +43,7 @@ You will need to start a stand-alone Viewer first by typing `rerun` in your term [`rr.connect`](https://ref.rerun.io/docs/python/stable/common/initialization_functions/#rerun.connect) #### Rust -[`RecordingStream::connect`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.connect) +[`RecordingStream::connect`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.connect) ### Serve @@ -57,7 +57,7 @@ Not available yet. Use [`rr.serve`](https://ref.rerun.io/docs/python/stable/common/initialization_functions/#rerun.serve). #### Rust -[`RecordingStream::serve`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.serve) +[`RecordingStream::serve`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.serve) ### Save @@ -75,7 +75,7 @@ Use `RecordingStream::save`. Use [`rr.save`](https://ref.rerun.io/docs/python/stable/common/initialization_functions/#rerun.save). #### Rust -Use [`RecordingStream::save`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.save). +Use [`RecordingStream::save`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.save). ### Standard Input/Output @@ -96,7 +96,7 @@ Check out our [dedicated example](https://github.com/rerun-io/rerun/tree/latest/ #### Rust -Use [`RecordingStream::stdout`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.stdout). +Use [`RecordingStream::stdout`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.stdout). Check out our [dedicated example](https://github.com/rerun-io/rerun/tree/latest/examples/rust/stdio/src/main.rs). @@ -106,6 +106,6 @@ Check out our [dedicated example](https://github.com/rerun-io/rerun/tree/latest/ We provide helpers for both Python & Rust to effortlessly add and properly handle all of these flags in your programs. - For Python, checkout the [`script_helpers`](https://ref.rerun.io/docs/python/stable/common/script_helpers/) module. -- For Rust, checkout our [`clap`]() [integration](https://docs.rs/rerun/latest/rerun/clap/index.html). +- For Rust, checkout our [`clap`]() [integration](https://ref.rerun.io/docs/rust/stable/rerun/clap/index.html). Have a look at the [official examples](/examples) to see these helpers in action. diff --git a/docs/content/reference/types/archetypes/annotation_context.md b/docs/content/reference/types/archetypes/annotation_context.md index a9850dde6c0b..023a61e6c930 100644 --- a/docs/content/reference/types/archetypes/annotation_context.md +++ b/docs/content/reference/types/archetypes/annotation_context.md @@ -25,7 +25,7 @@ See also [`datatypes.ClassDescription`](https://rerun.io/docs/reference/types/da ## API reference links * 🌊 [C++ API docs for `AnnotationContext`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1AnnotationContext.html) * 🐍 [Python API docs for `AnnotationContext`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.AnnotationContext) - * 🦀 [Rust API docs for `AnnotationContext`](https://docs.rs/rerun/latest/rerun/archetypes/struct.AnnotationContext.html) + * 🦀 [Rust API docs for `AnnotationContext`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.AnnotationContext.html) ## Examples diff --git a/docs/content/reference/types/archetypes/arrows2d.md b/docs/content/reference/types/archetypes/arrows2d.md index 40564b6514bc..d350ff87681a 100644 --- a/docs/content/reference/types/archetypes/arrows2d.md +++ b/docs/content/reference/types/archetypes/arrows2d.md @@ -21,7 +21,7 @@ title: "Arrows2D" ## API reference links * 🌊 [C++ API docs for `Arrows2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Arrows2D.html) * 🐍 [Python API docs for `Arrows2D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Arrows2D) - * 🦀 [Rust API docs for `Arrows2D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Arrows2D.html) + * 🦀 [Rust API docs for `Arrows2D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Arrows2D.html) ## Example diff --git a/docs/content/reference/types/archetypes/arrows3d.md b/docs/content/reference/types/archetypes/arrows3d.md index 937223f432ba..67e693c55b76 100644 --- a/docs/content/reference/types/archetypes/arrows3d.md +++ b/docs/content/reference/types/archetypes/arrows3d.md @@ -21,7 +21,7 @@ title: "Arrows3D" ## API reference links * 🌊 [C++ API docs for `Arrows3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Arrows3D.html) * 🐍 [Python API docs for `Arrows3D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Arrows3D) - * 🦀 [Rust API docs for `Arrows3D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Arrows3D.html) + * 🦀 [Rust API docs for `Arrows3D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Arrows3D.html) ## Example diff --git a/docs/content/reference/types/archetypes/asset3d.md b/docs/content/reference/types/archetypes/asset3d.md index ed8b246601db..8dd4fe82124c 100644 --- a/docs/content/reference/types/archetypes/asset3d.md +++ b/docs/content/reference/types/archetypes/asset3d.md @@ -26,7 +26,7 @@ an instance of the mesh will be drawn for each transform. ## API reference links * 🌊 [C++ API docs for `Asset3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Asset3D.html) * 🐍 [Python API docs for `Asset3D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Asset3D) - * 🦀 [Rust API docs for `Asset3D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Asset3D.html) + * 🦀 [Rust API docs for `Asset3D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Asset3D.html) ## Example diff --git a/docs/content/reference/types/archetypes/asset_video.md b/docs/content/reference/types/archetypes/asset_video.md index b2ffd51cc9ad..a12d66864ac9 100644 --- a/docs/content/reference/types/archetypes/asset_video.md +++ b/docs/content/reference/types/archetypes/asset_video.md @@ -26,7 +26,7 @@ In order to display a video, you also need to log a [`archetypes.VideoFrameRefer ## API reference links * 🌊 [C++ API docs for `AssetVideo`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1AssetVideo.html) * 🐍 [Python API docs for `AssetVideo`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.AssetVideo) - * 🦀 [Rust API docs for `AssetVideo`](https://docs.rs/rerun/latest/rerun/archetypes/struct.AssetVideo.html) + * 🦀 [Rust API docs for `AssetVideo`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.AssetVideo.html) ## Examples diff --git a/docs/content/reference/types/archetypes/bar_chart.md b/docs/content/reference/types/archetypes/bar_chart.md index 6f2e286bd923..838be7525f03 100644 --- a/docs/content/reference/types/archetypes/bar_chart.md +++ b/docs/content/reference/types/archetypes/bar_chart.md @@ -20,7 +20,7 @@ The x values will be the indices of the array, and the bar heights will be the p ## API reference links * 🌊 [C++ API docs for `BarChart`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1BarChart.html) * 🐍 [Python API docs for `BarChart`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.BarChart) - * 🦀 [Rust API docs for `BarChart`](https://docs.rs/rerun/latest/rerun/archetypes/struct.BarChart.html) + * 🦀 [Rust API docs for `BarChart`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.BarChart.html) ## Example diff --git a/docs/content/reference/types/archetypes/boxes2d.md b/docs/content/reference/types/archetypes/boxes2d.md index c1b9c9c424e4..91f17ea320dc 100644 --- a/docs/content/reference/types/archetypes/boxes2d.md +++ b/docs/content/reference/types/archetypes/boxes2d.md @@ -21,7 +21,7 @@ title: "Boxes2D" ## API reference links * 🌊 [C++ API docs for `Boxes2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Boxes2D.html) * 🐍 [Python API docs for `Boxes2D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Boxes2D) - * 🦀 [Rust API docs for `Boxes2D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Boxes2D.html) + * 🦀 [Rust API docs for `Boxes2D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Boxes2D.html) ## Example diff --git a/docs/content/reference/types/archetypes/boxes3d.md b/docs/content/reference/types/archetypes/boxes3d.md index ef33d29fcfc2..949d76c5d9f6 100644 --- a/docs/content/reference/types/archetypes/boxes3d.md +++ b/docs/content/reference/types/archetypes/boxes3d.md @@ -25,7 +25,7 @@ If there's more instance poses than half sizes, the last half size will be repea ## API reference links * 🌊 [C++ API docs for `Boxes3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Boxes3D.html) * 🐍 [Python API docs for `Boxes3D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Boxes3D) - * 🦀 [Rust API docs for `Boxes3D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Boxes3D.html) + * 🦀 [Rust API docs for `Boxes3D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Boxes3D.html) ## Examples diff --git a/docs/content/reference/types/archetypes/capsules3d.md b/docs/content/reference/types/archetypes/capsules3d.md index 2e5bf57004b9..f807fedf80c6 100644 --- a/docs/content/reference/types/archetypes/capsules3d.md +++ b/docs/content/reference/types/archetypes/capsules3d.md @@ -26,7 +26,7 @@ instances. ## API reference links * 🌊 [C++ API docs for `Capsules3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Capsules3D.html) * 🐍 [Python API docs for `Capsules3D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Capsules3D) - * 🦀 [Rust API docs for `Capsules3D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Capsules3D.html) + * 🦀 [Rust API docs for `Capsules3D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Capsules3D.html) ## Example diff --git a/docs/content/reference/types/archetypes/clear.md b/docs/content/reference/types/archetypes/clear.md index 476fcb56470b..970f2a473f43 100644 --- a/docs/content/reference/types/archetypes/clear.md +++ b/docs/content/reference/types/archetypes/clear.md @@ -28,7 +28,7 @@ data (i.e. discontinuous lines). ## API reference links * 🌊 [C++ API docs for `Clear`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Clear.html) * 🐍 [Python API docs for `Clear`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Clear) - * 🦀 [Rust API docs for `Clear`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Clear.html) + * 🦀 [Rust API docs for `Clear`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Clear.html) ## Examples diff --git a/docs/content/reference/types/archetypes/depth_image.md b/docs/content/reference/types/archetypes/depth_image.md index 6a0d62afe6c0..968aa46d8bfd 100644 --- a/docs/content/reference/types/archetypes/depth_image.md +++ b/docs/content/reference/types/archetypes/depth_image.md @@ -21,7 +21,7 @@ Each pixel corresponds to a depth value in units specified by [`components.Depth ## API reference links * 🌊 [C++ API docs for `DepthImage`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1DepthImage.html) * 🐍 [Python API docs for `DepthImage`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.DepthImage) - * 🦀 [Rust API docs for `DepthImage`](https://docs.rs/rerun/latest/rerun/archetypes/struct.DepthImage.html) + * 🦀 [Rust API docs for `DepthImage`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.DepthImage.html) ## Examples diff --git a/docs/content/reference/types/archetypes/disconnected_space.md b/docs/content/reference/types/archetypes/disconnected_space.md index eacd122ed166..b0fd6dafe308 100644 --- a/docs/content/reference/types/archetypes/disconnected_space.md +++ b/docs/content/reference/types/archetypes/disconnected_space.md @@ -22,7 +22,7 @@ This is useful for specifying that a subgraph is independent of the rest of the ## API reference links * 🌊 [C++ API docs for `DisconnectedSpace`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1DisconnectedSpace.html) * 🐍 [Python API docs for `DisconnectedSpace`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.DisconnectedSpace) - * 🦀 [Rust API docs for `DisconnectedSpace`](https://docs.rs/rerun/latest/rerun/archetypes/struct.DisconnectedSpace.html) + * 🦀 [Rust API docs for `DisconnectedSpace`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.DisconnectedSpace.html) ## Example diff --git a/docs/content/reference/types/archetypes/ellipsoids3d.md b/docs/content/reference/types/archetypes/ellipsoids3d.md index faeaba7a7b94..3064d2c53db5 100644 --- a/docs/content/reference/types/archetypes/ellipsoids3d.md +++ b/docs/content/reference/types/archetypes/ellipsoids3d.md @@ -29,7 +29,7 @@ If there's more instance poses than half sizes, the last half size will be repea ## API reference links * 🌊 [C++ API docs for `Ellipsoids3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Ellipsoids3D.html) * 🐍 [Python API docs for `Ellipsoids3D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Ellipsoids3D) - * 🦀 [Rust API docs for `Ellipsoids3D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Ellipsoids3D.html) + * 🦀 [Rust API docs for `Ellipsoids3D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Ellipsoids3D.html) ## Example diff --git a/docs/content/reference/types/archetypes/encoded_image.md b/docs/content/reference/types/archetypes/encoded_image.md index 48b3edd7669c..155a7a5f5d52 100644 --- a/docs/content/reference/types/archetypes/encoded_image.md +++ b/docs/content/reference/types/archetypes/encoded_image.md @@ -24,7 +24,7 @@ For images that refer to video frames see [`archetypes.VideoFrameReference`](htt ## API reference links * 🌊 [C++ API docs for `EncodedImage`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1EncodedImage.html) * 🐍 [Python API docs for `EncodedImage`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.EncodedImage) - * 🦀 [Rust API docs for `EncodedImage`](https://docs.rs/rerun/latest/rerun/archetypes/struct.EncodedImage.html) + * 🦀 [Rust API docs for `EncodedImage`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.EncodedImage.html) ## Example diff --git a/docs/content/reference/types/archetypes/geo_line_strings.md b/docs/content/reference/types/archetypes/geo_line_strings.md index e6c316e5be05..71fe45a8cfd7 100644 --- a/docs/content/reference/types/archetypes/geo_line_strings.md +++ b/docs/content/reference/types/archetypes/geo_line_strings.md @@ -20,7 +20,7 @@ Also known as "line strips" or "polylines". ## API reference links * 🌊 [C++ API docs for `GeoLineStrings`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1GeoLineStrings.html) * 🐍 [Python API docs for `GeoLineStrings`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.GeoLineStrings) - * 🦀 [Rust API docs for `GeoLineStrings`](https://docs.rs/rerun/latest/rerun/archetypes/struct.GeoLineStrings.html) + * 🦀 [Rust API docs for `GeoLineStrings`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.GeoLineStrings.html) ## Example diff --git a/docs/content/reference/types/archetypes/geo_points.md b/docs/content/reference/types/archetypes/geo_points.md index 866f074b0903..c006861e6eae 100644 --- a/docs/content/reference/types/archetypes/geo_points.md +++ b/docs/content/reference/types/archetypes/geo_points.md @@ -20,7 +20,7 @@ Geospatial points with positions expressed in [EPSG:4326](https://epsg.io/4326) ## API reference links * 🌊 [C++ API docs for `GeoPoints`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1GeoPoints.html) * 🐍 [Python API docs for `GeoPoints`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.GeoPoints) - * 🦀 [Rust API docs for `GeoPoints`](https://docs.rs/rerun/latest/rerun/archetypes/struct.GeoPoints.html) + * 🦀 [Rust API docs for `GeoPoints`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.GeoPoints.html) ## Example diff --git a/docs/content/reference/types/archetypes/image.md b/docs/content/reference/types/archetypes/image.md index f278721593b9..fcdd6d487889 100644 --- a/docs/content/reference/types/archetypes/image.md +++ b/docs/content/reference/types/archetypes/image.md @@ -32,7 +32,7 @@ row-major, interleaved-pixel image format. ## API reference links * 🌊 [C++ API docs for `Image`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Image.html) * 🐍 [Python API docs for `Image`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Image) - * 🦀 [Rust API docs for `Image`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Image.html) + * 🦀 [Rust API docs for `Image`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Image.html) ## Examples diff --git a/docs/content/reference/types/archetypes/instance_poses3d.md b/docs/content/reference/types/archetypes/instance_poses3d.md index 99ceac0f1243..7d970c26a84b 100644 --- a/docs/content/reference/types/archetypes/instance_poses3d.md +++ b/docs/content/reference/types/archetypes/instance_poses3d.md @@ -30,7 +30,7 @@ will draw an object for every pose, a behavior also known as "instancing". ## API reference links * 🌊 [C++ API docs for `InstancePoses3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1InstancePoses3D.html) * 🐍 [Python API docs for `InstancePoses3D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.InstancePoses3D) - * 🦀 [Rust API docs for `InstancePoses3D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.InstancePoses3D.html) + * 🦀 [Rust API docs for `InstancePoses3D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.InstancePoses3D.html) ## Examples diff --git a/docs/content/reference/types/archetypes/line_strips2d.md b/docs/content/reference/types/archetypes/line_strips2d.md index dde4074a399d..c44849dd3b44 100644 --- a/docs/content/reference/types/archetypes/line_strips2d.md +++ b/docs/content/reference/types/archetypes/line_strips2d.md @@ -21,7 +21,7 @@ title: "LineStrips2D" ## API reference links * 🌊 [C++ API docs for `LineStrips2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1LineStrips2D.html) * 🐍 [Python API docs for `LineStrips2D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.LineStrips2D) - * 🦀 [Rust API docs for `LineStrips2D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.LineStrips2D.html) + * 🦀 [Rust API docs for `LineStrips2D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.LineStrips2D.html) ## Examples diff --git a/docs/content/reference/types/archetypes/line_strips3d.md b/docs/content/reference/types/archetypes/line_strips3d.md index ab9c01704820..6ac56e362f82 100644 --- a/docs/content/reference/types/archetypes/line_strips3d.md +++ b/docs/content/reference/types/archetypes/line_strips3d.md @@ -21,7 +21,7 @@ title: "LineStrips3D" ## API reference links * 🌊 [C++ API docs for `LineStrips3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1LineStrips3D.html) * 🐍 [Python API docs for `LineStrips3D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.LineStrips3D) - * 🦀 [Rust API docs for `LineStrips3D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.LineStrips3D.html) + * 🦀 [Rust API docs for `LineStrips3D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.LineStrips3D.html) ## Examples diff --git a/docs/content/reference/types/archetypes/mesh3d.md b/docs/content/reference/types/archetypes/mesh3d.md index 3546920a0238..e6caa20f4a60 100644 --- a/docs/content/reference/types/archetypes/mesh3d.md +++ b/docs/content/reference/types/archetypes/mesh3d.md @@ -26,7 +26,7 @@ an instance of the mesh will be drawn for each transform. ## API reference links * 🌊 [C++ API docs for `Mesh3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Mesh3D.html) * 🐍 [Python API docs for `Mesh3D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Mesh3D) - * 🦀 [Rust API docs for `Mesh3D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Mesh3D.html) + * 🦀 [Rust API docs for `Mesh3D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Mesh3D.html) ## Examples diff --git a/docs/content/reference/types/archetypes/pinhole.md b/docs/content/reference/types/archetypes/pinhole.md index 06a456ba5c46..aa5702863e1a 100644 --- a/docs/content/reference/types/archetypes/pinhole.md +++ b/docs/content/reference/types/archetypes/pinhole.md @@ -21,7 +21,7 @@ Camera perspective projection (a.k.a. intrinsics). ## API reference links * 🌊 [C++ API docs for `Pinhole`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Pinhole.html) * 🐍 [Python API docs for `Pinhole`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Pinhole) - * 🦀 [Rust API docs for `Pinhole`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Pinhole.html) + * 🦀 [Rust API docs for `Pinhole`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Pinhole.html) ## Examples diff --git a/docs/content/reference/types/archetypes/points2d.md b/docs/content/reference/types/archetypes/points2d.md index 69395fd5fa0b..81a977ba65c3 100644 --- a/docs/content/reference/types/archetypes/points2d.md +++ b/docs/content/reference/types/archetypes/points2d.md @@ -21,7 +21,7 @@ A 2D point cloud with positions and optional colors, radii, labels, etc. ## API reference links * 🌊 [C++ API docs for `Points2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Points2D.html) * 🐍 [Python API docs for `Points2D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Points2D) - * 🦀 [Rust API docs for `Points2D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Points2D.html) + * 🦀 [Rust API docs for `Points2D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Points2D.html) ## Examples diff --git a/docs/content/reference/types/archetypes/points3d.md b/docs/content/reference/types/archetypes/points3d.md index 6b83466c7381..f367a24d355f 100644 --- a/docs/content/reference/types/archetypes/points3d.md +++ b/docs/content/reference/types/archetypes/points3d.md @@ -21,7 +21,7 @@ A 3D point cloud with positions and optional colors, radii, labels, etc. ## API reference links * 🌊 [C++ API docs for `Points3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Points3D.html) * 🐍 [Python API docs for `Points3D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Points3D) - * 🦀 [Rust API docs for `Points3D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Points3D.html) + * 🦀 [Rust API docs for `Points3D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Points3D.html) ## Examples diff --git a/docs/content/reference/types/archetypes/scalar.md b/docs/content/reference/types/archetypes/scalar.md index b75e7960f4a0..ec4a528d3dde 100644 --- a/docs/content/reference/types/archetypes/scalar.md +++ b/docs/content/reference/types/archetypes/scalar.md @@ -24,7 +24,7 @@ the plot-specific archetypes through the blueprint. ## API reference links * 🌊 [C++ API docs for `Scalar`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Scalar.html) * 🐍 [Python API docs for `Scalar`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Scalar) - * 🦀 [Rust API docs for `Scalar`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Scalar.html) + * 🦀 [Rust API docs for `Scalar`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Scalar.html) ## Examples diff --git a/docs/content/reference/types/archetypes/segmentation_image.md b/docs/content/reference/types/archetypes/segmentation_image.md index d6fd1a5c1543..bd607a7a135d 100644 --- a/docs/content/reference/types/archetypes/segmentation_image.md +++ b/docs/content/reference/types/archetypes/segmentation_image.md @@ -26,7 +26,7 @@ See also [`archetypes.AnnotationContext`](https://rerun.io/docs/reference/types/ ## API reference links * 🌊 [C++ API docs for `SegmentationImage`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1SegmentationImage.html) * 🐍 [Python API docs for `SegmentationImage`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.SegmentationImage) - * 🦀 [Rust API docs for `SegmentationImage`](https://docs.rs/rerun/latest/rerun/archetypes/struct.SegmentationImage.html) + * 🦀 [Rust API docs for `SegmentationImage`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.SegmentationImage.html) ## Example diff --git a/docs/content/reference/types/archetypes/series_line.md b/docs/content/reference/types/archetypes/series_line.md index a35379f1b8e9..a87f6374f5f0 100644 --- a/docs/content/reference/types/archetypes/series_line.md +++ b/docs/content/reference/types/archetypes/series_line.md @@ -20,7 +20,7 @@ when possible. The underlying data needs to be logged to the same entity-path us ## API reference links * 🌊 [C++ API docs for `SeriesLine`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1SeriesLine.html) * 🐍 [Python API docs for `SeriesLine`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.SeriesLine) - * 🦀 [Rust API docs for `SeriesLine`](https://docs.rs/rerun/latest/rerun/archetypes/struct.SeriesLine.html) + * 🦀 [Rust API docs for `SeriesLine`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.SeriesLine.html) ## Example diff --git a/docs/content/reference/types/archetypes/series_point.md b/docs/content/reference/types/archetypes/series_point.md index c2163b8e2638..7b322940406b 100644 --- a/docs/content/reference/types/archetypes/series_point.md +++ b/docs/content/reference/types/archetypes/series_point.md @@ -20,7 +20,7 @@ when possible. The underlying data needs to be logged to the same entity-path us ## API reference links * 🌊 [C++ API docs for `SeriesPoint`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1SeriesPoint.html) * 🐍 [Python API docs for `SeriesPoint`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.SeriesPoint) - * 🦀 [Rust API docs for `SeriesPoint`](https://docs.rs/rerun/latest/rerun/archetypes/struct.SeriesPoint.html) + * 🦀 [Rust API docs for `SeriesPoint`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.SeriesPoint.html) ## Example diff --git a/docs/content/reference/types/archetypes/tensor.md b/docs/content/reference/types/archetypes/tensor.md index 7e25161887e2..5ee9aa69c255 100644 --- a/docs/content/reference/types/archetypes/tensor.md +++ b/docs/content/reference/types/archetypes/tensor.md @@ -19,7 +19,7 @@ An N-dimensional array of numbers. ## API reference links * 🌊 [C++ API docs for `Tensor`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Tensor.html) * 🐍 [Python API docs for `Tensor`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Tensor) - * 🦀 [Rust API docs for `Tensor`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Tensor.html) + * 🦀 [Rust API docs for `Tensor`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Tensor.html) ## Example diff --git a/docs/content/reference/types/archetypes/text_document.md b/docs/content/reference/types/archetypes/text_document.md index e7b481d14b6f..3dbc01742c2b 100644 --- a/docs/content/reference/types/archetypes/text_document.md +++ b/docs/content/reference/types/archetypes/text_document.md @@ -20,7 +20,7 @@ Supports raw text and markdown. ## API reference links * 🌊 [C++ API docs for `TextDocument`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1TextDocument.html) * 🐍 [Python API docs for `TextDocument`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.TextDocument) - * 🦀 [Rust API docs for `TextDocument`](https://docs.rs/rerun/latest/rerun/archetypes/struct.TextDocument.html) + * 🦀 [Rust API docs for `TextDocument`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.TextDocument.html) ## Example diff --git a/docs/content/reference/types/archetypes/text_log.md b/docs/content/reference/types/archetypes/text_log.md index 96ce9f014dca..5dd35b820968 100644 --- a/docs/content/reference/types/archetypes/text_log.md +++ b/docs/content/reference/types/archetypes/text_log.md @@ -20,7 +20,7 @@ A log entry in a text log, comprised of a text body and its log level. ## API reference links * 🌊 [C++ API docs for `TextLog`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1TextLog.html) * 🐍 [Python API docs for `TextLog`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.TextLog) - * 🦀 [Rust API docs for `TextLog`](https://docs.rs/rerun/latest/rerun/archetypes/struct.TextLog.html) + * 🦀 [Rust API docs for `TextLog`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.TextLog.html) ## Example diff --git a/docs/content/reference/types/archetypes/transform3d.md b/docs/content/reference/types/archetypes/transform3d.md index a1214398179d..7e87ebf49407 100644 --- a/docs/content/reference/types/archetypes/transform3d.md +++ b/docs/content/reference/types/archetypes/transform3d.md @@ -28,7 +28,7 @@ For transforms that affect only a single entity and do not propagate along the e ## API reference links * 🌊 [C++ API docs for `Transform3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Transform3D.html) * 🐍 [Python API docs for `Transform3D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Transform3D) - * 🦀 [Rust API docs for `Transform3D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Transform3D.html) + * 🦀 [Rust API docs for `Transform3D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Transform3D.html) ## Examples diff --git a/docs/content/reference/types/archetypes/video_frame_reference.md b/docs/content/reference/types/archetypes/video_frame_reference.md index 310c18af65e2..c7813fa75b77 100644 --- a/docs/content/reference/types/archetypes/video_frame_reference.md +++ b/docs/content/reference/types/archetypes/video_frame_reference.md @@ -24,7 +24,7 @@ See for details of what is and isn't sup ## API reference links * 🌊 [C++ API docs for `VideoFrameReference`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1VideoFrameReference.html) * 🐍 [Python API docs for `VideoFrameReference`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.VideoFrameReference) - * 🦀 [Rust API docs for `VideoFrameReference`](https://docs.rs/rerun/latest/rerun/archetypes/struct.VideoFrameReference.html) + * 🦀 [Rust API docs for `VideoFrameReference`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.VideoFrameReference.html) ## Examples diff --git a/docs/content/reference/types/archetypes/view_coordinates.md b/docs/content/reference/types/archetypes/view_coordinates.md index 544fd552f529..b378bf17bc7d 100644 --- a/docs/content/reference/types/archetypes/view_coordinates.md +++ b/docs/content/reference/types/archetypes/view_coordinates.md @@ -27,7 +27,7 @@ Make sure that this archetype is logged at or above the origin entity path of yo ## API reference links * 🌊 [C++ API docs for `ViewCoordinates`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1ViewCoordinates.html) * 🐍 [Python API docs for `ViewCoordinates`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.ViewCoordinates) - * 🦀 [Rust API docs for `ViewCoordinates`](https://docs.rs/rerun/latest/rerun/archetypes/struct.ViewCoordinates.html) + * 🦀 [Rust API docs for `ViewCoordinates`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.ViewCoordinates.html) ## Example diff --git a/docs/content/reference/types/components/aggregation_policy.md b/docs/content/reference/types/components/aggregation_policy.md index 108c3aee615e..25289d088dc5 100644 --- a/docs/content/reference/types/components/aggregation_policy.md +++ b/docs/content/reference/types/components/aggregation_policy.md @@ -39,7 +39,7 @@ uint8 ## API reference links * 🌊 [C++ API docs for `AggregationPolicy`](https://ref.rerun.io/docs/cpp/stable/namespacererun_1_1components.html) * 🐍 [Python API docs for `AggregationPolicy`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.AggregationPolicy) - * 🦀 [Rust API docs for `AggregationPolicy`](https://docs.rs/rerun/latest/rerun/components/enum.AggregationPolicy.html) + * 🦀 [Rust API docs for `AggregationPolicy`](https://ref.rerun.io/docs/rust/stable/rerun/components/enum.AggregationPolicy.html) ## Used by diff --git a/docs/content/reference/types/components/albedo_factor.md b/docs/content/reference/types/components/albedo_factor.md index 620ebf98f388..b33c65114124 100644 --- a/docs/content/reference/types/components/albedo_factor.md +++ b/docs/content/reference/types/components/albedo_factor.md @@ -17,7 +17,7 @@ uint32 ## API reference links * 🌊 [C++ API docs for `AlbedoFactor`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1AlbedoFactor.html) * 🐍 [Python API docs for `AlbedoFactor`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.AlbedoFactor) - * 🦀 [Rust API docs for `AlbedoFactor`](https://docs.rs/rerun/latest/rerun/components/struct.AlbedoFactor.html) + * 🦀 [Rust API docs for `AlbedoFactor`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.AlbedoFactor.html) ## Used by diff --git a/docs/content/reference/types/components/annotation_context.md b/docs/content/reference/types/components/annotation_context.md index eb4402d89374..5edfad354652 100644 --- a/docs/content/reference/types/components/annotation_context.md +++ b/docs/content/reference/types/components/annotation_context.md @@ -38,7 +38,7 @@ List ## API reference links * 🌊 [C++ API docs for `Blob`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Blob.html) * 🐍 [Python API docs for `Blob`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Blob) - * 🦀 [Rust API docs for `Blob`](https://docs.rs/rerun/latest/rerun/components/struct.Blob.html) + * 🦀 [Rust API docs for `Blob`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Blob.html) ## Used by diff --git a/docs/content/reference/types/components/class_id.md b/docs/content/reference/types/components/class_id.md index a808c474cdb2..fc4e8e0ab290 100644 --- a/docs/content/reference/types/components/class_id.md +++ b/docs/content/reference/types/components/class_id.md @@ -17,7 +17,7 @@ uint16 ## API reference links * 🌊 [C++ API docs for `ClassId`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1ClassId.html) * 🐍 [Python API docs for `ClassId`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.ClassId) - * 🦀 [Rust API docs for `ClassId`](https://docs.rs/rerun/latest/rerun/components/struct.ClassId.html) + * 🦀 [Rust API docs for `ClassId`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.ClassId.html) ## Used by diff --git a/docs/content/reference/types/components/clear_is_recursive.md b/docs/content/reference/types/components/clear_is_recursive.md index ef8b8e2d8117..b649b15a8fde 100644 --- a/docs/content/reference/types/components/clear_is_recursive.md +++ b/docs/content/reference/types/components/clear_is_recursive.md @@ -17,7 +17,7 @@ boolean ## API reference links * 🌊 [C++ API docs for `ClearIsRecursive`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1ClearIsRecursive.html) * 🐍 [Python API docs for `ClearIsRecursive`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.ClearIsRecursive) - * 🦀 [Rust API docs for `ClearIsRecursive`](https://docs.rs/rerun/latest/rerun/components/struct.ClearIsRecursive.html) + * 🦀 [Rust API docs for `ClearIsRecursive`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.ClearIsRecursive.html) ## Used by diff --git a/docs/content/reference/types/components/color.md b/docs/content/reference/types/components/color.md index 32fcd7eb4c97..465fbcb4b752 100644 --- a/docs/content/reference/types/components/color.md +++ b/docs/content/reference/types/components/color.md @@ -20,7 +20,7 @@ uint32 ## API reference links * 🌊 [C++ API docs for `Color`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Color.html) * 🐍 [Python API docs for `Color`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Color) - * 🦀 [Rust API docs for `Color`](https://docs.rs/rerun/latest/rerun/components/struct.Color.html) + * 🦀 [Rust API docs for `Color`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Color.html) ## Used by diff --git a/docs/content/reference/types/components/colormap.md b/docs/content/reference/types/components/colormap.md index 70de09de6056..31c6e8558057 100644 --- a/docs/content/reference/types/components/colormap.md +++ b/docs/content/reference/types/components/colormap.md @@ -63,7 +63,7 @@ uint8 ## API reference links * 🌊 [C++ API docs for `Colormap`](https://ref.rerun.io/docs/cpp/stable/namespacererun_1_1components.html) * 🐍 [Python API docs for `Colormap`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Colormap) - * 🦀 [Rust API docs for `Colormap`](https://docs.rs/rerun/latest/rerun/components/enum.Colormap.html) + * 🦀 [Rust API docs for `Colormap`](https://ref.rerun.io/docs/rust/stable/rerun/components/enum.Colormap.html) ## Used by diff --git a/docs/content/reference/types/components/depth_meter.md b/docs/content/reference/types/components/depth_meter.md index 1d538ae6a479..cbf311a5017e 100644 --- a/docs/content/reference/types/components/depth_meter.md +++ b/docs/content/reference/types/components/depth_meter.md @@ -24,7 +24,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `DepthMeter`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1DepthMeter.html) * 🐍 [Python API docs for `DepthMeter`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.DepthMeter) - * 🦀 [Rust API docs for `DepthMeter`](https://docs.rs/rerun/latest/rerun/components/struct.DepthMeter.html) + * 🦀 [Rust API docs for `DepthMeter`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.DepthMeter.html) ## Used by diff --git a/docs/content/reference/types/components/disconnected_space.md b/docs/content/reference/types/components/disconnected_space.md index 4f7f472db1ce..ca5a795e536b 100644 --- a/docs/content/reference/types/components/disconnected_space.md +++ b/docs/content/reference/types/components/disconnected_space.md @@ -22,7 +22,7 @@ boolean ## API reference links * 🌊 [C++ API docs for `DisconnectedSpace`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1DisconnectedSpace.html) * 🐍 [Python API docs for `DisconnectedSpace`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.DisconnectedSpace) - * 🦀 [Rust API docs for `DisconnectedSpace`](https://docs.rs/rerun/latest/rerun/components/struct.DisconnectedSpace.html) + * 🦀 [Rust API docs for `DisconnectedSpace`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.DisconnectedSpace.html) ## Used by diff --git a/docs/content/reference/types/components/draw_order.md b/docs/content/reference/types/components/draw_order.md index deb5c0213ce7..5795701856fe 100644 --- a/docs/content/reference/types/components/draw_order.md +++ b/docs/content/reference/types/components/draw_order.md @@ -22,7 +22,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `DrawOrder`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1DrawOrder.html) * 🐍 [Python API docs for `DrawOrder`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.DrawOrder) - * 🦀 [Rust API docs for `DrawOrder`](https://docs.rs/rerun/latest/rerun/components/struct.DrawOrder.html) + * 🦀 [Rust API docs for `DrawOrder`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.DrawOrder.html) ## Used by diff --git a/docs/content/reference/types/components/entity_path.md b/docs/content/reference/types/components/entity_path.md index fd781a032d82..23c1a9eac1a8 100644 --- a/docs/content/reference/types/components/entity_path.md +++ b/docs/content/reference/types/components/entity_path.md @@ -17,7 +17,7 @@ utf8 ## API reference links * 🌊 [C++ API docs for `EntityPath`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1EntityPath.html) * 🐍 [Python API docs for `EntityPath`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.EntityPath) - * 🦀 [Rust API docs for `EntityPath`](https://docs.rs/rerun/latest/rerun/components/struct.EntityPath.html) + * 🦀 [Rust API docs for `EntityPath`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.EntityPath.html) ## Used by diff --git a/docs/content/reference/types/components/fill_mode.md b/docs/content/reference/types/components/fill_mode.md index f95ed3ac01a6..6782e4d7b968 100644 --- a/docs/content/reference/types/components/fill_mode.md +++ b/docs/content/reference/types/components/fill_mode.md @@ -36,7 +36,7 @@ uint8 ## API reference links * 🌊 [C++ API docs for `FillMode`](https://ref.rerun.io/docs/cpp/stable/namespacererun_1_1components.html) * 🐍 [Python API docs for `FillMode`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.FillMode) - * 🦀 [Rust API docs for `FillMode`](https://docs.rs/rerun/latest/rerun/components/enum.FillMode.html) + * 🦀 [Rust API docs for `FillMode`](https://ref.rerun.io/docs/rust/stable/rerun/components/enum.FillMode.html) ## Used by diff --git a/docs/content/reference/types/components/fill_ratio.md b/docs/content/reference/types/components/fill_ratio.md index e9a14ea74a22..344b08d00f82 100644 --- a/docs/content/reference/types/components/fill_ratio.md +++ b/docs/content/reference/types/components/fill_ratio.md @@ -22,7 +22,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `FillRatio`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1FillRatio.html) * 🐍 [Python API docs for `FillRatio`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.FillRatio) - * 🦀 [Rust API docs for `FillRatio`](https://docs.rs/rerun/latest/rerun/components/struct.FillRatio.html) + * 🦀 [Rust API docs for `FillRatio`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.FillRatio.html) ## Used by diff --git a/docs/content/reference/types/components/gamma_correction.md b/docs/content/reference/types/components/gamma_correction.md index 18465ef0e832..4d1c3a63f195 100644 --- a/docs/content/reference/types/components/gamma_correction.md +++ b/docs/content/reference/types/components/gamma_correction.md @@ -23,6 +23,6 @@ float32 ## API reference links * 🌊 [C++ API docs for `GammaCorrection`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1GammaCorrection.html) * 🐍 [Python API docs for `GammaCorrection`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.GammaCorrection) - * 🦀 [Rust API docs for `GammaCorrection`](https://docs.rs/rerun/latest/rerun/components/struct.GammaCorrection.html) + * 🦀 [Rust API docs for `GammaCorrection`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.GammaCorrection.html) diff --git a/docs/content/reference/types/components/geo_line_string.md b/docs/content/reference/types/components/geo_line_string.md index b56e6aa435c6..683149faa231 100644 --- a/docs/content/reference/types/components/geo_line_string.md +++ b/docs/content/reference/types/components/geo_line_string.md @@ -14,7 +14,7 @@ List> ## API reference links * 🌊 [C++ API docs for `GeoLineString`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1GeoLineString.html) * 🐍 [Python API docs for `GeoLineString`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.GeoLineString) - * 🦀 [Rust API docs for `GeoLineString`](https://docs.rs/rerun/latest/rerun/components/struct.GeoLineString.html) + * 🦀 [Rust API docs for `GeoLineString`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.GeoLineString.html) ## Used by diff --git a/docs/content/reference/types/components/half_size2d.md b/docs/content/reference/types/components/half_size2d.md index d62d8ced89ee..ebcfa20828b8 100644 --- a/docs/content/reference/types/components/half_size2d.md +++ b/docs/content/reference/types/components/half_size2d.md @@ -22,7 +22,7 @@ FixedSizeList<2, float32> ## API reference links * 🌊 [C++ API docs for `HalfSize2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1HalfSize2D.html) * 🐍 [Python API docs for `HalfSize2D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.HalfSize2D) - * 🦀 [Rust API docs for `HalfSize2D`](https://docs.rs/rerun/latest/rerun/components/struct.HalfSize2D.html) + * 🦀 [Rust API docs for `HalfSize2D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.HalfSize2D.html) ## Used by diff --git a/docs/content/reference/types/components/half_size3d.md b/docs/content/reference/types/components/half_size3d.md index 4d155a50f776..2bdb5e67c663 100644 --- a/docs/content/reference/types/components/half_size3d.md +++ b/docs/content/reference/types/components/half_size3d.md @@ -22,7 +22,7 @@ FixedSizeList<3, float32> ## API reference links * 🌊 [C++ API docs for `HalfSize3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1HalfSize3D.html) * 🐍 [Python API docs for `HalfSize3D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.HalfSize3D) - * 🦀 [Rust API docs for `HalfSize3D`](https://docs.rs/rerun/latest/rerun/components/struct.HalfSize3D.html) + * 🦀 [Rust API docs for `HalfSize3D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.HalfSize3D.html) ## Used by diff --git a/docs/content/reference/types/components/image_buffer.md b/docs/content/reference/types/components/image_buffer.md index b8c63d1ea96c..73a4232eab0e 100644 --- a/docs/content/reference/types/components/image_buffer.md +++ b/docs/content/reference/types/components/image_buffer.md @@ -19,7 +19,7 @@ List ## API reference links * 🌊 [C++ API docs for `ImageBuffer`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1ImageBuffer.html) * 🐍 [Python API docs for `ImageBuffer`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.ImageBuffer) - * 🦀 [Rust API docs for `ImageBuffer`](https://docs.rs/rerun/latest/rerun/components/struct.ImageBuffer.html) + * 🦀 [Rust API docs for `ImageBuffer`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.ImageBuffer.html) ## Used by diff --git a/docs/content/reference/types/components/image_format.md b/docs/content/reference/types/components/image_format.md index da3a4c0cb844..496c115dae79 100644 --- a/docs/content/reference/types/components/image_format.md +++ b/docs/content/reference/types/components/image_format.md @@ -23,7 +23,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `ImageFormat`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1ImageFormat.html) * 🐍 [Python API docs for `ImageFormat`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.ImageFormat) - * 🦀 [Rust API docs for `ImageFormat`](https://docs.rs/rerun/latest/rerun/components/struct.ImageFormat.html) + * 🦀 [Rust API docs for `ImageFormat`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.ImageFormat.html) ## Used by diff --git a/docs/content/reference/types/components/image_plane_distance.md b/docs/content/reference/types/components/image_plane_distance.md index 913f703a6758..92b22f030769 100644 --- a/docs/content/reference/types/components/image_plane_distance.md +++ b/docs/content/reference/types/components/image_plane_distance.md @@ -19,7 +19,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `ImagePlaneDistance`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1ImagePlaneDistance.html) * 🐍 [Python API docs for `ImagePlaneDistance`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.ImagePlaneDistance) - * 🦀 [Rust API docs for `ImagePlaneDistance`](https://docs.rs/rerun/latest/rerun/components/struct.ImagePlaneDistance.html) + * 🦀 [Rust API docs for `ImagePlaneDistance`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.ImagePlaneDistance.html) ## Used by diff --git a/docs/content/reference/types/components/keypoint_id.md b/docs/content/reference/types/components/keypoint_id.md index 8d405c519827..e26cd7431f50 100644 --- a/docs/content/reference/types/components/keypoint_id.md +++ b/docs/content/reference/types/components/keypoint_id.md @@ -17,7 +17,7 @@ uint16 ## API reference links * 🌊 [C++ API docs for `KeypointId`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1KeypointId.html) * 🐍 [Python API docs for `KeypointId`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.KeypointId) - * 🦀 [Rust API docs for `KeypointId`](https://docs.rs/rerun/latest/rerun/components/struct.KeypointId.html) + * 🦀 [Rust API docs for `KeypointId`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.KeypointId.html) ## Used by diff --git a/docs/content/reference/types/components/lat_lon.md b/docs/content/reference/types/components/lat_lon.md index c99770a309fd..e1b1976f58d8 100644 --- a/docs/content/reference/types/components/lat_lon.md +++ b/docs/content/reference/types/components/lat_lon.md @@ -17,7 +17,7 @@ FixedSizeList<2, float64> ## API reference links * 🌊 [C++ API docs for `LatLon`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1LatLon.html) * 🐍 [Python API docs for `LatLon`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.LatLon) - * 🦀 [Rust API docs for `LatLon`](https://docs.rs/rerun/latest/rerun/components/struct.LatLon.html) + * 🦀 [Rust API docs for `LatLon`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.LatLon.html) ## Used by diff --git a/docs/content/reference/types/components/length.md b/docs/content/reference/types/components/length.md index 3ca08ab2647f..c1f022d9e79b 100644 --- a/docs/content/reference/types/components/length.md +++ b/docs/content/reference/types/components/length.md @@ -20,7 +20,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `Length`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Length.html) * 🐍 [Python API docs for `Length`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Length) - * 🦀 [Rust API docs for `Length`](https://docs.rs/rerun/latest/rerun/components/struct.Length.html) + * 🦀 [Rust API docs for `Length`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Length.html) ## Used by diff --git a/docs/content/reference/types/components/line_strip2d.md b/docs/content/reference/types/components/line_strip2d.md index 4cd8b225161e..37a564b14a63 100644 --- a/docs/content/reference/types/components/line_strip2d.md +++ b/docs/content/reference/types/components/line_strip2d.md @@ -25,7 +25,7 @@ List> ## API reference links * 🌊 [C++ API docs for `LineStrip2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1LineStrip2D.html) * 🐍 [Python API docs for `LineStrip2D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.LineStrip2D) - * 🦀 [Rust API docs for `LineStrip2D`](https://docs.rs/rerun/latest/rerun/components/struct.LineStrip2D.html) + * 🦀 [Rust API docs for `LineStrip2D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.LineStrip2D.html) ## Used by diff --git a/docs/content/reference/types/components/line_strip3d.md b/docs/content/reference/types/components/line_strip3d.md index 8bc3cc421fab..732fc6e6f5f6 100644 --- a/docs/content/reference/types/components/line_strip3d.md +++ b/docs/content/reference/types/components/line_strip3d.md @@ -25,7 +25,7 @@ List> ## API reference links * 🌊 [C++ API docs for `LineStrip3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1LineStrip3D.html) * 🐍 [Python API docs for `LineStrip3D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.LineStrip3D) - * 🦀 [Rust API docs for `LineStrip3D`](https://docs.rs/rerun/latest/rerun/components/struct.LineStrip3D.html) + * 🦀 [Rust API docs for `LineStrip3D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.LineStrip3D.html) ## Used by diff --git a/docs/content/reference/types/components/magnification_filter.md b/docs/content/reference/types/components/magnification_filter.md index 425505e8b793..4909e723e965 100644 --- a/docs/content/reference/types/components/magnification_filter.md +++ b/docs/content/reference/types/components/magnification_filter.md @@ -26,6 +26,6 @@ uint8 ## API reference links * 🌊 [C++ API docs for `MagnificationFilter`](https://ref.rerun.io/docs/cpp/stable/namespacererun_1_1components.html) * 🐍 [Python API docs for `MagnificationFilter`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.MagnificationFilter) - * 🦀 [Rust API docs for `MagnificationFilter`](https://docs.rs/rerun/latest/rerun/components/enum.MagnificationFilter.html) + * 🦀 [Rust API docs for `MagnificationFilter`](https://ref.rerun.io/docs/rust/stable/rerun/components/enum.MagnificationFilter.html) diff --git a/docs/content/reference/types/components/marker_shape.md b/docs/content/reference/types/components/marker_shape.md index e0fe1c1cdd83..2cf54112dd68 100644 --- a/docs/content/reference/types/components/marker_shape.md +++ b/docs/content/reference/types/components/marker_shape.md @@ -45,7 +45,7 @@ uint8 ## API reference links * 🌊 [C++ API docs for `MarkerShape`](https://ref.rerun.io/docs/cpp/stable/namespacererun_1_1components.html) * 🐍 [Python API docs for `MarkerShape`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.MarkerShape) - * 🦀 [Rust API docs for `MarkerShape`](https://docs.rs/rerun/latest/rerun/components/enum.MarkerShape.html) + * 🦀 [Rust API docs for `MarkerShape`](https://ref.rerun.io/docs/rust/stable/rerun/components/enum.MarkerShape.html) ## Used by diff --git a/docs/content/reference/types/components/marker_size.md b/docs/content/reference/types/components/marker_size.md index 48d47b0371cc..e13f3d115815 100644 --- a/docs/content/reference/types/components/marker_size.md +++ b/docs/content/reference/types/components/marker_size.md @@ -17,7 +17,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `MarkerSize`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1MarkerSize.html) * 🐍 [Python API docs for `MarkerSize`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.MarkerSize) - * 🦀 [Rust API docs for `MarkerSize`](https://docs.rs/rerun/latest/rerun/components/struct.MarkerSize.html) + * 🦀 [Rust API docs for `MarkerSize`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.MarkerSize.html) ## Used by diff --git a/docs/content/reference/types/components/media_type.md b/docs/content/reference/types/components/media_type.md index ffe3f277bc39..66f3819a9175 100644 --- a/docs/content/reference/types/components/media_type.md +++ b/docs/content/reference/types/components/media_type.md @@ -20,7 +20,7 @@ utf8 ## API reference links * 🌊 [C++ API docs for `MediaType`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1MediaType.html) * 🐍 [Python API docs for `MediaType`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.MediaType) - * 🦀 [Rust API docs for `MediaType`](https://docs.rs/rerun/latest/rerun/components/struct.MediaType.html) + * 🦀 [Rust API docs for `MediaType`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.MediaType.html) ## Used by diff --git a/docs/content/reference/types/components/name.md b/docs/content/reference/types/components/name.md index 85bb4afdd28d..1330f3a87cd8 100644 --- a/docs/content/reference/types/components/name.md +++ b/docs/content/reference/types/components/name.md @@ -17,7 +17,7 @@ utf8 ## API reference links * 🌊 [C++ API docs for `Name`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Name.html) * 🐍 [Python API docs for `Name`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Name) - * 🦀 [Rust API docs for `Name`](https://docs.rs/rerun/latest/rerun/components/struct.Name.html) + * 🦀 [Rust API docs for `Name`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Name.html) ## Used by diff --git a/docs/content/reference/types/components/opacity.md b/docs/content/reference/types/components/opacity.md index 558c8b1951fe..4e0a48b469c9 100644 --- a/docs/content/reference/types/components/opacity.md +++ b/docs/content/reference/types/components/opacity.md @@ -20,7 +20,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `Opacity`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Opacity.html) * 🐍 [Python API docs for `Opacity`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Opacity) - * 🦀 [Rust API docs for `Opacity`](https://docs.rs/rerun/latest/rerun/components/struct.Opacity.html) + * 🦀 [Rust API docs for `Opacity`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Opacity.html) ## Used by diff --git a/docs/content/reference/types/components/pinhole_projection.md b/docs/content/reference/types/components/pinhole_projection.md index 4f8d53d6d81d..5ba04be7be6c 100644 --- a/docs/content/reference/types/components/pinhole_projection.md +++ b/docs/content/reference/types/components/pinhole_projection.md @@ -27,7 +27,7 @@ FixedSizeList<9, float32> ## API reference links * 🌊 [C++ API docs for `PinholeProjection`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1PinholeProjection.html) * 🐍 [Python API docs for `PinholeProjection`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.PinholeProjection) - * 🦀 [Rust API docs for `PinholeProjection`](https://docs.rs/rerun/latest/rerun/components/struct.PinholeProjection.html) + * 🦀 [Rust API docs for `PinholeProjection`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.PinholeProjection.html) ## Used by diff --git a/docs/content/reference/types/components/pose_rotation_axis_angle.md b/docs/content/reference/types/components/pose_rotation_axis_angle.md index 48d12359136c..52cb53876287 100644 --- a/docs/content/reference/types/components/pose_rotation_axis_angle.md +++ b/docs/content/reference/types/components/pose_rotation_axis_angle.md @@ -20,7 +20,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `PoseRotationAxisAngle`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1PoseRotationAxisAngle.html) * 🐍 [Python API docs for `PoseRotationAxisAngle`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.PoseRotationAxisAngle) - * 🦀 [Rust API docs for `PoseRotationAxisAngle`](https://docs.rs/rerun/latest/rerun/components/struct.PoseRotationAxisAngle.html) + * 🦀 [Rust API docs for `PoseRotationAxisAngle`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.PoseRotationAxisAngle.html) ## Used by diff --git a/docs/content/reference/types/components/pose_rotation_quat.md b/docs/content/reference/types/components/pose_rotation_quat.md index 7234e9163f4b..0caab2494362 100644 --- a/docs/content/reference/types/components/pose_rotation_quat.md +++ b/docs/content/reference/types/components/pose_rotation_quat.md @@ -20,7 +20,7 @@ FixedSizeList<4, float32> ## API reference links * 🌊 [C++ API docs for `PoseRotationQuat`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1PoseRotationQuat.html) * 🐍 [Python API docs for `PoseRotationQuat`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.PoseRotationQuat) - * 🦀 [Rust API docs for `PoseRotationQuat`](https://docs.rs/rerun/latest/rerun/components/struct.PoseRotationQuat.html) + * 🦀 [Rust API docs for `PoseRotationQuat`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.PoseRotationQuat.html) ## Used by diff --git a/docs/content/reference/types/components/pose_scale3d.md b/docs/content/reference/types/components/pose_scale3d.md index 353c2cac368f..e5a23e911965 100644 --- a/docs/content/reference/types/components/pose_scale3d.md +++ b/docs/content/reference/types/components/pose_scale3d.md @@ -21,7 +21,7 @@ FixedSizeList<3, float32> ## API reference links * 🌊 [C++ API docs for `PoseScale3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1PoseScale3D.html) * 🐍 [Python API docs for `PoseScale3D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.PoseScale3D) - * 🦀 [Rust API docs for `PoseScale3D`](https://docs.rs/rerun/latest/rerun/components/struct.PoseScale3D.html) + * 🦀 [Rust API docs for `PoseScale3D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.PoseScale3D.html) ## Used by diff --git a/docs/content/reference/types/components/pose_transform_mat3x3.md b/docs/content/reference/types/components/pose_transform_mat3x3.md index eff04995c452..7c97332d42b5 100644 --- a/docs/content/reference/types/components/pose_transform_mat3x3.md +++ b/docs/content/reference/types/components/pose_transform_mat3x3.md @@ -29,7 +29,7 @@ FixedSizeList<9, float32> ## API reference links * 🌊 [C++ API docs for `PoseTransformMat3x3`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1PoseTransformMat3x3.html) * 🐍 [Python API docs for `PoseTransformMat3x3`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.PoseTransformMat3x3) - * 🦀 [Rust API docs for `PoseTransformMat3x3`](https://docs.rs/rerun/latest/rerun/components/struct.PoseTransformMat3x3.html) + * 🦀 [Rust API docs for `PoseTransformMat3x3`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.PoseTransformMat3x3.html) ## Used by diff --git a/docs/content/reference/types/components/pose_translation3d.md b/docs/content/reference/types/components/pose_translation3d.md index e752f94a41e3..d52136103587 100644 --- a/docs/content/reference/types/components/pose_translation3d.md +++ b/docs/content/reference/types/components/pose_translation3d.md @@ -17,7 +17,7 @@ FixedSizeList<3, float32> ## API reference links * 🌊 [C++ API docs for `PoseTranslation3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1PoseTranslation3D.html) * 🐍 [Python API docs for `PoseTranslation3D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.PoseTranslation3D) - * 🦀 [Rust API docs for `PoseTranslation3D`](https://docs.rs/rerun/latest/rerun/components/struct.PoseTranslation3D.html) + * 🦀 [Rust API docs for `PoseTranslation3D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.PoseTranslation3D.html) ## Used by diff --git a/docs/content/reference/types/components/position2d.md b/docs/content/reference/types/components/position2d.md index 783dc3757ad3..68a1241520cc 100644 --- a/docs/content/reference/types/components/position2d.md +++ b/docs/content/reference/types/components/position2d.md @@ -17,7 +17,7 @@ FixedSizeList<2, float32> ## API reference links * 🌊 [C++ API docs for `Position2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Position2D.html) * 🐍 [Python API docs for `Position2D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Position2D) - * 🦀 [Rust API docs for `Position2D`](https://docs.rs/rerun/latest/rerun/components/struct.Position2D.html) + * 🦀 [Rust API docs for `Position2D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Position2D.html) ## Used by diff --git a/docs/content/reference/types/components/position3d.md b/docs/content/reference/types/components/position3d.md index c4c3884a3e57..980a14342c00 100644 --- a/docs/content/reference/types/components/position3d.md +++ b/docs/content/reference/types/components/position3d.md @@ -17,7 +17,7 @@ FixedSizeList<3, float32> ## API reference links * 🌊 [C++ API docs for `Position3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Position3D.html) * 🐍 [Python API docs for `Position3D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Position3D) - * 🦀 [Rust API docs for `Position3D`](https://docs.rs/rerun/latest/rerun/components/struct.Position3D.html) + * 🦀 [Rust API docs for `Position3D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Position3D.html) ## Used by diff --git a/docs/content/reference/types/components/radius.md b/docs/content/reference/types/components/radius.md index 5db6e4081e91..d88fc4d03c94 100644 --- a/docs/content/reference/types/components/radius.md +++ b/docs/content/reference/types/components/radius.md @@ -24,7 +24,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `Radius`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Radius.html) * 🐍 [Python API docs for `Radius`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Radius) - * 🦀 [Rust API docs for `Radius`](https://docs.rs/rerun/latest/rerun/components/struct.Radius.html) + * 🦀 [Rust API docs for `Radius`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Radius.html) ## Used by diff --git a/docs/content/reference/types/components/range1d.md b/docs/content/reference/types/components/range1d.md index d35374e4681a..c504ea5b6cff 100644 --- a/docs/content/reference/types/components/range1d.md +++ b/docs/content/reference/types/components/range1d.md @@ -17,6 +17,6 @@ FixedSizeList<2, float64> ## API reference links * 🌊 [C++ API docs for `Range1D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Range1D.html) * 🐍 [Python API docs for `Range1D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Range1D) - * 🦀 [Rust API docs for `Range1D`](https://docs.rs/rerun/latest/rerun/components/struct.Range1D.html) + * 🦀 [Rust API docs for `Range1D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Range1D.html) diff --git a/docs/content/reference/types/components/resolution.md b/docs/content/reference/types/components/resolution.md index c3ad8e6b1af5..1752753aae81 100644 --- a/docs/content/reference/types/components/resolution.md +++ b/docs/content/reference/types/components/resolution.md @@ -19,7 +19,7 @@ FixedSizeList<2, float32> ## API reference links * 🌊 [C++ API docs for `Resolution`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Resolution.html) * 🐍 [Python API docs for `Resolution`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Resolution) - * 🦀 [Rust API docs for `Resolution`](https://docs.rs/rerun/latest/rerun/components/struct.Resolution.html) + * 🦀 [Rust API docs for `Resolution`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Resolution.html) ## Used by diff --git a/docs/content/reference/types/components/rotation_axis_angle.md b/docs/content/reference/types/components/rotation_axis_angle.md index a1b3fb606577..ae04f9b8ebca 100644 --- a/docs/content/reference/types/components/rotation_axis_angle.md +++ b/docs/content/reference/types/components/rotation_axis_angle.md @@ -20,7 +20,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `RotationAxisAngle`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1RotationAxisAngle.html) * 🐍 [Python API docs for `RotationAxisAngle`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.RotationAxisAngle) - * 🦀 [Rust API docs for `RotationAxisAngle`](https://docs.rs/rerun/latest/rerun/components/struct.RotationAxisAngle.html) + * 🦀 [Rust API docs for `RotationAxisAngle`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.RotationAxisAngle.html) ## Used by diff --git a/docs/content/reference/types/components/rotation_quat.md b/docs/content/reference/types/components/rotation_quat.md index 696ffd7081e4..7888cb711b77 100644 --- a/docs/content/reference/types/components/rotation_quat.md +++ b/docs/content/reference/types/components/rotation_quat.md @@ -20,7 +20,7 @@ FixedSizeList<4, float32> ## API reference links * 🌊 [C++ API docs for `RotationQuat`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1RotationQuat.html) * 🐍 [Python API docs for `RotationQuat`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.RotationQuat) - * 🦀 [Rust API docs for `RotationQuat`](https://docs.rs/rerun/latest/rerun/components/struct.RotationQuat.html) + * 🦀 [Rust API docs for `RotationQuat`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.RotationQuat.html) ## Used by diff --git a/docs/content/reference/types/components/scalar.md b/docs/content/reference/types/components/scalar.md index e41edb71b843..b27888260821 100644 --- a/docs/content/reference/types/components/scalar.md +++ b/docs/content/reference/types/components/scalar.md @@ -19,7 +19,7 @@ float64 ## API reference links * 🌊 [C++ API docs for `Scalar`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Scalar.html) * 🐍 [Python API docs for `Scalar`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Scalar) - * 🦀 [Rust API docs for `Scalar`](https://docs.rs/rerun/latest/rerun/components/struct.Scalar.html) + * 🦀 [Rust API docs for `Scalar`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Scalar.html) ## Used by diff --git a/docs/content/reference/types/components/scale3d.md b/docs/content/reference/types/components/scale3d.md index 0c9a9d167088..d6e70271d7b9 100644 --- a/docs/content/reference/types/components/scale3d.md +++ b/docs/content/reference/types/components/scale3d.md @@ -21,7 +21,7 @@ FixedSizeList<3, float32> ## API reference links * 🌊 [C++ API docs for `Scale3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Scale3D.html) * 🐍 [Python API docs for `Scale3D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Scale3D) - * 🦀 [Rust API docs for `Scale3D`](https://docs.rs/rerun/latest/rerun/components/struct.Scale3D.html) + * 🦀 [Rust API docs for `Scale3D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Scale3D.html) ## Used by diff --git a/docs/content/reference/types/components/show_labels.md b/docs/content/reference/types/components/show_labels.md index b8b6bc9e0fa7..83e6d19fbc12 100644 --- a/docs/content/reference/types/components/show_labels.md +++ b/docs/content/reference/types/components/show_labels.md @@ -21,7 +21,7 @@ boolean ## API reference links * 🌊 [C++ API docs for `ShowLabels`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1ShowLabels.html) * 🐍 [Python API docs for `ShowLabels`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.ShowLabels) - * 🦀 [Rust API docs for `ShowLabels`](https://docs.rs/rerun/latest/rerun/components/struct.ShowLabels.html) + * 🦀 [Rust API docs for `ShowLabels`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.ShowLabels.html) ## Used by diff --git a/docs/content/reference/types/components/stroke_width.md b/docs/content/reference/types/components/stroke_width.md index 42a47e54c2fb..9bf7d491765b 100644 --- a/docs/content/reference/types/components/stroke_width.md +++ b/docs/content/reference/types/components/stroke_width.md @@ -17,7 +17,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `StrokeWidth`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1StrokeWidth.html) * 🐍 [Python API docs for `StrokeWidth`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.StrokeWidth) - * 🦀 [Rust API docs for `StrokeWidth`](https://docs.rs/rerun/latest/rerun/components/struct.StrokeWidth.html) + * 🦀 [Rust API docs for `StrokeWidth`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.StrokeWidth.html) ## Used by diff --git a/docs/content/reference/types/components/tensor_data.md b/docs/content/reference/types/components/tensor_data.md index 1d6efe720691..7cbaae806035 100644 --- a/docs/content/reference/types/components/tensor_data.md +++ b/docs/content/reference/types/components/tensor_data.md @@ -43,7 +43,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `TensorData`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1TensorData.html) * 🐍 [Python API docs for `TensorData`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.TensorData) - * 🦀 [Rust API docs for `TensorData`](https://docs.rs/rerun/latest/rerun/components/struct.TensorData.html) + * 🦀 [Rust API docs for `TensorData`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.TensorData.html) ## Used by diff --git a/docs/content/reference/types/components/tensor_dimension_index_selection.md b/docs/content/reference/types/components/tensor_dimension_index_selection.md index cf791cc7206e..62f941df18dc 100644 --- a/docs/content/reference/types/components/tensor_dimension_index_selection.md +++ b/docs/content/reference/types/components/tensor_dimension_index_selection.md @@ -20,6 +20,6 @@ Struct { ## API reference links * 🌊 [C++ API docs for `TensorDimensionIndexSelection`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1TensorDimensionIndexSelection.html) * 🐍 [Python API docs for `TensorDimensionIndexSelection`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.TensorDimensionIndexSelection) - * 🦀 [Rust API docs for `TensorDimensionIndexSelection`](https://docs.rs/rerun/latest/rerun/components/struct.TensorDimensionIndexSelection.html) + * 🦀 [Rust API docs for `TensorDimensionIndexSelection`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.TensorDimensionIndexSelection.html) diff --git a/docs/content/reference/types/components/tensor_height_dimension.md b/docs/content/reference/types/components/tensor_height_dimension.md index e494ec3fca15..21c2540e22ac 100644 --- a/docs/content/reference/types/components/tensor_height_dimension.md +++ b/docs/content/reference/types/components/tensor_height_dimension.md @@ -20,6 +20,6 @@ Struct { ## API reference links * 🌊 [C++ API docs for `TensorHeightDimension`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1TensorHeightDimension.html) * 🐍 [Python API docs for `TensorHeightDimension`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.TensorHeightDimension) - * 🦀 [Rust API docs for `TensorHeightDimension`](https://docs.rs/rerun/latest/rerun/components/struct.TensorHeightDimension.html) + * 🦀 [Rust API docs for `TensorHeightDimension`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.TensorHeightDimension.html) diff --git a/docs/content/reference/types/components/tensor_width_dimension.md b/docs/content/reference/types/components/tensor_width_dimension.md index e9ecfcdceda4..55b4417dc704 100644 --- a/docs/content/reference/types/components/tensor_width_dimension.md +++ b/docs/content/reference/types/components/tensor_width_dimension.md @@ -20,6 +20,6 @@ Struct { ## API reference links * 🌊 [C++ API docs for `TensorWidthDimension`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1TensorWidthDimension.html) * 🐍 [Python API docs for `TensorWidthDimension`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.TensorWidthDimension) - * 🦀 [Rust API docs for `TensorWidthDimension`](https://docs.rs/rerun/latest/rerun/components/struct.TensorWidthDimension.html) + * 🦀 [Rust API docs for `TensorWidthDimension`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.TensorWidthDimension.html) diff --git a/docs/content/reference/types/components/texcoord2d.md b/docs/content/reference/types/components/texcoord2d.md index f7806492b348..7d59f6df88b3 100644 --- a/docs/content/reference/types/components/texcoord2d.md +++ b/docs/content/reference/types/components/texcoord2d.md @@ -32,7 +32,7 @@ FixedSizeList<2, float32> ## API reference links * 🌊 [C++ API docs for `Texcoord2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Texcoord2D.html) * 🐍 [Python API docs for `Texcoord2D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Texcoord2D) - * 🦀 [Rust API docs for `Texcoord2D`](https://docs.rs/rerun/latest/rerun/components/struct.Texcoord2D.html) + * 🦀 [Rust API docs for `Texcoord2D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Texcoord2D.html) ## Used by diff --git a/docs/content/reference/types/components/text.md b/docs/content/reference/types/components/text.md index 1dcf5e2284cb..7ad03357d2c8 100644 --- a/docs/content/reference/types/components/text.md +++ b/docs/content/reference/types/components/text.md @@ -17,7 +17,7 @@ utf8 ## API reference links * 🌊 [C++ API docs for `Text`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Text.html) * 🐍 [Python API docs for `Text`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Text) - * 🦀 [Rust API docs for `Text`](https://docs.rs/rerun/latest/rerun/components/struct.Text.html) + * 🦀 [Rust API docs for `Text`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Text.html) ## Used by diff --git a/docs/content/reference/types/components/text_log_level.md b/docs/content/reference/types/components/text_log_level.md index b6d2ac1da93c..18e42224e4bc 100644 --- a/docs/content/reference/types/components/text_log_level.md +++ b/docs/content/reference/types/components/text_log_level.md @@ -25,7 +25,7 @@ utf8 ## API reference links * 🌊 [C++ API docs for `TextLogLevel`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1TextLogLevel.html) * 🐍 [Python API docs for `TextLogLevel`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.TextLogLevel) - * 🦀 [Rust API docs for `TextLogLevel`](https://docs.rs/rerun/latest/rerun/components/struct.TextLogLevel.html) + * 🦀 [Rust API docs for `TextLogLevel`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.TextLogLevel.html) ## Used by diff --git a/docs/content/reference/types/components/transform_mat3x3.md b/docs/content/reference/types/components/transform_mat3x3.md index 439555ef8dee..e54a498a6f7d 100644 --- a/docs/content/reference/types/components/transform_mat3x3.md +++ b/docs/content/reference/types/components/transform_mat3x3.md @@ -29,7 +29,7 @@ FixedSizeList<9, float32> ## API reference links * 🌊 [C++ API docs for `TransformMat3x3`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1TransformMat3x3.html) * 🐍 [Python API docs for `TransformMat3x3`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.TransformMat3x3) - * 🦀 [Rust API docs for `TransformMat3x3`](https://docs.rs/rerun/latest/rerun/components/struct.TransformMat3x3.html) + * 🦀 [Rust API docs for `TransformMat3x3`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.TransformMat3x3.html) ## Used by diff --git a/docs/content/reference/types/components/transform_relation.md b/docs/content/reference/types/components/transform_relation.md index 6fcbe695e1d2..1f549a12e154 100644 --- a/docs/content/reference/types/components/transform_relation.md +++ b/docs/content/reference/types/components/transform_relation.md @@ -29,7 +29,7 @@ uint8 ## API reference links * 🌊 [C++ API docs for `TransformRelation`](https://ref.rerun.io/docs/cpp/stable/namespacererun_1_1components.html) * 🐍 [Python API docs for `TransformRelation`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.TransformRelation) - * 🦀 [Rust API docs for `TransformRelation`](https://docs.rs/rerun/latest/rerun/components/enum.TransformRelation.html) + * 🦀 [Rust API docs for `TransformRelation`](https://ref.rerun.io/docs/rust/stable/rerun/components/enum.TransformRelation.html) ## Used by diff --git a/docs/content/reference/types/components/translation3d.md b/docs/content/reference/types/components/translation3d.md index 8908586e957e..5a94d3945a16 100644 --- a/docs/content/reference/types/components/translation3d.md +++ b/docs/content/reference/types/components/translation3d.md @@ -17,7 +17,7 @@ FixedSizeList<3, float32> ## API reference links * 🌊 [C++ API docs for `Translation3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Translation3D.html) * 🐍 [Python API docs for `Translation3D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Translation3D) - * 🦀 [Rust API docs for `Translation3D`](https://docs.rs/rerun/latest/rerun/components/struct.Translation3D.html) + * 🦀 [Rust API docs for `Translation3D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Translation3D.html) ## Used by diff --git a/docs/content/reference/types/components/triangle_indices.md b/docs/content/reference/types/components/triangle_indices.md index b21d06f21a9b..74c0d636d003 100644 --- a/docs/content/reference/types/components/triangle_indices.md +++ b/docs/content/reference/types/components/triangle_indices.md @@ -17,7 +17,7 @@ FixedSizeList<3, uint32> ## API reference links * 🌊 [C++ API docs for `TriangleIndices`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1TriangleIndices.html) * 🐍 [Python API docs for `TriangleIndices`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.TriangleIndices) - * 🦀 [Rust API docs for `TriangleIndices`](https://docs.rs/rerun/latest/rerun/components/struct.TriangleIndices.html) + * 🦀 [Rust API docs for `TriangleIndices`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.TriangleIndices.html) ## Used by diff --git a/docs/content/reference/types/components/value_range.md b/docs/content/reference/types/components/value_range.md index 995b0413df41..67121c9a56ab 100644 --- a/docs/content/reference/types/components/value_range.md +++ b/docs/content/reference/types/components/value_range.md @@ -17,7 +17,7 @@ FixedSizeList<2, float64> ## API reference links * 🌊 [C++ API docs for `ValueRange`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1ValueRange.html) * 🐍 [Python API docs for `ValueRange`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.ValueRange) - * 🦀 [Rust API docs for `ValueRange`](https://docs.rs/rerun/latest/rerun/components/struct.ValueRange.html) + * 🦀 [Rust API docs for `ValueRange`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.ValueRange.html) ## Used by diff --git a/docs/content/reference/types/components/vector2d.md b/docs/content/reference/types/components/vector2d.md index 52735fe24c57..9e0e6f72c734 100644 --- a/docs/content/reference/types/components/vector2d.md +++ b/docs/content/reference/types/components/vector2d.md @@ -17,7 +17,7 @@ FixedSizeList<2, float32> ## API reference links * 🌊 [C++ API docs for `Vector2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Vector2D.html) * 🐍 [Python API docs for `Vector2D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Vector2D) - * 🦀 [Rust API docs for `Vector2D`](https://docs.rs/rerun/latest/rerun/components/struct.Vector2D.html) + * 🦀 [Rust API docs for `Vector2D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Vector2D.html) ## Used by diff --git a/docs/content/reference/types/components/vector3d.md b/docs/content/reference/types/components/vector3d.md index 47c53e7405c7..84ebc29e3fd9 100644 --- a/docs/content/reference/types/components/vector3d.md +++ b/docs/content/reference/types/components/vector3d.md @@ -17,7 +17,7 @@ FixedSizeList<3, float32> ## API reference links * 🌊 [C++ API docs for `Vector3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Vector3D.html) * 🐍 [Python API docs for `Vector3D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Vector3D) - * 🦀 [Rust API docs for `Vector3D`](https://docs.rs/rerun/latest/rerun/components/struct.Vector3D.html) + * 🦀 [Rust API docs for `Vector3D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Vector3D.html) ## Used by diff --git a/docs/content/reference/types/components/video_timestamp.md b/docs/content/reference/types/components/video_timestamp.md index 4e64bfdad8f7..ee1515158170 100644 --- a/docs/content/reference/types/components/video_timestamp.md +++ b/docs/content/reference/types/components/video_timestamp.md @@ -17,7 +17,7 @@ int64 ## API reference links * 🌊 [C++ API docs for `VideoTimestamp`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1VideoTimestamp.html) * 🐍 [Python API docs for `VideoTimestamp`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.VideoTimestamp) - * 🦀 [Rust API docs for `VideoTimestamp`](https://docs.rs/rerun/latest/rerun/components/struct.VideoTimestamp.html) + * 🦀 [Rust API docs for `VideoTimestamp`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.VideoTimestamp.html) ## Used by diff --git a/docs/content/reference/types/components/view_coordinates.md b/docs/content/reference/types/components/view_coordinates.md index d12bec3e972c..2c9f9fcdbc1d 100644 --- a/docs/content/reference/types/components/view_coordinates.md +++ b/docs/content/reference/types/components/view_coordinates.md @@ -34,7 +34,7 @@ FixedSizeList<3, uint8> ## API reference links * 🌊 [C++ API docs for `ViewCoordinates`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1ViewCoordinates.html) * 🐍 [Python API docs for `ViewCoordinates`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.ViewCoordinates) - * 🦀 [Rust API docs for `ViewCoordinates`](https://docs.rs/rerun/latest/rerun/components/struct.ViewCoordinates.html) + * 🦀 [Rust API docs for `ViewCoordinates`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.ViewCoordinates.html) ## Used by diff --git a/docs/content/reference/types/datatypes/angle.md b/docs/content/reference/types/datatypes/angle.md index 794a9733ef6c..83c96f0b7c32 100644 --- a/docs/content/reference/types/datatypes/angle.md +++ b/docs/content/reference/types/datatypes/angle.md @@ -14,7 +14,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `Angle`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Angle.html) * 🐍 [Python API docs for `Angle`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Angle) - * 🦀 [Rust API docs for `Angle`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Angle.html) + * 🦀 [Rust API docs for `Angle`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Angle.html) ## Used by diff --git a/docs/content/reference/types/datatypes/annotation_info.md b/docs/content/reference/types/datatypes/annotation_info.md index c8e36d0b5dd5..97514b527a46 100644 --- a/docs/content/reference/types/datatypes/annotation_info.md +++ b/docs/content/reference/types/datatypes/annotation_info.md @@ -37,7 +37,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `AnnotationInfo`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1AnnotationInfo.html) * 🐍 [Python API docs for `AnnotationInfo`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.AnnotationInfo) - * 🦀 [Rust API docs for `AnnotationInfo`](https://docs.rs/rerun/latest/rerun/datatypes/struct.AnnotationInfo.html) + * 🦀 [Rust API docs for `AnnotationInfo`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.AnnotationInfo.html) ## Used by diff --git a/docs/content/reference/types/datatypes/blob.md b/docs/content/reference/types/datatypes/blob.md index 5d2f7a61692a..9f1d935b518c 100644 --- a/docs/content/reference/types/datatypes/blob.md +++ b/docs/content/reference/types/datatypes/blob.md @@ -14,7 +14,7 @@ List ## API reference links * 🌊 [C++ API docs for `Blob`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Blob.html) * 🐍 [Python API docs for `Blob`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Blob) - * 🦀 [Rust API docs for `Blob`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Blob.html) + * 🦀 [Rust API docs for `Blob`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Blob.html) ## Used by diff --git a/docs/content/reference/types/datatypes/bool.md b/docs/content/reference/types/datatypes/bool.md index 70ede9bee361..e8a82daa6893 100644 --- a/docs/content/reference/types/datatypes/bool.md +++ b/docs/content/reference/types/datatypes/bool.md @@ -14,7 +14,7 @@ boolean ## API reference links * 🌊 [C++ API docs for `Bool`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Bool.html) * 🐍 [Python API docs for `Bool`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Bool) - * 🦀 [Rust API docs for `Bool`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Bool.html) + * 🦀 [Rust API docs for `Bool`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Bool.html) ## Used by diff --git a/docs/content/reference/types/datatypes/channel_datatype.md b/docs/content/reference/types/datatypes/channel_datatype.md index 4e720a27dccd..3e7ffd98ad71 100644 --- a/docs/content/reference/types/datatypes/channel_datatype.md +++ b/docs/content/reference/types/datatypes/channel_datatype.md @@ -50,7 +50,7 @@ uint8 ## API reference links * 🌊 [C++ API docs for `ChannelDatatype`](https://ref.rerun.io/docs/cpp/stable/namespacererun_1_1datatypes.html) * 🐍 [Python API docs for `ChannelDatatype`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.ChannelDatatype) - * 🦀 [Rust API docs for `ChannelDatatype`](https://docs.rs/rerun/latest/rerun/datatypes/enum.ChannelDatatype.html) + * 🦀 [Rust API docs for `ChannelDatatype`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/enum.ChannelDatatype.html) ## Used by diff --git a/docs/content/reference/types/datatypes/class_description.md b/docs/content/reference/types/datatypes/class_description.md index d68ddd30b91c..92ebe5d5bb43 100644 --- a/docs/content/reference/types/datatypes/class_description.md +++ b/docs/content/reference/types/datatypes/class_description.md @@ -58,7 +58,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `ClassDescription`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1ClassDescription.html) * 🐍 [Python API docs for `ClassDescription`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.ClassDescription) - * 🦀 [Rust API docs for `ClassDescription`](https://docs.rs/rerun/latest/rerun/datatypes/struct.ClassDescription.html) + * 🦀 [Rust API docs for `ClassDescription`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.ClassDescription.html) ## Used by diff --git a/docs/content/reference/types/datatypes/class_description_map_elem.md b/docs/content/reference/types/datatypes/class_description_map_elem.md index f8a2991f761c..4a445a0eca97 100644 --- a/docs/content/reference/types/datatypes/class_description_map_elem.md +++ b/docs/content/reference/types/datatypes/class_description_map_elem.md @@ -45,7 +45,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `ClassDescriptionMapElem`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1ClassDescriptionMapElem.html) * 🐍 [Python API docs for `ClassDescriptionMapElem`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.ClassDescriptionMapElem) - * 🦀 [Rust API docs for `ClassDescriptionMapElem`](https://docs.rs/rerun/latest/rerun/datatypes/struct.ClassDescriptionMapElem.html) + * 🦀 [Rust API docs for `ClassDescriptionMapElem`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.ClassDescriptionMapElem.html) ## Used by diff --git a/docs/content/reference/types/datatypes/class_id.md b/docs/content/reference/types/datatypes/class_id.md index abc013862484..b552aa164441 100644 --- a/docs/content/reference/types/datatypes/class_id.md +++ b/docs/content/reference/types/datatypes/class_id.md @@ -14,7 +14,7 @@ uint16 ## API reference links * 🌊 [C++ API docs for `ClassId`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1ClassId.html) * 🐍 [Python API docs for `ClassId`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.ClassId) - * 🦀 [Rust API docs for `ClassId`](https://docs.rs/rerun/latest/rerun/datatypes/struct.ClassId.html) + * 🦀 [Rust API docs for `ClassId`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.ClassId.html) ## Used by diff --git a/docs/content/reference/types/datatypes/color_model.md b/docs/content/reference/types/datatypes/color_model.md index e08c745e5e9b..170272408e0f 100644 --- a/docs/content/reference/types/datatypes/color_model.md +++ b/docs/content/reference/types/datatypes/color_model.md @@ -32,7 +32,7 @@ uint8 ## API reference links * 🌊 [C++ API docs for `ColorModel`](https://ref.rerun.io/docs/cpp/stable/namespacererun_1_1datatypes.html) * 🐍 [Python API docs for `ColorModel`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.ColorModel) - * 🦀 [Rust API docs for `ColorModel`](https://docs.rs/rerun/latest/rerun/datatypes/enum.ColorModel.html) + * 🦀 [Rust API docs for `ColorModel`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/enum.ColorModel.html) ## Used by diff --git a/docs/content/reference/types/datatypes/dvec2d.md b/docs/content/reference/types/datatypes/dvec2d.md index 373478c9b7e6..f2c6fe66ffe2 100644 --- a/docs/content/reference/types/datatypes/dvec2d.md +++ b/docs/content/reference/types/datatypes/dvec2d.md @@ -14,7 +14,7 @@ FixedSizeList<2, float64> ## API reference links * 🌊 [C++ API docs for `DVec2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1DVec2D.html) * 🐍 [Python API docs for `DVec2D`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.DVec2D) - * 🦀 [Rust API docs for `DVec2D`](https://docs.rs/rerun/latest/rerun/datatypes/struct.DVec2D.html) + * 🦀 [Rust API docs for `DVec2D`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.DVec2D.html) ## Used by diff --git a/docs/content/reference/types/datatypes/entity_path.md b/docs/content/reference/types/datatypes/entity_path.md index b345f5351444..dcfe3586a450 100644 --- a/docs/content/reference/types/datatypes/entity_path.md +++ b/docs/content/reference/types/datatypes/entity_path.md @@ -14,7 +14,7 @@ utf8 ## API reference links * 🌊 [C++ API docs for `EntityPath`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1EntityPath.html) * 🐍 [Python API docs for `EntityPath`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.EntityPath) - * 🦀 [Rust API docs for `EntityPath`](https://docs.rs/rerun/latest/rerun/datatypes/struct.EntityPath.html) + * 🦀 [Rust API docs for `EntityPath`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.EntityPath.html) ## Used by diff --git a/docs/content/reference/types/datatypes/float32.md b/docs/content/reference/types/datatypes/float32.md index 0f6f9561ccae..713f4dcfe9e4 100644 --- a/docs/content/reference/types/datatypes/float32.md +++ b/docs/content/reference/types/datatypes/float32.md @@ -14,7 +14,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `Float32`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Float32.html) * 🐍 [Python API docs for `Float32`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Float32) - * 🦀 [Rust API docs for `Float32`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Float32.html) + * 🦀 [Rust API docs for `Float32`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Float32.html) ## Used by diff --git a/docs/content/reference/types/datatypes/float64.md b/docs/content/reference/types/datatypes/float64.md index 8c1ec4bff30d..3a596926c6e0 100644 --- a/docs/content/reference/types/datatypes/float64.md +++ b/docs/content/reference/types/datatypes/float64.md @@ -14,7 +14,7 @@ float64 ## API reference links * 🌊 [C++ API docs for `Float64`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Float64.html) * 🐍 [Python API docs for `Float64`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Float64) - * 🦀 [Rust API docs for `Float64`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Float64.html) + * 🦀 [Rust API docs for `Float64`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Float64.html) ## Used by diff --git a/docs/content/reference/types/datatypes/image_format.md b/docs/content/reference/types/datatypes/image_format.md index ab654918f9a3..7bc2bc25989d 100644 --- a/docs/content/reference/types/datatypes/image_format.md +++ b/docs/content/reference/types/datatypes/image_format.md @@ -52,7 +52,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `ImageFormat`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1ImageFormat.html) * 🐍 [Python API docs for `ImageFormat`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.ImageFormat) - * 🦀 [Rust API docs for `ImageFormat`](https://docs.rs/rerun/latest/rerun/datatypes/struct.ImageFormat.html) + * 🦀 [Rust API docs for `ImageFormat`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.ImageFormat.html) ## Used by diff --git a/docs/content/reference/types/datatypes/keypoint_id.md b/docs/content/reference/types/datatypes/keypoint_id.md index 7b1e06738cd2..1a1f4d322863 100644 --- a/docs/content/reference/types/datatypes/keypoint_id.md +++ b/docs/content/reference/types/datatypes/keypoint_id.md @@ -14,7 +14,7 @@ uint16 ## API reference links * 🌊 [C++ API docs for `KeypointId`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1KeypointId.html) * 🐍 [Python API docs for `KeypointId`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.KeypointId) - * 🦀 [Rust API docs for `KeypointId`](https://docs.rs/rerun/latest/rerun/datatypes/struct.KeypointId.html) + * 🦀 [Rust API docs for `KeypointId`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.KeypointId.html) ## Used by diff --git a/docs/content/reference/types/datatypes/keypoint_pair.md b/docs/content/reference/types/datatypes/keypoint_pair.md index c466bac9b3bb..0ff715a4c67e 100644 --- a/docs/content/reference/types/datatypes/keypoint_pair.md +++ b/docs/content/reference/types/datatypes/keypoint_pair.md @@ -28,7 +28,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `KeypointPair`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1KeypointPair.html) * 🐍 [Python API docs for `KeypointPair`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.KeypointPair) - * 🦀 [Rust API docs for `KeypointPair`](https://docs.rs/rerun/latest/rerun/datatypes/struct.KeypointPair.html) + * 🦀 [Rust API docs for `KeypointPair`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.KeypointPair.html) ## Used by diff --git a/docs/content/reference/types/datatypes/mat3x3.md b/docs/content/reference/types/datatypes/mat3x3.md index 47a3e2a6e007..b9f956638c85 100644 --- a/docs/content/reference/types/datatypes/mat3x3.md +++ b/docs/content/reference/types/datatypes/mat3x3.md @@ -23,7 +23,7 @@ FixedSizeList<9, float32> ## API reference links * 🌊 [C++ API docs for `Mat3x3`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Mat3x3.html) * 🐍 [Python API docs for `Mat3x3`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Mat3x3) - * 🦀 [Rust API docs for `Mat3x3`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Mat3x3.html) + * 🦀 [Rust API docs for `Mat3x3`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Mat3x3.html) ## Used by diff --git a/docs/content/reference/types/datatypes/mat4x4.md b/docs/content/reference/types/datatypes/mat4x4.md index 73efb6bee533..1cf6ee6b0d71 100644 --- a/docs/content/reference/types/datatypes/mat4x4.md +++ b/docs/content/reference/types/datatypes/mat4x4.md @@ -24,6 +24,6 @@ FixedSizeList<16, float32> ## API reference links * 🌊 [C++ API docs for `Mat4x4`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Mat4x4.html) * 🐍 [Python API docs for `Mat4x4`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Mat4x4) - * 🦀 [Rust API docs for `Mat4x4`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Mat4x4.html) + * 🦀 [Rust API docs for `Mat4x4`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Mat4x4.html) diff --git a/docs/content/reference/types/datatypes/pixel_format.md b/docs/content/reference/types/datatypes/pixel_format.md index 187b03583fe0..e3b5e35417ef 100644 --- a/docs/content/reference/types/datatypes/pixel_format.md +++ b/docs/content/reference/types/datatypes/pixel_format.md @@ -105,7 +105,7 @@ uint8 ## API reference links * 🌊 [C++ API docs for `PixelFormat`](https://ref.rerun.io/docs/cpp/stable/namespacererun_1_1datatypes.html) * 🐍 [Python API docs for `PixelFormat`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.PixelFormat) - * 🦀 [Rust API docs for `PixelFormat`](https://docs.rs/rerun/latest/rerun/datatypes/enum.PixelFormat.html) + * 🦀 [Rust API docs for `PixelFormat`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/enum.PixelFormat.html) ## Used by diff --git a/docs/content/reference/types/datatypes/quaternion.md b/docs/content/reference/types/datatypes/quaternion.md index 7661b5f2579d..397d454e81f8 100644 --- a/docs/content/reference/types/datatypes/quaternion.md +++ b/docs/content/reference/types/datatypes/quaternion.md @@ -17,7 +17,7 @@ FixedSizeList<4, float32> ## API reference links * 🌊 [C++ API docs for `Quaternion`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Quaternion.html) * 🐍 [Python API docs for `Quaternion`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Quaternion) - * 🦀 [Rust API docs for `Quaternion`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Quaternion.html) + * 🦀 [Rust API docs for `Quaternion`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Quaternion.html) ## Used by diff --git a/docs/content/reference/types/datatypes/range1d.md b/docs/content/reference/types/datatypes/range1d.md index 60421a00e8f8..6848440e6bf9 100644 --- a/docs/content/reference/types/datatypes/range1d.md +++ b/docs/content/reference/types/datatypes/range1d.md @@ -14,7 +14,7 @@ FixedSizeList<2, float64> ## API reference links * 🌊 [C++ API docs for `Range1D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Range1D.html) * 🐍 [Python API docs for `Range1D`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Range1D) - * 🦀 [Rust API docs for `Range1D`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Range1D.html) + * 🦀 [Rust API docs for `Range1D`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Range1D.html) ## Used by diff --git a/docs/content/reference/types/datatypes/range2d.md b/docs/content/reference/types/datatypes/range2d.md index 558c3a24a220..4576d300856a 100644 --- a/docs/content/reference/types/datatypes/range2d.md +++ b/docs/content/reference/types/datatypes/range2d.md @@ -28,6 +28,6 @@ Struct { ## API reference links * 🌊 [C++ API docs for `Range2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Range2D.html) * 🐍 [Python API docs for `Range2D`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Range2D) - * 🦀 [Rust API docs for `Range2D`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Range2D.html) + * 🦀 [Rust API docs for `Range2D`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Range2D.html) diff --git a/docs/content/reference/types/datatypes/rgba32.md b/docs/content/reference/types/datatypes/rgba32.md index 4b423d35ec30..f34231248ab6 100644 --- a/docs/content/reference/types/datatypes/rgba32.md +++ b/docs/content/reference/types/datatypes/rgba32.md @@ -17,7 +17,7 @@ uint32 ## API reference links * 🌊 [C++ API docs for `Rgba32`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Rgba32.html) * 🐍 [Python API docs for `Rgba32`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Rgba32) - * 🦀 [Rust API docs for `Rgba32`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Rgba32.html) + * 🦀 [Rust API docs for `Rgba32`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Rgba32.html) ## Used by diff --git a/docs/content/reference/types/datatypes/rotation_axis_angle.md b/docs/content/reference/types/datatypes/rotation_axis_angle.md index e9a26b8086f2..54efca31cc11 100644 --- a/docs/content/reference/types/datatypes/rotation_axis_angle.md +++ b/docs/content/reference/types/datatypes/rotation_axis_angle.md @@ -32,7 +32,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `RotationAxisAngle`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1RotationAxisAngle.html) * 🐍 [Python API docs for `RotationAxisAngle`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.RotationAxisAngle) - * 🦀 [Rust API docs for `RotationAxisAngle`](https://docs.rs/rerun/latest/rerun/datatypes/struct.RotationAxisAngle.html) + * 🦀 [Rust API docs for `RotationAxisAngle`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.RotationAxisAngle.html) ## Used by diff --git a/docs/content/reference/types/datatypes/tensor_buffer.md b/docs/content/reference/types/datatypes/tensor_buffer.md index 653f915c978f..1c702f3630ef 100644 --- a/docs/content/reference/types/datatypes/tensor_buffer.md +++ b/docs/content/reference/types/datatypes/tensor_buffer.md @@ -85,7 +85,7 @@ DenseUnion { ## API reference links * 🌊 [C++ API docs for `TensorBuffer`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1TensorBuffer.html) * 🐍 [Python API docs for `TensorBuffer`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.TensorBuffer) - * 🦀 [Rust API docs for `TensorBuffer`](https://docs.rs/rerun/latest/rerun/datatypes/enum.TensorBuffer.html) + * 🦀 [Rust API docs for `TensorBuffer`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/enum.TensorBuffer.html) ## Used by diff --git a/docs/content/reference/types/datatypes/tensor_data.md b/docs/content/reference/types/datatypes/tensor_data.md index caef70928282..06ab0878527a 100644 --- a/docs/content/reference/types/datatypes/tensor_data.md +++ b/docs/content/reference/types/datatypes/tensor_data.md @@ -51,7 +51,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `TensorData`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1TensorData.html) * 🐍 [Python API docs for `TensorData`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.TensorData) - * 🦀 [Rust API docs for `TensorData`](https://docs.rs/rerun/latest/rerun/datatypes/struct.TensorData.html) + * 🦀 [Rust API docs for `TensorData`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.TensorData.html) ## Used by diff --git a/docs/content/reference/types/datatypes/tensor_dimension.md b/docs/content/reference/types/datatypes/tensor_dimension.md index 4341e405ac10..21e9de59e8ac 100644 --- a/docs/content/reference/types/datatypes/tensor_dimension.md +++ b/docs/content/reference/types/datatypes/tensor_dimension.md @@ -28,7 +28,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `TensorDimension`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1TensorDimension.html) * 🐍 [Python API docs for `TensorDimension`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.TensorDimension) - * 🦀 [Rust API docs for `TensorDimension`](https://docs.rs/rerun/latest/rerun/datatypes/struct.TensorDimension.html) + * 🦀 [Rust API docs for `TensorDimension`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.TensorDimension.html) ## Used by diff --git a/docs/content/reference/types/datatypes/tensor_dimension_index_selection.md b/docs/content/reference/types/datatypes/tensor_dimension_index_selection.md index 1373e1455731..5fd99052357c 100644 --- a/docs/content/reference/types/datatypes/tensor_dimension_index_selection.md +++ b/docs/content/reference/types/datatypes/tensor_dimension_index_selection.md @@ -30,7 +30,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `TensorDimensionIndexSelection`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1TensorDimensionIndexSelection.html) * 🐍 [Python API docs for `TensorDimensionIndexSelection`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.TensorDimensionIndexSelection) - * 🦀 [Rust API docs for `TensorDimensionIndexSelection`](https://docs.rs/rerun/latest/rerun/datatypes/struct.TensorDimensionIndexSelection.html) + * 🦀 [Rust API docs for `TensorDimensionIndexSelection`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.TensorDimensionIndexSelection.html) ## Used by diff --git a/docs/content/reference/types/datatypes/tensor_dimension_selection.md b/docs/content/reference/types/datatypes/tensor_dimension_selection.md index 94d97e242c17..309a7e0c961a 100644 --- a/docs/content/reference/types/datatypes/tensor_dimension_selection.md +++ b/docs/content/reference/types/datatypes/tensor_dimension_selection.md @@ -28,7 +28,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `TensorDimensionSelection`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1TensorDimensionSelection.html) * 🐍 [Python API docs for `TensorDimensionSelection`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.TensorDimensionSelection) - * 🦀 [Rust API docs for `TensorDimensionSelection`](https://docs.rs/rerun/latest/rerun/datatypes/struct.TensorDimensionSelection.html) + * 🦀 [Rust API docs for `TensorDimensionSelection`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.TensorDimensionSelection.html) ## Used by diff --git a/docs/content/reference/types/datatypes/time_int.md b/docs/content/reference/types/datatypes/time_int.md index c121bfaca6cc..ce558d4274d6 100644 --- a/docs/content/reference/types/datatypes/time_int.md +++ b/docs/content/reference/types/datatypes/time_int.md @@ -14,7 +14,7 @@ int64 ## API reference links * 🌊 [C++ API docs for `TimeInt`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1TimeInt.html) * 🐍 [Python API docs for `TimeInt`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.TimeInt) - * 🦀 [Rust API docs for `TimeInt`](https://docs.rs/rerun/latest/rerun/datatypes/struct.TimeInt.html) + * 🦀 [Rust API docs for `TimeInt`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.TimeInt.html) ## Used by diff --git a/docs/content/reference/types/datatypes/time_range.md b/docs/content/reference/types/datatypes/time_range.md index a4b272616a4c..3215f17d1f56 100644 --- a/docs/content/reference/types/datatypes/time_range.md +++ b/docs/content/reference/types/datatypes/time_range.md @@ -38,7 +38,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `TimeRange`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1TimeRange.html) * 🐍 [Python API docs for `TimeRange`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.TimeRange) - * 🦀 [Rust API docs for `TimeRange`](https://docs.rs/rerun/latest/rerun/datatypes/struct.TimeRange.html) + * 🦀 [Rust API docs for `TimeRange`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.TimeRange.html) ## Used by diff --git a/docs/content/reference/types/datatypes/time_range_boundary.md b/docs/content/reference/types/datatypes/time_range_boundary.md index e409fe485ab0..37587816c14c 100644 --- a/docs/content/reference/types/datatypes/time_range_boundary.md +++ b/docs/content/reference/types/datatypes/time_range_boundary.md @@ -35,7 +35,7 @@ DenseUnion { ## API reference links * 🌊 [C++ API docs for `TimeRangeBoundary`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1TimeRangeBoundary.html) * 🐍 [Python API docs for `TimeRangeBoundary`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.TimeRangeBoundary) - * 🦀 [Rust API docs for `TimeRangeBoundary`](https://docs.rs/rerun/latest/rerun/datatypes/enum.TimeRangeBoundary.html) + * 🦀 [Rust API docs for `TimeRangeBoundary`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/enum.TimeRangeBoundary.html) ## Used by diff --git a/docs/content/reference/types/datatypes/uint16.md b/docs/content/reference/types/datatypes/uint16.md index 5609fed94b6f..7eacf8d7f4e5 100644 --- a/docs/content/reference/types/datatypes/uint16.md +++ b/docs/content/reference/types/datatypes/uint16.md @@ -14,6 +14,6 @@ uint16 ## API reference links * 🌊 [C++ API docs for `UInt16`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1UInt16.html) * 🐍 [Python API docs for `UInt16`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.UInt16) - * 🦀 [Rust API docs for `UInt16`](https://docs.rs/rerun/latest/rerun/datatypes/struct.UInt16.html) + * 🦀 [Rust API docs for `UInt16`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.UInt16.html) diff --git a/docs/content/reference/types/datatypes/uint32.md b/docs/content/reference/types/datatypes/uint32.md index 144d1ee0e9ac..e61dd0b78973 100644 --- a/docs/content/reference/types/datatypes/uint32.md +++ b/docs/content/reference/types/datatypes/uint32.md @@ -14,6 +14,6 @@ uint32 ## API reference links * 🌊 [C++ API docs for `UInt32`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1UInt32.html) * 🐍 [Python API docs for `UInt32`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.UInt32) - * 🦀 [Rust API docs for `UInt32`](https://docs.rs/rerun/latest/rerun/datatypes/struct.UInt32.html) + * 🦀 [Rust API docs for `UInt32`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.UInt32.html) diff --git a/docs/content/reference/types/datatypes/uint64.md b/docs/content/reference/types/datatypes/uint64.md index 1c0025e56657..5e6a4cac7c8c 100644 --- a/docs/content/reference/types/datatypes/uint64.md +++ b/docs/content/reference/types/datatypes/uint64.md @@ -14,6 +14,6 @@ uint64 ## API reference links * 🌊 [C++ API docs for `UInt64`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1UInt64.html) * 🐍 [Python API docs for `UInt64`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.UInt64) - * 🦀 [Rust API docs for `UInt64`](https://docs.rs/rerun/latest/rerun/datatypes/struct.UInt64.html) + * 🦀 [Rust API docs for `UInt64`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.UInt64.html) diff --git a/docs/content/reference/types/datatypes/utf8.md b/docs/content/reference/types/datatypes/utf8.md index 7da350ef1499..c001e5749dfd 100644 --- a/docs/content/reference/types/datatypes/utf8.md +++ b/docs/content/reference/types/datatypes/utf8.md @@ -14,7 +14,7 @@ utf8 ## API reference links * 🌊 [C++ API docs for `Utf8`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Utf8.html) * 🐍 [Python API docs for `Utf8`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Utf8) - * 🦀 [Rust API docs for `Utf8`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Utf8.html) + * 🦀 [Rust API docs for `Utf8`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Utf8.html) ## Used by diff --git a/docs/content/reference/types/datatypes/uuid.md b/docs/content/reference/types/datatypes/uuid.md index f709faedfc96..9336d588a8b6 100644 --- a/docs/content/reference/types/datatypes/uuid.md +++ b/docs/content/reference/types/datatypes/uuid.md @@ -14,6 +14,6 @@ FixedSizeList<16, uint8> ## API reference links * 🌊 [C++ API docs for `Uuid`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Uuid.html) * 🐍 [Python API docs for `Uuid`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Uuid) - * 🦀 [Rust API docs for `Uuid`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Uuid.html) + * 🦀 [Rust API docs for `Uuid`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Uuid.html) diff --git a/docs/content/reference/types/datatypes/uvec2d.md b/docs/content/reference/types/datatypes/uvec2d.md index 6215cfb1ceb6..5dacb4dff23e 100644 --- a/docs/content/reference/types/datatypes/uvec2d.md +++ b/docs/content/reference/types/datatypes/uvec2d.md @@ -14,6 +14,6 @@ FixedSizeList<2, uint32> ## API reference links * 🌊 [C++ API docs for `UVec2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1UVec2D.html) * 🐍 [Python API docs for `UVec2D`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.UVec2D) - * 🦀 [Rust API docs for `UVec2D`](https://docs.rs/rerun/latest/rerun/datatypes/struct.UVec2D.html) + * 🦀 [Rust API docs for `UVec2D`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.UVec2D.html) diff --git a/docs/content/reference/types/datatypes/uvec3d.md b/docs/content/reference/types/datatypes/uvec3d.md index 7f9fc18f0779..20eed478f602 100644 --- a/docs/content/reference/types/datatypes/uvec3d.md +++ b/docs/content/reference/types/datatypes/uvec3d.md @@ -14,7 +14,7 @@ FixedSizeList<3, uint32> ## API reference links * 🌊 [C++ API docs for `UVec3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1UVec3D.html) * 🐍 [Python API docs for `UVec3D`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.UVec3D) - * 🦀 [Rust API docs for `UVec3D`](https://docs.rs/rerun/latest/rerun/datatypes/struct.UVec3D.html) + * 🦀 [Rust API docs for `UVec3D`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.UVec3D.html) ## Used by diff --git a/docs/content/reference/types/datatypes/uvec4d.md b/docs/content/reference/types/datatypes/uvec4d.md index 0f9f3b292534..14b99ed30036 100644 --- a/docs/content/reference/types/datatypes/uvec4d.md +++ b/docs/content/reference/types/datatypes/uvec4d.md @@ -14,6 +14,6 @@ FixedSizeList<4, uint32> ## API reference links * 🌊 [C++ API docs for `UVec4D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1UVec4D.html) * 🐍 [Python API docs for `UVec4D`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.UVec4D) - * 🦀 [Rust API docs for `UVec4D`](https://docs.rs/rerun/latest/rerun/datatypes/struct.UVec4D.html) + * 🦀 [Rust API docs for `UVec4D`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.UVec4D.html) diff --git a/docs/content/reference/types/datatypes/vec2d.md b/docs/content/reference/types/datatypes/vec2d.md index 1c9be0557c86..ace8cd750195 100644 --- a/docs/content/reference/types/datatypes/vec2d.md +++ b/docs/content/reference/types/datatypes/vec2d.md @@ -14,7 +14,7 @@ FixedSizeList<2, float32> ## API reference links * 🌊 [C++ API docs for `Vec2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Vec2D.html) * 🐍 [Python API docs for `Vec2D`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Vec2D) - * 🦀 [Rust API docs for `Vec2D`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Vec2D.html) + * 🦀 [Rust API docs for `Vec2D`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Vec2D.html) ## Used by diff --git a/docs/content/reference/types/datatypes/vec3d.md b/docs/content/reference/types/datatypes/vec3d.md index 6de9efa0e522..f7cf0b665a9c 100644 --- a/docs/content/reference/types/datatypes/vec3d.md +++ b/docs/content/reference/types/datatypes/vec3d.md @@ -14,7 +14,7 @@ FixedSizeList<3, float32> ## API reference links * 🌊 [C++ API docs for `Vec3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Vec3D.html) * 🐍 [Python API docs for `Vec3D`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Vec3D) - * 🦀 [Rust API docs for `Vec3D`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Vec3D.html) + * 🦀 [Rust API docs for `Vec3D`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Vec3D.html) ## Used by diff --git a/docs/content/reference/types/datatypes/vec4d.md b/docs/content/reference/types/datatypes/vec4d.md index 26b9f0789b0b..29cca0e39ed0 100644 --- a/docs/content/reference/types/datatypes/vec4d.md +++ b/docs/content/reference/types/datatypes/vec4d.md @@ -14,6 +14,6 @@ FixedSizeList<4, float32> ## API reference links * 🌊 [C++ API docs for `Vec4D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Vec4D.html) * 🐍 [Python API docs for `Vec4D`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Vec4D) - * 🦀 [Rust API docs for `Vec4D`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Vec4D.html) + * 🦀 [Rust API docs for `Vec4D`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Vec4D.html) diff --git a/docs/content/reference/types/datatypes/video_timestamp.md b/docs/content/reference/types/datatypes/video_timestamp.md index a64a6c701f28..2ef3046aa4e4 100644 --- a/docs/content/reference/types/datatypes/video_timestamp.md +++ b/docs/content/reference/types/datatypes/video_timestamp.md @@ -17,7 +17,7 @@ int64 ## API reference links * 🌊 [C++ API docs for `VideoTimestamp`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1VideoTimestamp.html) * 🐍 [Python API docs for `VideoTimestamp`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.VideoTimestamp) - * 🦀 [Rust API docs for `VideoTimestamp`](https://docs.rs/rerun/latest/rerun/datatypes/struct.VideoTimestamp.html) + * 🦀 [Rust API docs for `VideoTimestamp`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.VideoTimestamp.html) ## Used by diff --git a/docs/content/reference/types/datatypes/view_coordinates.md b/docs/content/reference/types/datatypes/view_coordinates.md index 33157fdeeb0b..d9fffeb5a4b1 100644 --- a/docs/content/reference/types/datatypes/view_coordinates.md +++ b/docs/content/reference/types/datatypes/view_coordinates.md @@ -31,7 +31,7 @@ FixedSizeList<3, uint8> ## API reference links * 🌊 [C++ API docs for `ViewCoordinates`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1ViewCoordinates.html) * 🐍 [Python API docs for `ViewCoordinates`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.ViewCoordinates) - * 🦀 [Rust API docs for `ViewCoordinates`](https://docs.rs/rerun/latest/rerun/datatypes/struct.ViewCoordinates.html) + * 🦀 [Rust API docs for `ViewCoordinates`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.ViewCoordinates.html) ## Used by diff --git a/docs/content/reference/types/datatypes/visible_time_range.md b/docs/content/reference/types/datatypes/visible_time_range.md index 6ad2bc9c8cb4..b177e002158e 100644 --- a/docs/content/reference/types/datatypes/visible_time_range.md +++ b/docs/content/reference/types/datatypes/visible_time_range.md @@ -41,6 +41,6 @@ Struct { ## API reference links * 🌊 [C++ API docs for `VisibleTimeRange`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1VisibleTimeRange.html) * 🐍 [Python API docs for `VisibleTimeRange`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.VisibleTimeRange) - * 🦀 [Rust API docs for `VisibleTimeRange`](https://docs.rs/rerun/latest/rerun/datatypes/struct.VisibleTimeRange.html) + * 🦀 [Rust API docs for `VisibleTimeRange`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.VisibleTimeRange.html) diff --git a/examples/rust/external_data_loader/README.md b/examples/rust/external_data_loader/README.md index 8e2988f3dded..32454e2f8d66 100644 --- a/examples/rust/external_data_loader/README.md +++ b/examples/rust/external_data_loader/README.md @@ -19,6 +19,6 @@ This is an example executable data-loader plugin for the Rerun Viewer. It will log Rust source code files as markdown documents. To try it out, install it in your $PATH (`cargo install --path . -f`), then open a Rust source file with Rerun (`rerun file.rs`). -Consider using the [`send_columns`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.send_columns) API for data loaders that ingest time series data from a file. +Consider using the [`send_columns`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.send_columns) API for data loaders that ingest time series data from a file. This can be much more efficient that the stateful `log` API as it allows bundling component data over time into a single call consuming a continuous block of memory. diff --git a/examples/rust/revy/README.md b/examples/rust/revy/README.md index bb883399ba39..15c3124c082d 100644 --- a/examples/rust/revy/README.md +++ b/examples/rust/revy/README.md @@ -86,4 +86,4 @@ For more information, check out the [Revy repository](https://github.com/rerun-i }) ``` This will start a Rerun Viewer in the background and stream the recording data to it.\ - Check out the [`RecordingStreamBuilder`](https://docs.rs/rerun/latest/rerun/struct.RecordingStreamBuilder.html) docs for other options (saving to file, connecting to a remote viewer, etc). + Check out the [`RecordingStreamBuilder`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStreamBuilder.html) docs for other options (saving to file, connecting to a remote viewer, etc). From 00562064fe212bad689b6a53049318d454c75da5 Mon Sep 17 00:00:00 2001 From: Andreas Reich Date: Tue, 19 Nov 2024 09:06:17 +0100 Subject: [PATCH 07/16] Fix doc build - run `cargo metadata` with `--offline` & `--no-deps` (#8168) ### What * solves https://github.com/rerun-io/rerun/issues/8165 (don't close ticket yet, have to confirm that docs.rs actually works) ### Checklist * [x] I have read and agree to [Contributor Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and the [Code of Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md) * [x] I've included a screenshot or gif (if applicable) * [x] I have tested the web demo (if applicable): * Using examples from latest `main` build: [rerun.io/viewer](https://rerun.io/viewer/pr/8168?manifest_url=https://app.rerun.io/version/main/examples_manifest.json) * Using full set of examples from `nightly` build: [rerun.io/viewer](https://rerun.io/viewer/pr/8168?manifest_url=https://app.rerun.io/version/nightly/examples_manifest.json) * [x] The PR title and labels are set such as to maximize their usefulness for the next release's CHANGELOG * [x] If applicable, add a new check to the [release checklist](https://github.com/rerun-io/rerun/blob/main/tests/python/release_checklist)! * [x] If have noted any breaking changes to the log API in `CHANGELOG.md` and the migration guide - [PR Build Summary](https://build.rerun.io/pr/8168) - [Recent benchmark results](https://build.rerun.io/graphs/crates.html) - [Wasm size tracking](https://build.rerun.io/graphs/sizes.html) To run all checks from `main`, comment on the PR with `@rerun-bot full-check`. To deploy documentation changes immediately after merging this PR, add the `deploy docs` label. --------- Co-authored-by: Clement Rey --- crates/build/re_build_tools/src/lib.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/crates/build/re_build_tools/src/lib.rs b/crates/build/re_build_tools/src/lib.rs index f4f6050f24f1..d66292055554 100644 --- a/crates/build/re_build_tools/src/lib.rs +++ b/crates/build/re_build_tools/src/lib.rs @@ -289,7 +289,12 @@ pub fn cargo_metadata() -> anyhow::Result { "Can't get metadata during crate publishing - it would create a Cargo.lock file" ); - Ok(cargo_metadata::MetadataCommand::new().exec()?) + Ok(cargo_metadata::MetadataCommand::new() + .no_deps() + // Make sure this works without a connection, since docs.rs won't have one either. + // See https://github.com/rerun-io/rerun/issues/8165 + .other_options(vec!["--frozen".to_owned()]) + .exec()?) } /// Returns a list of all the enabled features of the given package. From 8197e4961cac2339052a43b06f1eeab0b12c015e Mon Sep 17 00:00:00 2001 From: "Pierre Moulon @ Meta" <74376766+SeaOtocinclus@users.noreply.github.com> Date: Tue, 19 Nov 2024 00:21:25 -0800 Subject: [PATCH 08/16] [re_build_tools] Fix typo (#8171) ### What Fix a typo found in re_build_tools module ### Checklist * [x] I have read and agree to [Contributor Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and the [Code of Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md) * [x] I've included a screenshot or gif (if applicable) * [x] I have tested the web demo (if applicable): * Using examples from latest `main` build: [rerun.io/viewer](https://rerun.io/viewer/pr/8171?manifest_url=https://app.rerun.io/version/main/examples_manifest.json) * Using full set of examples from `nightly` build: [rerun.io/viewer](https://rerun.io/viewer/pr/8171?manifest_url=https://app.rerun.io/version/nightly/examples_manifest.json) * [x] The PR title and labels are set such as to maximize their usefulness for the next release's CHANGELOG * [x] If applicable, add a new check to the [release checklist](https://github.com/rerun-io/rerun/blob/main/tests/python/release_checklist)! * [x] If have noted any breaking changes to the log API in `CHANGELOG.md` and the migration guide - [PR Build Summary](https://build.rerun.io/pr/8171) - [Recent benchmark results](https://build.rerun.io/graphs/crates.html) - [Wasm size tracking](https://build.rerun.io/graphs/sizes.html) To run all checks from `main`, comment on the PR with `@rerun-bot full-check`. To deploy documentation changes immediately after merging this PR, add the `deploy docs` label. --- crates/build/re_build_tools/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/build/re_build_tools/src/lib.rs b/crates/build/re_build_tools/src/lib.rs index d66292055554..33f473f230ef 100644 --- a/crates/build/re_build_tools/src/lib.rs +++ b/crates/build/re_build_tools/src/lib.rs @@ -110,7 +110,7 @@ impl Environment { eprintln!("Environment: env-var IS_IN_RERUN_WORKSPACE is set"); Self::DeveloperInWorkspace } else { - eprintln!("Environment: Not on CI anmd not in workspace"); + eprintln!("Environment: Not on CI and not in workspace"); Self::UsedAsDependency } } From 0c0e95ad770192388ea6d43fc15d0d3b2c57a4a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jochen=20G=C3=B6rtler?= Date: Tue, 19 Nov 2024 15:13:39 +0100 Subject: [PATCH 09/16] Improve error messages for Tensor and Text Document views (#8155) ### What Closes #8148. This brings nicer error messages to mono component entities when multiple components were added. @emilk This also improves the API of `error_*`, `warning_label`, and `success_label` in `UiExt`. image image ### Checklist * [x] I have read and agree to [Contributor Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and the [Code of Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md) * [x] I've included a screenshot or gif (if applicable) * [x] I have tested the web demo (if applicable): * Using examples from latest `main` build: [rerun.io/viewer](https://rerun.io/viewer/pr/8155?manifest_url=https://app.rerun.io/version/main/examples_manifest.json) * Using full set of examples from `nightly` build: [rerun.io/viewer](https://rerun.io/viewer/pr/8155?manifest_url=https://app.rerun.io/version/nightly/examples_manifest.json) * [x] The PR title and labels are set such as to maximize their usefulness for the next release's CHANGELOG * [x] If applicable, add a new check to the [release checklist](https://github.com/rerun-io/rerun/blob/main/tests/python/release_checklist)! * [x] If have noted any breaking changes to the log API in `CHANGELOG.md` and the migration guide - [PR Build Summary](https://build.rerun.io/pr/8155) - [Recent benchmark results](https://build.rerun.io/graphs/crates.html) - [Wasm size tracking](https://build.rerun.io/graphs/sizes.html) To run all checks from `main`, comment on the PR with `@rerun-bot full-check`. To deploy documentation changes immediately after merging this PR, add the `deploy docs` label. --------- Co-authored-by: Emil Ernerfeldt --- .../viewer/re_chunk_store_ui/src/arrow_ui.rs | 2 +- .../viewer/re_chunk_store_ui/src/chunk_ui.rs | 4 ++-- crates/viewer/re_data_ui/src/component.rs | 2 +- .../viewer/re_data_ui/src/component_path.rs | 2 +- crates/viewer/re_data_ui/src/instance_path.rs | 2 +- crates/viewer/re_data_ui/src/video.rs | 6 ++--- .../src/display_record_batch.rs | 2 +- .../src/picking_ui_pixel.rs | 2 +- .../src/space_view_class.rs | 4 ++-- .../src/space_view_class.rs | 2 +- crates/viewer/re_ui/src/ui_ext.rs | 23 +++++++++++-------- .../re_viewer/src/ui/settings_screen.rs | 8 +++---- .../src/component_ui_registry.rs | 2 +- 13 files changed, 32 insertions(+), 29 deletions(-) diff --git a/crates/viewer/re_chunk_store_ui/src/arrow_ui.rs b/crates/viewer/re_chunk_store_ui/src/arrow_ui.rs index db06d4b5581e..d792981a0d2d 100644 --- a/crates/viewer/re_chunk_store_ui/src/arrow_ui.rs +++ b/crates/viewer/re_chunk_store_ui/src/arrow_ui.rs @@ -43,7 +43,7 @@ pub(crate) fn arrow_ui(ui: &mut egui::Ui, array: &dyn arrow2::array::Array) { let mut string = String::new(); match display(&mut string, 0) { Ok(_) => ui.monospace(&string), - Err(err) => ui.error_with_details_on_hover(&err.to_string()), + Err(err) => ui.error_with_details_on_hover(err.to_string()), }; return; } else { diff --git a/crates/viewer/re_chunk_store_ui/src/chunk_ui.rs b/crates/viewer/re_chunk_store_ui/src/chunk_ui.rs index f0753a25d93d..d2a48ffa642e 100644 --- a/crates/viewer/re_chunk_store_ui/src/chunk_ui.rs +++ b/crates/viewer/re_chunk_store_ui/src/chunk_ui.rs @@ -146,7 +146,7 @@ impl ChunkUi { crate::arrow_ui::arrow_ui(ui, &*data); } Some(Err(err)) => { - ui.error_with_details_on_hover(&err.to_string()); + ui.error_with_details_on_hover(err.to_string()); } None => { ui.weak("-"); @@ -282,7 +282,7 @@ impl ChunkUi { }); } Err(err) => { - ui.error_with_details_on_hover(&format!( + ui.error_with_details_on_hover(format!( "Failed to convert to tqransport: {err}" )); } diff --git a/crates/viewer/re_data_ui/src/component.rs b/crates/viewer/re_data_ui/src/component.rs index 569e14121307..6ac5ff065e47 100644 --- a/crates/viewer/re_data_ui/src/component.rs +++ b/crates/viewer/re_data_ui/src/component.rs @@ -81,7 +81,7 @@ impl<'a> DataUi for ComponentPathLatestAtResults<'a> { *component_name, ); if temporal_message_count > 0 { - ui.error_label(&format!( + ui.error_label(format!( "Static component has {} event{} logged on timelines", temporal_message_count, if temporal_message_count > 1 { "s" } else { "" } diff --git a/crates/viewer/re_data_ui/src/component_path.rs b/crates/viewer/re_data_ui/src/component_path.rs index 5296f03d2a06..0fb60de55588 100644 --- a/crates/viewer/re_data_ui/src/component_path.rs +++ b/crates/viewer/re_data_ui/src/component_path.rs @@ -47,7 +47,7 @@ impl DataUi for ComponentPath { )); } } else { - ui.error_label(&format!("Unknown component path: {self}")); + ui.error_label(format!("Unknown component path: {self}")); } } } diff --git a/crates/viewer/re_data_ui/src/instance_path.rs b/crates/viewer/re_data_ui/src/instance_path.rs index eac39082edd6..b1402ad57a0b 100644 --- a/crates/viewer/re_data_ui/src/instance_path.rs +++ b/crates/viewer/re_data_ui/src/instance_path.rs @@ -46,7 +46,7 @@ impl DataUi for InstancePath { .store() .all_components_on_timeline(&query.timeline(), entity_path) } else { - ui.error_label(&format!("Unknown entity: {entity_path:?}")); + ui.error_label(format!("Unknown entity: {entity_path:?}")); return; }; let Some(components) = component else { diff --git a/crates/viewer/re_data_ui/src/video.rs b/crates/viewer/re_data_ui/src/video.rs index 2a88b37ba722..9d562e90d5ca 100644 --- a/crates/viewer/re_data_ui/src/video.rs +++ b/crates/viewer/re_data_ui/src/video.rs @@ -40,9 +40,9 @@ pub fn video_result_ui( Err(err) => { let error_message = format!("Failed to load video: {err}"); if ui_layout.is_single_line() { - ui.error_with_details_on_hover(&error_message); + ui.error_with_details_on_hover(error_message); } else { - ui.error_label(&error_message); + ui.error_label(error_message); } } } @@ -328,7 +328,7 @@ pub fn show_decoded_frame_info( } Err(err) => { - ui.error_label(&err.to_string()); + ui.error_label(err.to_string()); #[cfg(not(target_arch = "wasm32"))] if let re_renderer::video::VideoPlayerError::Decoding( diff --git a/crates/viewer/re_space_view_dataframe/src/display_record_batch.rs b/crates/viewer/re_space_view_dataframe/src/display_record_batch.rs index deeac9889a55..36763ddc2968 100644 --- a/crates/viewer/re_space_view_dataframe/src/display_record_batch.rs +++ b/crates/viewer/re_space_view_dataframe/src/display_record_batch.rs @@ -254,7 +254,7 @@ impl DisplayColumn { ui.label(timeline.typ().format(timestamp, ctx.app_options.time_zone)); } Err(err) => { - ui.error_with_details_on_hover(&err.to_string()); + ui.error_with_details_on_hover(err.to_string()); } } } else { diff --git a/crates/viewer/re_space_view_spatial/src/picking_ui_pixel.rs b/crates/viewer/re_space_view_spatial/src/picking_ui_pixel.rs index c28242717b0c..d8acec9f24ff 100644 --- a/crates/viewer/re_space_view_spatial/src/picking_ui_pixel.rs +++ b/crates/viewer/re_space_view_spatial/src/picking_ui_pixel.rs @@ -178,7 +178,7 @@ pub fn show_zoomed_image_region( interaction_id, center_texel, ) { - ui.error_with_details_on_hover(&err.to_string()); + ui.error_with_details_on_hover(err.to_string()); } } diff --git a/crates/viewer/re_space_view_tensor/src/space_view_class.rs b/crates/viewer/re_space_view_tensor/src/space_view_class.rs index 4a6a84ca6bb9..1c9feeb4779d 100644 --- a/crates/viewer/re_space_view_tensor/src/space_view_class.rs +++ b/crates/viewer/re_space_view_tensor/src/space_view_class.rs @@ -212,7 +212,7 @@ Note: select the space view to configure which dimensions are shown." ..egui::Frame::default() } .show(ui, |ui| { - ui.label(format!( + ui.error_label(format!( "Can only show one tensor at a time; was given {}. Update the query so that it \ returns a single tensor entity and create additional views for the others.", tensors.len() @@ -282,7 +282,7 @@ impl TensorSpaceView { if let Err(err) = self.tensor_slice_ui(ctx, ui, state, view_id, dimension_labels, &slice_selection) { - ui.error_label(&err.to_string()); + ui.error_label(err.to_string()); } }); diff --git a/crates/viewer/re_space_view_text_document/src/space_view_class.rs b/crates/viewer/re_space_view_text_document/src/space_view_class.rs index 784b300da221..10d8ed09cb5e 100644 --- a/crates/viewer/re_space_view_text_document/src/space_view_class.rs +++ b/crates/viewer/re_space_view_text_document/src/space_view_class.rs @@ -170,7 +170,7 @@ Displays text from a text component, as raw text or markdown." })); } else { // TODO(jleibs): better handling for multiple results - ui.label(format!( + ui.error_label(format!( "Can only show one text document at a time; was given {}. Update \ the query so that it returns a single text document and create \ additional views for the others.", diff --git a/crates/viewer/re_ui/src/ui_ext.rs b/crates/viewer/re_ui/src/ui_ext.rs index 58b7cfcf804a..2f82f2ff6b74 100644 --- a/crates/viewer/re_ui/src/ui_ext.rs +++ b/crates/viewer/re_ui/src/ui_ext.rs @@ -60,36 +60,38 @@ pub trait UiExt { /// Shows a success label with a large border. /// /// If you don't want a border, use [`crate::ContextExt::success_text`]. - fn success_label(&mut self, success_text: &str) -> egui::Response { + fn success_label(&mut self, success_text: impl Into) -> egui::Response { let ui = self.ui_mut(); - notification_label(ui, SUCCESS_COLOR, "✅", success_text, success_text) + let success_text = success_text.into(); + notification_label(ui, SUCCESS_COLOR, "✅", &success_text, &success_text) } /// Shows a warning label with a large border. /// /// If you don't want a border, use [`crate::ContextExt::warning_text`]. - fn warning_label(&mut self, warning_text: &str) -> egui::Response { + fn warning_label(&mut self, warning_text: impl Into) -> egui::Response { let ui = self.ui_mut(); + let warning_text = warning_text.into(); notification_label( ui, ui.style().visuals.warn_fg_color, "⚠", - warning_text, - warning_text, + &warning_text, + &warning_text, ) } /// Shows a small error label with the given text on hover and copies the text to the clipboard on click with a large border. /// /// This has a large border! If you don't want a border, use [`crate::ContextExt::error_text`]. - fn error_with_details_on_hover(&mut self, error_text: &str) -> egui::Response { + fn error_with_details_on_hover(&mut self, error_text: impl Into) -> egui::Response { let ui = self.ui_mut(); notification_label( ui, ui.style().visuals.error_fg_color, "⚠", "Error", - error_text, + &error_text.into(), ) } @@ -103,14 +105,15 @@ pub trait UiExt { /// Otherwise, use [`Self::error_with_details_on_hover`]. /// /// This has a large border! If you don't want a border, use [`crate::ContextExt::error_text`]. - fn error_label(&mut self, error_text: &str) -> egui::Response { + fn error_label(&mut self, error_text: impl Into) -> egui::Response { let ui = self.ui_mut(); + let error_text = error_text.into(); notification_label( ui, ui.style().visuals.error_fg_color, "⚠", - error_text, - error_text, + &error_text, + &error_text, ) } diff --git a/crates/viewer/re_viewer/src/ui/settings_screen.rs b/crates/viewer/re_viewer/src/ui/settings_screen.rs index 6053d0550eab..0f120d47345f 100644 --- a/crates/viewer/re_viewer/src/ui/settings_screen.rs +++ b/crates/viewer/re_viewer/src/ui/settings_screen.rs @@ -218,21 +218,21 @@ fn ffmpeg_path_status_ui(ui: &mut Ui, app_options: &AppOptions) { match res { Ok(version) => { if version.is_compatible() { - ui.success_label(&format!("FFmpeg found (version {version})")); + ui.success_label(format!("FFmpeg found (version {version})")); } else { - ui.error_label(&format!("Incompatible FFmpeg version: {version}")); + ui.error_label(format!("Incompatible FFmpeg version: {version}")); } } Err(FFmpegVersionParseError::ParseVersion { raw_version }) => { // We make this one a warning instead of an error because version parsing is flaky, and // it might end up still working. - ui.warning_label(&format!( + ui.warning_label(format!( "FFmpeg binary found but unable to parse version: {raw_version}" )); } Err(err) => { - ui.error_label(&format!("Unable to check FFmpeg version: {err}")); + ui.error_label(format!("Unable to check FFmpeg version: {err}")); } } }; diff --git a/crates/viewer/re_viewer_context/src/component_ui_registry.rs b/crates/viewer/re_viewer_context/src/component_ui_registry.rs index 8804fe4fce5a..0aafd7d33c6d 100644 --- a/crates/viewer/re_viewer_context/src/component_ui_registry.rs +++ b/crates/viewer/re_viewer_context/src/component_ui_registry.rs @@ -411,7 +411,7 @@ impl ComponentUiRegistry { // Also, it allows us to slice the array without cloning any elements. let Some(array) = unit.component_batch_raw(&component_name) else { re_log::error_once!("Couldn't get {component_name}: missing"); - ui.error_with_details_on_hover(&format!("Couldn't get {component_name}: missing")); + ui.error_with_details_on_hover(format!("Couldn't get {component_name}: missing")); return; }; From d800fc0968efd061b4731cada3a76512215f071c Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Wed, 20 Nov 2024 12:11:19 +0100 Subject: [PATCH 10/16] Tweak profiling scopes (#8188) * [x] ok --- crates/store/re_chunk_store/src/writes.rs | 2 +- crates/store/re_entity_db/src/entity_db.rs | 10 ++++++---- crates/store/re_entity_db/src/entity_tree.rs | 2 -- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/crates/store/re_chunk_store/src/writes.rs b/crates/store/re_chunk_store/src/writes.rs index f7f3d17a7d0d..2f168e09545e 100644 --- a/crates/store/re_chunk_store/src/writes.rs +++ b/crates/store/re_chunk_store/src/writes.rs @@ -45,7 +45,7 @@ impl ChunkStore { return Ok(Vec::new()); }; - re_tracing::profile_function!(format!("{}", row_id_range.0)); + re_tracing::profile_function!(); self.insert_id += 1; diff --git a/crates/store/re_entity_db/src/entity_db.rs b/crates/store/re_entity_db/src/entity_db.rs index e9132f9b2b8a..c2519a2c8ef0 100644 --- a/crates/store/re_entity_db/src/entity_db.rs +++ b/crates/store/re_entity_db/src/entity_db.rs @@ -390,8 +390,12 @@ impl EntityDb { .filter(|event| event.kind == ChunkStoreDiffKind::Deletion) .map(|event| event.chunk.entity_path().clone()) .collect(); - self.tree - .on_store_deletions(&engine, &entity_paths_with_deletions, &store_events); + + { + re_tracing::profile_scope!("on_store_deletions"); + self.tree + .on_store_deletions(&engine, &entity_paths_with_deletions, &store_events); + } // We inform the stats last, since it measures e2e latency. self.stats.on_events(&store_events); @@ -543,8 +547,6 @@ impl EntityDb { mut engine: StorageEngineWriteGuard<'_>, store_events: &[ChunkStoreEvent], ) { - re_tracing::profile_function!(); - engine.cache().on_events(store_events); times_per_timeline.on_events(store_events); time_histogram_per_timeline.on_events(store_events); diff --git a/crates/store/re_entity_db/src/entity_tree.rs b/crates/store/re_entity_db/src/entity_tree.rs index 54159429e1ce..89b4ca6cdaf8 100644 --- a/crates/store/re_entity_db/src/entity_tree.rs +++ b/crates/store/re_entity_db/src/entity_tree.rs @@ -169,8 +169,6 @@ impl EntityTree { entity_paths_with_deletions: &IntSet, events: &[ChunkStoreEvent], ) { - re_tracing::profile_function!(); - // We don't actually use the events for anything, we just want to // have a direct dependency on the chunk store which must have // produced them by the time this function was called. From b53b5baffbc44f3f73bd99e4920a2bacc38c2e68 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Tue, 19 Nov 2024 15:35:50 +0100 Subject: [PATCH 11/16] Publish with +1.80.0 --- scripts/ci/crates.py | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/scripts/ci/crates.py b/scripts/ci/crates.py index da287ad0dd32..0d2c1fe94317 100755 --- a/scripts/ci/crates.py +++ b/scripts/ci/crates.py @@ -52,12 +52,16 @@ def cargo( args: str, *, + cargo_version: str | None = None, cwd: str | Path | None = None, env: dict[str, Any] = {}, dry_run: bool = False, capture: bool = False, ) -> Any: - cmd = [CARGO_PATH] + args.split() + if cargo_version is None: + cmd = [CARGO_PATH] + args.split() + else: + cmd = [CARGO_PATH, f"+{cargo_version}"] + args.split() # print(f"> {subprocess.list2cmdline(cmd)}") if not dry_run: stderr = subprocess.STDOUT if capture else None @@ -429,7 +433,16 @@ def publish_crate(crate: Crate, token: str, version: str, env: dict[str, Any]) - retry_attempts = 5 while True: try: - cargo(f"publish --quiet --token {token}", cwd=crate.path, env=env, dry_run=False, capture=True) + # We added `cargo_version="1.80.0"` because some dependency had MSRV 1.80 and that caused `cargo publish` to fail. + # TODO(#8174): remoove the locked cargo_version once we update MSRC to 1.80.0 + cargo( + f"publish --quiet --token {token}", + cargo_version="1.80.0", + cwd=crate.path, + env=env, + dry_run=False, + capture=True, + ) print(f"{G}Published{X} {B}{name}{X}@{B}{version}{X}") break except subprocess.CalledProcessError as e: From 4f56cd8ae92c49cab4edc968b27b01d5ccfa8467 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Tue, 19 Nov 2024 15:41:33 +0100 Subject: [PATCH 12/16] Install Rust 1.80 in cargo publish step --- .github/workflows/reusable_release_crates.yml | 7 +++++++ scripts/ci/crates.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/reusable_release_crates.yml b/.github/workflows/reusable_release_crates.yml index 42985a16ea55..858837ea19fe 100644 --- a/.github/workflows/reusable_release_crates.yml +++ b/.github/workflows/reusable_release_crates.yml @@ -39,5 +39,12 @@ jobs: - name: Build web-viewer (release) run: pixi run rerun-build-web-release + # We added `+1.80.0` to cargo publish some dependency had MSRV 1.80 and that caused `cargo publish` to fail. + # TODO(#8174): remove eonce we update MSRV to 1.80.0 everywhere + - name: Install Rust 1.80.0 + uses: dtolnay/rust-toolchain@master + with: + toolchain: 1.80.0 + - name: Publish run: pixi run python scripts/ci/crates.py publish --token ${{ secrets.CRATES_IO_TOKEN }} diff --git a/scripts/ci/crates.py b/scripts/ci/crates.py index 0d2c1fe94317..2120b997c6b5 100755 --- a/scripts/ci/crates.py +++ b/scripts/ci/crates.py @@ -434,7 +434,7 @@ def publish_crate(crate: Crate, token: str, version: str, env: dict[str, Any]) - while True: try: # We added `cargo_version="1.80.0"` because some dependency had MSRV 1.80 and that caused `cargo publish` to fail. - # TODO(#8174): remoove the locked cargo_version once we update MSRC to 1.80.0 + # TODO(#8174): remove the locked cargo_version once we update MSRV to 1.80.0 cargo( f"publish --quiet --token {token}", cargo_version="1.80.0", From bef3c022ccb776255f03a3411c8c6166a1c77213 Mon Sep 17 00:00:00 2001 From: rerun-bot Date: Wed, 20 Nov 2024 11:22:34 +0000 Subject: [PATCH 13/16] Bump versions to 0.20.1-rc.1 --- Cargo.lock | 226 +++++++++--------- Cargo.toml | 128 +++++----- examples/rust/clock/Cargo.toml | 2 +- examples/rust/custom_data_loader/Cargo.toml | 2 +- examples/rust/custom_space_view/Cargo.toml | 2 +- .../rust/custom_store_subscriber/Cargo.toml | 2 +- examples/rust/dataframe_query/Cargo.toml | 2 +- examples/rust/dna/Cargo.toml | 2 +- examples/rust/extend_viewer_ui/Cargo.toml | 2 +- examples/rust/external_data_loader/Cargo.toml | 2 +- examples/rust/incremental_logging/Cargo.toml | 2 +- examples/rust/log_file/Cargo.toml | 2 +- examples/rust/minimal/Cargo.toml | 2 +- examples/rust/minimal_options/Cargo.toml | 2 +- examples/rust/minimal_serve/Cargo.toml | 2 +- examples/rust/objectron/Cargo.toml | 2 +- examples/rust/raw_mesh/Cargo.toml | 2 +- examples/rust/shared_recording/Cargo.toml | 2 +- examples/rust/spawn_viewer/Cargo.toml | 2 +- examples/rust/stdio/Cargo.toml | 2 +- examples/rust/template/Cargo.toml | 2 +- pixi.lock | 10 +- rerun_cpp/src/rerun/c/sdk_info.h | 4 +- rerun_js/web-viewer-react/README.md | 2 +- rerun_js/web-viewer-react/package.json | 4 +- rerun_js/web-viewer/README.md | 2 +- rerun_js/web-viewer/package.json | 2 +- rerun_notebook/pyproject.toml | 2 +- rerun_py/pyproject.toml | 2 +- rerun_py/rerun_sdk/rerun/__init__.py | 4 +- 30 files changed, 212 insertions(+), 212 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 35842a6fb4ab..cc1763d67d1c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1360,7 +1360,7 @@ dependencies = [ [[package]] name = "clock" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -1718,7 +1718,7 @@ checksum = "96a6ac251f4a2aca6b3f91340350eab87ae57c3f127ffeb585e92bd336717991" [[package]] name = "custom_data_loader" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "re_build_tools", "rerun", @@ -1726,7 +1726,7 @@ dependencies = [ [[package]] name = "custom_space_view" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "mimalloc", "re_crash_handler", @@ -1736,7 +1736,7 @@ dependencies = [ [[package]] name = "custom_store_subscriber" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "re_build_tools", "rerun", @@ -1790,7 +1790,7 @@ checksum = "5c297a1c74b71ae29df00c3e22dd9534821d60eb9af5a0192823fa2acea70c2a" [[package]] name = "dataframe_query" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "itertools 0.13.0", "rerun", @@ -1861,7 +1861,7 @@ dependencies = [ [[package]] name = "dna" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "itertools 0.13.0", "rand", @@ -2349,7 +2349,7 @@ dependencies = [ [[package]] name = "extend_viewer_ui" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "mimalloc", "re_crash_handler", @@ -3300,7 +3300,7 @@ dependencies = [ [[package]] name = "incremental_logging" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -3714,7 +3714,7 @@ dependencies = [ [[package]] name = "log_benchmark" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -3725,7 +3725,7 @@ dependencies = [ [[package]] name = "log_file" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -3903,14 +3903,14 @@ dependencies = [ [[package]] name = "minimal" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "rerun", ] [[package]] name = "minimal_options" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -3920,7 +3920,7 @@ dependencies = [ [[package]] name = "minimal_serve" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "rerun", ] @@ -4521,7 +4521,7 @@ dependencies = [ [[package]] name = "objectron" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -4747,7 +4747,7 @@ dependencies = [ [[package]] name = "plot_dashboard_stress" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -5240,7 +5240,7 @@ checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" [[package]] name = "raw_mesh" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "bytes", @@ -5283,7 +5283,7 @@ checksum = "3b42e27ef78c35d3998403c1d26f3efd9e135d3e5121b0a4845cc5cc27547f4f" [[package]] name = "re_analytics" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "crossbeam", "directories", @@ -5330,7 +5330,7 @@ dependencies = [ [[package]] name = "re_blueprint_tree" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "egui", "itertools 0.13.0", @@ -5349,14 +5349,14 @@ dependencies = [ [[package]] name = "re_build_info" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "serde", ] [[package]] name = "re_build_tools" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "cargo_metadata 0.18.1", @@ -5369,14 +5369,14 @@ dependencies = [ [[package]] name = "re_case" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "convert_case", ] [[package]] name = "re_chunk" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "ahash", "anyhow", @@ -5405,7 +5405,7 @@ dependencies = [ [[package]] name = "re_chunk_store" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "ahash", "anyhow", @@ -5436,7 +5436,7 @@ dependencies = [ [[package]] name = "re_chunk_store_ui" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "egui", "egui_extras", @@ -5451,7 +5451,7 @@ dependencies = [ [[package]] name = "re_component_ui" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "egui", "egui_extras", @@ -5468,7 +5468,7 @@ dependencies = [ [[package]] name = "re_context_menu" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "egui", "egui_tiles", @@ -5489,7 +5489,7 @@ dependencies = [ [[package]] name = "re_crash_handler" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "backtrace", "econtext", @@ -5502,7 +5502,7 @@ dependencies = [ [[package]] name = "re_data_loader" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "ahash", "anyhow", @@ -5531,7 +5531,7 @@ dependencies = [ [[package]] name = "re_data_source" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "itertools 0.13.0", @@ -5549,7 +5549,7 @@ dependencies = [ [[package]] name = "re_data_ui" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "ahash", "anyhow", @@ -5578,7 +5578,7 @@ dependencies = [ [[package]] name = "re_dataframe" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "itertools 0.13.0", @@ -5601,7 +5601,7 @@ dependencies = [ [[package]] name = "re_dev_tools" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "argh", @@ -5628,7 +5628,7 @@ dependencies = [ [[package]] name = "re_entity_db" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "ahash", "anyhow", @@ -5661,21 +5661,21 @@ dependencies = [ [[package]] name = "re_error" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", ] [[package]] name = "re_format" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "num-traits", ] [[package]] name = "re_format_arrow" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "comfy-table", "re_arrow2", @@ -5685,7 +5685,7 @@ dependencies = [ [[package]] name = "re_grpc_client" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "re_chunk", "re_error", @@ -5703,7 +5703,7 @@ dependencies = [ [[package]] name = "re_int_histogram" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "criterion", "insta", @@ -5714,7 +5714,7 @@ dependencies = [ [[package]] name = "re_log" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "env_logger", "js-sys", @@ -5727,7 +5727,7 @@ dependencies = [ [[package]] name = "re_log_encoding" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "criterion", "ehttp", @@ -5753,7 +5753,7 @@ dependencies = [ [[package]] name = "re_log_types" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "ahash", "anyhow", @@ -5802,7 +5802,7 @@ dependencies = [ [[package]] name = "re_memory" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "ahash", "backtrace", @@ -5837,7 +5837,7 @@ dependencies = [ [[package]] name = "re_protos" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "prost", "re_arrow2", @@ -5850,7 +5850,7 @@ dependencies = [ [[package]] name = "re_protos_builder" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "camino", "re_log", @@ -5859,7 +5859,7 @@ dependencies = [ [[package]] name = "re_query" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "ahash", "anyhow", @@ -5913,7 +5913,7 @@ dependencies = [ [[package]] name = "re_renderer" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "ahash", "anyhow", @@ -5966,7 +5966,7 @@ dependencies = [ [[package]] name = "re_renderer_examples" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "ahash", "anyhow", @@ -5990,7 +5990,7 @@ dependencies = [ [[package]] name = "re_sdk" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "ahash", "crossbeam", @@ -6024,7 +6024,7 @@ dependencies = [ [[package]] name = "re_sdk_comms" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "ahash", "crossbeam", @@ -6040,7 +6040,7 @@ dependencies = [ [[package]] name = "re_selection_panel" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "egui", "egui_tiles", @@ -6070,7 +6070,7 @@ dependencies = [ [[package]] name = "re_smart_channel" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "crossbeam", "parking_lot", @@ -6081,7 +6081,7 @@ dependencies = [ [[package]] name = "re_space_view" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "ahash", "bytemuck", @@ -6105,7 +6105,7 @@ dependencies = [ [[package]] name = "re_space_view_bar_chart" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "egui", "egui_plot", @@ -6123,7 +6123,7 @@ dependencies = [ [[package]] name = "re_space_view_dataframe" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "egui", @@ -6146,7 +6146,7 @@ dependencies = [ [[package]] name = "re_space_view_map" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "bytemuck", "egui", @@ -6170,7 +6170,7 @@ dependencies = [ [[package]] name = "re_space_view_spatial" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "ahash", "anyhow", @@ -6213,7 +6213,7 @@ dependencies = [ [[package]] name = "re_space_view_tensor" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "bytemuck", @@ -6237,7 +6237,7 @@ dependencies = [ [[package]] name = "re_space_view_text_document" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "egui", "egui_commonmark", @@ -6252,7 +6252,7 @@ dependencies = [ [[package]] name = "re_space_view_text_log" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "egui", "egui_extras", @@ -6272,7 +6272,7 @@ dependencies = [ [[package]] name = "re_space_view_time_series" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "egui", "egui_plot", @@ -6294,7 +6294,7 @@ dependencies = [ [[package]] name = "re_string_interner" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "ahash", "nohash-hasher", @@ -6306,7 +6306,7 @@ dependencies = [ [[package]] name = "re_time_panel" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "criterion", @@ -6331,7 +6331,7 @@ dependencies = [ [[package]] name = "re_tracing" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "puffin", "puffin_http", @@ -6342,7 +6342,7 @@ dependencies = [ [[package]] name = "re_tuid" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "criterion", "document-features", @@ -6354,7 +6354,7 @@ dependencies = [ [[package]] name = "re_types" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "array-init", @@ -6394,7 +6394,7 @@ dependencies = [ [[package]] name = "re_types_blueprint" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "once_cell", "re_arrow2", @@ -6405,7 +6405,7 @@ dependencies = [ [[package]] name = "re_types_builder" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "arrow", @@ -6433,7 +6433,7 @@ dependencies = [ [[package]] name = "re_types_core" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "backtrace", @@ -6456,7 +6456,7 @@ dependencies = [ [[package]] name = "re_ui" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "eframe", "egui", @@ -6480,7 +6480,7 @@ dependencies = [ [[package]] name = "re_video" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "bit-vec", "cfg_aliases 0.2.1", @@ -6507,7 +6507,7 @@ dependencies = [ [[package]] name = "re_viewer" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "ahash", "anyhow", @@ -6584,7 +6584,7 @@ dependencies = [ [[package]] name = "re_viewer_context" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "ahash", "anyhow", @@ -6638,7 +6638,7 @@ dependencies = [ [[package]] name = "re_viewport" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "ahash", "egui", @@ -6664,7 +6664,7 @@ dependencies = [ [[package]] name = "re_viewport_blueprint" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "ahash", "egui", @@ -6691,7 +6691,7 @@ dependencies = [ [[package]] name = "re_web_viewer_server" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "document-features", "re_analytics", @@ -6702,7 +6702,7 @@ dependencies = [ [[package]] name = "re_ws_comms" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "bincode", @@ -6899,7 +6899,7 @@ dependencies = [ [[package]] name = "rerun" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -6939,7 +6939,7 @@ dependencies = [ [[package]] name = "rerun-cli" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "document-features", "mimalloc", @@ -6954,7 +6954,7 @@ dependencies = [ [[package]] name = "rerun-loader-rust-file" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "argh", @@ -6963,7 +6963,7 @@ dependencies = [ [[package]] name = "rerun_c" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "ahash", "infer", @@ -6977,7 +6977,7 @@ dependencies = [ [[package]] name = "rerun_py" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "arrow", "crossbeam", @@ -7108,7 +7108,7 @@ dependencies = [ [[package]] name = "roundtrip_annotation_context" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -7118,7 +7118,7 @@ dependencies = [ [[package]] name = "roundtrip_arrows2d" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -7128,7 +7128,7 @@ dependencies = [ [[package]] name = "roundtrip_arrows3d" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -7138,7 +7138,7 @@ dependencies = [ [[package]] name = "roundtrip_boxes2d" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -7148,7 +7148,7 @@ dependencies = [ [[package]] name = "roundtrip_boxes3d" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -7158,7 +7158,7 @@ dependencies = [ [[package]] name = "roundtrip_depth_image" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -7169,7 +7169,7 @@ dependencies = [ [[package]] name = "roundtrip_disconnected_space" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -7179,7 +7179,7 @@ dependencies = [ [[package]] name = "roundtrip_image" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -7192,7 +7192,7 @@ dependencies = [ [[package]] name = "roundtrip_line_strips2d" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -7202,7 +7202,7 @@ dependencies = [ [[package]] name = "roundtrip_line_strips3d" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -7212,7 +7212,7 @@ dependencies = [ [[package]] name = "roundtrip_pinhole" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -7222,7 +7222,7 @@ dependencies = [ [[package]] name = "roundtrip_points2d" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -7232,7 +7232,7 @@ dependencies = [ [[package]] name = "roundtrip_points3d" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -7242,7 +7242,7 @@ dependencies = [ [[package]] name = "roundtrip_segmentation_image" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -7253,7 +7253,7 @@ dependencies = [ [[package]] name = "roundtrip_tensor" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -7264,7 +7264,7 @@ dependencies = [ [[package]] name = "roundtrip_text_document" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -7274,7 +7274,7 @@ dependencies = [ [[package]] name = "roundtrip_text_log" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -7284,7 +7284,7 @@ dependencies = [ [[package]] name = "roundtrip_transform3d" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -7294,7 +7294,7 @@ dependencies = [ [[package]] name = "roundtrip_view_coordinates" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -7304,7 +7304,7 @@ dependencies = [ [[package]] name = "roundtrip_visible_time_ranges" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -7320,7 +7320,7 @@ checksum = "3cd14fd5e3b777a7422cca79358c57a8f6e3a703d9ac187448d0daf220c2407f" [[package]] name = "run_wasm" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "cargo-run-wasm", "pico-args", @@ -7712,7 +7712,7 @@ dependencies = [ [[package]] name = "shared_recording" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "rerun", ] @@ -7891,7 +7891,7 @@ dependencies = [ [[package]] name = "snippets" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "itertools 0.13.0", "ndarray", @@ -7914,7 +7914,7 @@ dependencies = [ [[package]] name = "spawn_viewer" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "rerun", ] @@ -7965,7 +7965,7 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" [[package]] name = "stdio" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "rerun", ] @@ -8131,7 +8131,7 @@ dependencies = [ [[package]] name = "template" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "rerun", ] @@ -8147,7 +8147,7 @@ dependencies = [ [[package]] name = "test_api" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -8162,7 +8162,7 @@ dependencies = [ [[package]] name = "test_data_density_graph" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "rand", @@ -8172,7 +8172,7 @@ dependencies = [ [[package]] name = "test_image_memory" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "mimalloc", "re_format", @@ -8181,7 +8181,7 @@ dependencies = [ [[package]] name = "test_pinhole_projection" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", @@ -8192,7 +8192,7 @@ dependencies = [ [[package]] name = "test_send_columns" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "re_chunk", "rerun", @@ -8200,7 +8200,7 @@ dependencies = [ [[package]] name = "test_ui_wakeup" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index eb59a319381b..b675f5be3383 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ include = ["../../LICENSE-APACHE", "../../LICENSE-MIT", "**/*.rs", "Cargo.toml"] license = "MIT OR Apache-2.0" repository = "https://github.com/rerun-io/rerun" rust-version = "1.79" -version = "0.20.0" +version = "0.20.1-rc.1" [workspace.dependencies] # When using alpha-release, always use exact version, e.g. `version = "=0.x.y-alpha.z" @@ -34,77 +34,77 @@ version = "0.20.0" # re_log_types 0.3.0-alpha.0, NOT 0.3.0-alpha.4 even though it is newer and semver-compatible. # crates/build: -re_build_info = { path = "crates/build/re_build_info", version = "0.20.0", default-features = false } -re_build_tools = { path = "crates/build/re_build_tools", version = "0.20.0", default-features = false } -re_dev_tools = { path = "crates/build/re_dev_tools", version = "0.20.0", default-features = false } -re_protos_builder = { path = "crates/build/re_protos_builder", version = "0.20.0", default-features = false } -re_types_builder = { path = "crates/build/re_types_builder", version = "0.20.0", default-features = false } +re_build_info = { path = "crates/build/re_build_info", version = "=0.20.1-rc.1", default-features = false } +re_build_tools = { path = "crates/build/re_build_tools", version = "=0.20.1-rc.1", default-features = false } +re_dev_tools = { path = "crates/build/re_dev_tools", version = "=0.20.1-rc.1", default-features = false } +re_protos_builder = { path = "crates/build/re_protos_builder", version = "=0.20.1-rc.1", default-features = false } +re_types_builder = { path = "crates/build/re_types_builder", version = "=0.20.1-rc.1", default-features = false } # crates/store: -re_chunk = { path = "crates/store/re_chunk", version = "0.20.0", default-features = false } -re_chunk_store = { path = "crates/store/re_chunk_store", version = "0.20.0", default-features = false } -re_data_loader = { path = "crates/store/re_data_loader", version = "0.20.0", default-features = false } -re_data_source = { path = "crates/store/re_data_source", version = "0.20.0", default-features = false } -re_dataframe = { path = "crates/store/re_dataframe", version = "0.20.0", default-features = false } -re_entity_db = { path = "crates/store/re_entity_db", version = "0.20.0", default-features = false } -re_format_arrow = { path = "crates/store/re_format_arrow", version = "0.20.0", default-features = false } -re_grpc_client = { path = "crates/store/re_grpc_client", version = "0.20.0", default-features = false } -re_protos = { path = "crates/store/re_protos", version = "0.20.0", default-features = false } -re_log_encoding = { path = "crates/store/re_log_encoding", version = "0.20.0", default-features = false } -re_log_types = { path = "crates/store/re_log_types", version = "0.20.0", default-features = false } -re_query = { path = "crates/store/re_query", version = "0.20.0", default-features = false } -re_sdk_comms = { path = "crates/store/re_sdk_comms", version = "0.20.0", default-features = false } -re_types = { path = "crates/store/re_types", version = "0.20.0", default-features = false } -re_types_blueprint = { path = "crates/store/re_types_blueprint", version = "0.20.0", default-features = false } -re_types_core = { path = "crates/store/re_types_core", version = "0.20.0", default-features = false } -re_video = { path = "crates/store/re_video", version = "0.20.0", default-features = false } -re_ws_comms = { path = "crates/store/re_ws_comms", version = "0.20.0", default-features = false } +re_chunk = { path = "crates/store/re_chunk", version = "=0.20.1-rc.1", default-features = false } +re_chunk_store = { path = "crates/store/re_chunk_store", version = "=0.20.1-rc.1", default-features = false } +re_data_loader = { path = "crates/store/re_data_loader", version = "=0.20.1-rc.1", default-features = false } +re_data_source = { path = "crates/store/re_data_source", version = "=0.20.1-rc.1", default-features = false } +re_dataframe = { path = "crates/store/re_dataframe", version = "=0.20.1-rc.1", default-features = false } +re_entity_db = { path = "crates/store/re_entity_db", version = "=0.20.1-rc.1", default-features = false } +re_format_arrow = { path = "crates/store/re_format_arrow", version = "=0.20.1-rc.1", default-features = false } +re_grpc_client = { path = "crates/store/re_grpc_client", version = "=0.20.1-rc.1", default-features = false } +re_protos = { path = "crates/store/re_protos", version = "=0.20.1-rc.1", default-features = false } +re_log_encoding = { path = "crates/store/re_log_encoding", version = "=0.20.1-rc.1", default-features = false } +re_log_types = { path = "crates/store/re_log_types", version = "=0.20.1-rc.1", default-features = false } +re_query = { path = "crates/store/re_query", version = "=0.20.1-rc.1", default-features = false } +re_sdk_comms = { path = "crates/store/re_sdk_comms", version = "=0.20.1-rc.1", default-features = false } +re_types = { path = "crates/store/re_types", version = "=0.20.1-rc.1", default-features = false } +re_types_blueprint = { path = "crates/store/re_types_blueprint", version = "=0.20.1-rc.1", default-features = false } +re_types_core = { path = "crates/store/re_types_core", version = "=0.20.1-rc.1", default-features = false } +re_video = { path = "crates/store/re_video", version = "=0.20.1-rc.1", default-features = false } +re_ws_comms = { path = "crates/store/re_ws_comms", version = "=0.20.1-rc.1", default-features = false } # crates/top: -re_sdk = { path = "crates/top/re_sdk", version = "0.20.0", default-features = false } -rerun = { path = "crates/top/rerun", version = "0.20.0", default-features = false } -rerun_c = { path = "crates/top/rerun_c", version = "0.20.0", default-features = false } -rerun-cli = { path = "crates/top/rerun-cli", version = "0.20.0", default-features = false } +re_sdk = { path = "crates/top/re_sdk", version = "=0.20.1-rc.1", default-features = false } +rerun = { path = "crates/top/rerun", version = "=0.20.1-rc.1", default-features = false } +rerun_c = { path = "crates/top/rerun_c", version = "=0.20.1-rc.1", default-features = false } +rerun-cli = { path = "crates/top/rerun-cli", version = "=0.20.1-rc.1", default-features = false } # crates/utils: -re_analytics = { path = "crates/utils/re_analytics", version = "0.20.0", default-features = false } -re_case = { path = "crates/utils/re_case", version = "0.20.0", default-features = false } -re_crash_handler = { path = "crates/utils/re_crash_handler", version = "0.20.0", default-features = false } -re_error = { path = "crates/utils/re_error", version = "0.20.0", default-features = false } -re_format = { path = "crates/utils/re_format", version = "0.20.0", default-features = false } -re_int_histogram = { path = "crates/utils/re_int_histogram", version = "0.20.0", default-features = false } -re_log = { path = "crates/utils/re_log", version = "0.20.0", default-features = false } -re_memory = { path = "crates/utils/re_memory", version = "0.20.0", default-features = false } -re_smart_channel = { path = "crates/utils/re_smart_channel", version = "0.20.0", default-features = false } -re_string_interner = { path = "crates/utils/re_string_interner", version = "0.20.0", default-features = false } -re_tracing = { path = "crates/utils/re_tracing", version = "0.20.0", default-features = false } -re_tuid = { path = "crates/utils/re_tuid", version = "0.20.0", default-features = false } +re_analytics = { path = "crates/utils/re_analytics", version = "=0.20.1-rc.1", default-features = false } +re_case = { path = "crates/utils/re_case", version = "=0.20.1-rc.1", default-features = false } +re_crash_handler = { path = "crates/utils/re_crash_handler", version = "=0.20.1-rc.1", default-features = false } +re_error = { path = "crates/utils/re_error", version = "=0.20.1-rc.1", default-features = false } +re_format = { path = "crates/utils/re_format", version = "=0.20.1-rc.1", default-features = false } +re_int_histogram = { path = "crates/utils/re_int_histogram", version = "=0.20.1-rc.1", default-features = false } +re_log = { path = "crates/utils/re_log", version = "=0.20.1-rc.1", default-features = false } +re_memory = { path = "crates/utils/re_memory", version = "=0.20.1-rc.1", default-features = false } +re_smart_channel = { path = "crates/utils/re_smart_channel", version = "=0.20.1-rc.1", default-features = false } +re_string_interner = { path = "crates/utils/re_string_interner", version = "=0.20.1-rc.1", default-features = false } +re_tracing = { path = "crates/utils/re_tracing", version = "=0.20.1-rc.1", default-features = false } +re_tuid = { path = "crates/utils/re_tuid", version = "=0.20.1-rc.1", default-features = false } # crates/viewer: -re_blueprint_tree = { path = "crates/viewer/re_blueprint_tree", version = "0.20.0", default-features = false } -re_component_ui = { path = "crates/viewer/re_component_ui", version = "0.20.0", default-features = false } -re_context_menu = { path = "crates/viewer/re_context_menu", version = "0.20.0", default-features = false } -re_data_ui = { path = "crates/viewer/re_data_ui", version = "0.20.0", default-features = false } -re_chunk_store_ui = { path = "crates/viewer/re_chunk_store_ui", version = "0.20.0", default-features = false } -re_renderer = { path = "crates/viewer/re_renderer", version = "0.20.0", default-features = false } -re_renderer_examples = { path = "crates/viewer/re_renderer_examples", version = "0.20.0", default-features = false } -re_selection_panel = { path = "crates/viewer/re_selection_panel", version = "0.20.0", default-features = false } -re_space_view = { path = "crates/viewer/re_space_view", version = "0.20.0", default-features = false } -re_space_view_bar_chart = { path = "crates/viewer/re_space_view_bar_chart", version = "0.20.0", default-features = false } -re_space_view_spatial = { path = "crates/viewer/re_space_view_spatial", version = "0.20.0", default-features = false } -re_space_view_dataframe = { path = "crates/viewer/re_space_view_dataframe", version = "0.20.0", default-features = false } -re_space_view_map = { path = "crates/viewer/re_space_view_map", version = "0.20.0", default-features = false } -re_space_view_tensor = { path = "crates/viewer/re_space_view_tensor", version = "0.20.0", default-features = false } -re_space_view_text_document = { path = "crates/viewer/re_space_view_text_document", version = "0.20.0", default-features = false } -re_space_view_text_log = { path = "crates/viewer/re_space_view_text_log", version = "0.20.0", default-features = false } -re_space_view_time_series = { path = "crates/viewer/re_space_view_time_series", version = "0.20.0", default-features = false } -re_time_panel = { path = "crates/viewer/re_time_panel", version = "0.20.0", default-features = false } -re_ui = { path = "crates/viewer/re_ui", version = "0.20.0", default-features = false } -re_viewer = { path = "crates/viewer/re_viewer", version = "0.20.0", default-features = false } -re_viewer_context = { path = "crates/viewer/re_viewer_context", version = "0.20.0", default-features = false } -re_viewport = { path = "crates/viewer/re_viewport", version = "0.20.0", default-features = false } -re_viewport_blueprint = { path = "crates/viewer/re_viewport_blueprint", version = "0.20.0", default-features = false } -re_web_viewer_server = { path = "crates/viewer/re_web_viewer_server", version = "0.20.0", default-features = false } +re_blueprint_tree = { path = "crates/viewer/re_blueprint_tree", version = "=0.20.1-rc.1", default-features = false } +re_component_ui = { path = "crates/viewer/re_component_ui", version = "=0.20.1-rc.1", default-features = false } +re_context_menu = { path = "crates/viewer/re_context_menu", version = "=0.20.1-rc.1", default-features = false } +re_data_ui = { path = "crates/viewer/re_data_ui", version = "=0.20.1-rc.1", default-features = false } +re_chunk_store_ui = { path = "crates/viewer/re_chunk_store_ui", version = "=0.20.1-rc.1", default-features = false } +re_renderer = { path = "crates/viewer/re_renderer", version = "=0.20.1-rc.1", default-features = false } +re_renderer_examples = { path = "crates/viewer/re_renderer_examples", version = "=0.20.1-rc.1", default-features = false } +re_selection_panel = { path = "crates/viewer/re_selection_panel", version = "=0.20.1-rc.1", default-features = false } +re_space_view = { path = "crates/viewer/re_space_view", version = "=0.20.1-rc.1", default-features = false } +re_space_view_bar_chart = { path = "crates/viewer/re_space_view_bar_chart", version = "=0.20.1-rc.1", default-features = false } +re_space_view_spatial = { path = "crates/viewer/re_space_view_spatial", version = "=0.20.1-rc.1", default-features = false } +re_space_view_dataframe = { path = "crates/viewer/re_space_view_dataframe", version = "=0.20.1-rc.1", default-features = false } +re_space_view_map = { path = "crates/viewer/re_space_view_map", version = "=0.20.1-rc.1", default-features = false } +re_space_view_tensor = { path = "crates/viewer/re_space_view_tensor", version = "=0.20.1-rc.1", default-features = false } +re_space_view_text_document = { path = "crates/viewer/re_space_view_text_document", version = "=0.20.1-rc.1", default-features = false } +re_space_view_text_log = { path = "crates/viewer/re_space_view_text_log", version = "=0.20.1-rc.1", default-features = false } +re_space_view_time_series = { path = "crates/viewer/re_space_view_time_series", version = "=0.20.1-rc.1", default-features = false } +re_time_panel = { path = "crates/viewer/re_time_panel", version = "=0.20.1-rc.1", default-features = false } +re_ui = { path = "crates/viewer/re_ui", version = "=0.20.1-rc.1", default-features = false } +re_viewer = { path = "crates/viewer/re_viewer", version = "=0.20.1-rc.1", default-features = false } +re_viewer_context = { path = "crates/viewer/re_viewer_context", version = "=0.20.1-rc.1", default-features = false } +re_viewport = { path = "crates/viewer/re_viewport", version = "=0.20.1-rc.1", default-features = false } +re_viewport_blueprint = { path = "crates/viewer/re_viewport_blueprint", version = "=0.20.1-rc.1", default-features = false } +re_web_viewer_server = { path = "crates/viewer/re_web_viewer_server", version = "=0.20.1-rc.1", default-features = false } # Rerun crates in other repos: ewebsock = "0.8.0" diff --git a/examples/rust/clock/Cargo.toml b/examples/rust/clock/Cargo.toml index 6951f2a0fab4..9d3d4a02a6a1 100644 --- a/examples/rust/clock/Cargo.toml +++ b/examples/rust/clock/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clock" -version = "0.20.0" +version = "0.20.1-rc.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/custom_data_loader/Cargo.toml b/examples/rust/custom_data_loader/Cargo.toml index bf3c37befb0f..39aaa99d8add 100644 --- a/examples/rust/custom_data_loader/Cargo.toml +++ b/examples/rust/custom_data_loader/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "custom_data_loader" -version = "0.20.0" +version = "0.20.1-rc.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/custom_space_view/Cargo.toml b/examples/rust/custom_space_view/Cargo.toml index 5975b221da0c..758df6024383 100644 --- a/examples/rust/custom_space_view/Cargo.toml +++ b/examples/rust/custom_space_view/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "custom_space_view" -version = "0.20.0" +version = "0.20.1-rc.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/custom_store_subscriber/Cargo.toml b/examples/rust/custom_store_subscriber/Cargo.toml index 9e26df49cc5b..18d9f5ccadc9 100644 --- a/examples/rust/custom_store_subscriber/Cargo.toml +++ b/examples/rust/custom_store_subscriber/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "custom_store_subscriber" -version = "0.20.0" +version = "0.20.1-rc.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/dataframe_query/Cargo.toml b/examples/rust/dataframe_query/Cargo.toml index af1ede53d95d..83965ade30c8 100644 --- a/examples/rust/dataframe_query/Cargo.toml +++ b/examples/rust/dataframe_query/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dataframe_query" -version = "0.20.0" +version = "0.20.1-rc.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/dna/Cargo.toml b/examples/rust/dna/Cargo.toml index c6aeaa3e1379..a2e68f6ee2d3 100644 --- a/examples/rust/dna/Cargo.toml +++ b/examples/rust/dna/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dna" -version = "0.20.0" +version = "0.20.1-rc.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/extend_viewer_ui/Cargo.toml b/examples/rust/extend_viewer_ui/Cargo.toml index 15235e5a90b4..9b8e637afb9c 100644 --- a/examples/rust/extend_viewer_ui/Cargo.toml +++ b/examples/rust/extend_viewer_ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "extend_viewer_ui" -version = "0.20.0" +version = "0.20.1-rc.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/external_data_loader/Cargo.toml b/examples/rust/external_data_loader/Cargo.toml index 8a69a353f0ad..a6cd403c08c4 100644 --- a/examples/rust/external_data_loader/Cargo.toml +++ b/examples/rust/external_data_loader/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rerun-loader-rust-file" -version = "0.20.0" +version = "0.20.1-rc.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/incremental_logging/Cargo.toml b/examples/rust/incremental_logging/Cargo.toml index 019fc2823cad..219100091934 100644 --- a/examples/rust/incremental_logging/Cargo.toml +++ b/examples/rust/incremental_logging/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "incremental_logging" -version = "0.20.0" +version = "0.20.1-rc.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/log_file/Cargo.toml b/examples/rust/log_file/Cargo.toml index 32f6f0589f1b..a1a127c539e6 100644 --- a/examples/rust/log_file/Cargo.toml +++ b/examples/rust/log_file/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "log_file" -version = "0.20.0" +version = "0.20.1-rc.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/minimal/Cargo.toml b/examples/rust/minimal/Cargo.toml index cca511aea096..68744f16c360 100644 --- a/examples/rust/minimal/Cargo.toml +++ b/examples/rust/minimal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minimal" -version = "0.20.0" +version = "0.20.1-rc.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/minimal_options/Cargo.toml b/examples/rust/minimal_options/Cargo.toml index ea9889f9b530..9deb4cf91295 100644 --- a/examples/rust/minimal_options/Cargo.toml +++ b/examples/rust/minimal_options/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minimal_options" -version = "0.20.0" +version = "0.20.1-rc.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/minimal_serve/Cargo.toml b/examples/rust/minimal_serve/Cargo.toml index 99d0c13f58f3..f57e9953c576 100644 --- a/examples/rust/minimal_serve/Cargo.toml +++ b/examples/rust/minimal_serve/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minimal_serve" -version = "0.20.0" +version = "0.20.1-rc.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/objectron/Cargo.toml b/examples/rust/objectron/Cargo.toml index abaa4c46df59..ef12a067e5a1 100644 --- a/examples/rust/objectron/Cargo.toml +++ b/examples/rust/objectron/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "objectron" -version = "0.20.0" +version = "0.20.1-rc.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/raw_mesh/Cargo.toml b/examples/rust/raw_mesh/Cargo.toml index 319f560de0cf..4e288ca048cc 100644 --- a/examples/rust/raw_mesh/Cargo.toml +++ b/examples/rust/raw_mesh/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "raw_mesh" -version = "0.20.0" +version = "0.20.1-rc.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/shared_recording/Cargo.toml b/examples/rust/shared_recording/Cargo.toml index b2ba21bb21f0..4757b36bf0d3 100644 --- a/examples/rust/shared_recording/Cargo.toml +++ b/examples/rust/shared_recording/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shared_recording" -version = "0.20.0" +version = "0.20.1-rc.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/spawn_viewer/Cargo.toml b/examples/rust/spawn_viewer/Cargo.toml index 4cebe5e79cab..993f24218dbd 100644 --- a/examples/rust/spawn_viewer/Cargo.toml +++ b/examples/rust/spawn_viewer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spawn_viewer" -version = "0.20.0" +version = "0.20.1-rc.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/stdio/Cargo.toml b/examples/rust/stdio/Cargo.toml index 99b6a17d1153..d31de7b8a986 100644 --- a/examples/rust/stdio/Cargo.toml +++ b/examples/rust/stdio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stdio" -version = "0.20.0" +version = "0.20.1-rc.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/template/Cargo.toml b/examples/rust/template/Cargo.toml index ecd04dda0e50..9f6c10ed94ea 100644 --- a/examples/rust/template/Cargo.toml +++ b/examples/rust/template/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "template" -version = "0.20.0" +version = "0.20.1-rc.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/pixi.lock b/pixi.lock index 0126bd4a9559..b78b6ba8c19b 100644 --- a/pixi.lock +++ b/pixi.lock @@ -35333,9 +35333,9 @@ packages: - watchfiles ; extra == 'dev' - kind: pypi name: rerun-notebook - version: 0.20.0 + version: 0.20.1rc1 path: rerun_notebook - sha256: 8746ce901ad9d0273f8251b7efc34be2de16ff381da010fda4453db54084adce + sha256: 541116a264c4af104b402d3817ea0982a5dc939c9770d2132f1226a036628ea1 requires_dist: - anywidget - jupyter-ui-poll @@ -35415,9 +35415,9 @@ packages: requires_python: '>=3.8,<3.13' - kind: pypi name: rerun-sdk - version: 0.20.0 + version: 0.20.1rc1 path: rerun_py - sha256: 8dcacbb0ac53387c21048db072d4e4738349d3918606c26140356d5ca570aa0b + sha256: b50ec42c6a7dd56ce04057b9f4951199ed581438f383e5f13b3937fecf8d88e5 requires_dist: - attrs>=23.1.0 - numpy>=1.23,<2 @@ -35425,7 +35425,7 @@ packages: - pyarrow>=14.0.2 - typing-extensions>=4.5 - pytest==7.1.2 ; extra == 'tests' - - rerun-notebook==0.20.0 ; extra == 'notebook' + - rerun-notebook==0.20.1rc1 ; extra == 'notebook' requires_python: '>=3.8' editable: true - kind: pypi diff --git a/rerun_cpp/src/rerun/c/sdk_info.h b/rerun_cpp/src/rerun/c/sdk_info.h index 3fcb6e05f257..71c766db7870 100644 --- a/rerun_cpp/src/rerun/c/sdk_info.h +++ b/rerun_cpp/src/rerun/c/sdk_info.h @@ -2,7 +2,7 @@ /// /// This should match the string returned by `rr_version_string` (C) or `rerun::version_string` (C++). /// If not, the SDK's binary and the C header are out of sync. -#define RERUN_SDK_HEADER_VERSION "0.20.0" +#define RERUN_SDK_HEADER_VERSION "0.20.1-rc.1" /// Major version of the Rerun C SDK. #define RERUN_SDK_HEADER_VERSION_MAJOR 0 @@ -11,7 +11,7 @@ #define RERUN_SDK_HEADER_VERSION_MINOR 20 /// Patch version of the Rerun C SDK. -#define RERUN_SDK_HEADER_VERSION_PATCH 0 +#define RERUN_SDK_HEADER_VERSION_PATCH 1 /// Is the Rerun library version greater or equal to this? /// diff --git a/rerun_js/web-viewer-react/README.md b/rerun_js/web-viewer-react/README.md index 361b1d63f155..fdd05971f25b 100644 --- a/rerun_js/web-viewer-react/README.md +++ b/rerun_js/web-viewer-react/README.md @@ -35,7 +35,7 @@ export default function App() { ``` The `rrd` in the snippet above should be a URL pointing to either: -- A hosted `.rrd` file, such as +- A hosted `.rrd` file, such as - A WebSocket connection to the SDK opened via the [`serve`](https://www.rerun.io/docs/reference/sdk/operating-modes#serve) API If `rrd` is not set, the Viewer will display the same welcome screen as . diff --git a/rerun_js/web-viewer-react/package.json b/rerun_js/web-viewer-react/package.json index ff6c51964ee6..6f3fadced07f 100644 --- a/rerun_js/web-viewer-react/package.json +++ b/rerun_js/web-viewer-react/package.json @@ -1,6 +1,6 @@ { "name": "@rerun-io/web-viewer-react", - "version": "0.20.0", + "version": "0.20.1-rc.1", "description": "Embed the Rerun web viewer in your React app", "licenses": [ { @@ -39,7 +39,7 @@ "tsconfig.json" ], "dependencies": { - "@rerun-io/web-viewer": "0.20.0", + "@rerun-io/web-viewer": "0.20.1-rc.1", "@types/react": "^18.2.33", "react": "^18.2.0" }, diff --git a/rerun_js/web-viewer/README.md b/rerun_js/web-viewer/README.md index 7b714f3915a6..724f87098041 100644 --- a/rerun_js/web-viewer/README.md +++ b/rerun_js/web-viewer/README.md @@ -41,7 +41,7 @@ viewer.stop(); ``` The `rrd` in the snippet above should be a URL pointing to either: -- A hosted `.rrd` file, such as +- A hosted `.rrd` file, such as - A WebSocket connection to the SDK opened via the [`serve`](https://www.rerun.io/docs/reference/sdk/operating-modes#serve) API If `rrd` is not set, the Viewer will display the same welcome screen as . diff --git a/rerun_js/web-viewer/package.json b/rerun_js/web-viewer/package.json index 0cdac02c77db..aad40fc418f1 100644 --- a/rerun_js/web-viewer/package.json +++ b/rerun_js/web-viewer/package.json @@ -1,6 +1,6 @@ { "name": "@rerun-io/web-viewer", - "version": "0.20.0", + "version": "0.20.1-rc.1", "description": "Embed the Rerun web viewer in your app", "licenses": [ { diff --git a/rerun_notebook/pyproject.toml b/rerun_notebook/pyproject.toml index 80f8f9bd5a72..3ab8966e5a8b 100644 --- a/rerun_notebook/pyproject.toml +++ b/rerun_notebook/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "hatchling.build" [project] name = "rerun-notebook" description = "Implementation helper for running rerun-sdk in notebooks" -version = "0.20.0" +version = "0.20.1-rc.1" dependencies = ["anywidget", "jupyter-ui-poll"] readme = "README.md" keywords = ["rerun", "notebook"] diff --git a/rerun_py/pyproject.toml b/rerun_py/pyproject.toml index 766f87ec602d..8eb8a38528c7 100644 --- a/rerun_py/pyproject.toml +++ b/rerun_py/pyproject.toml @@ -33,7 +33,7 @@ text = "MIT OR Apache-2.0" [project.optional-dependencies] tests = ["pytest==7.1.2"] -notebook = ["rerun-notebook==0.20.0"] +notebook = ["rerun-notebook==0.20.1-rc.1"] [project.urls] documentation = "https://www.rerun.io/docs" diff --git a/rerun_py/rerun_sdk/rerun/__init__.py b/rerun_py/rerun_sdk/rerun/__init__.py index 69c8ed792988..0ad86864e828 100644 --- a/rerun_py/rerun_sdk/rerun/__init__.py +++ b/rerun_py/rerun_sdk/rerun/__init__.py @@ -9,8 +9,8 @@ import numpy as np -__version__ = "0.20.0" -__version_info__ = (0, 20, 0, None) +__version__ = "0.20.1-rc.1" +__version_info__ = (0, 20, 1, "rc.1") if sys.version_info < (3, 9): warnings.warn( From 34e3c7e855c331af4acb97fa75efef235a40d9e5 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Thu, 21 Nov 2024 09:04:45 +0100 Subject: [PATCH 14/16] Revert "Use gh-pages hosted rust doc while doc.rs docs are broken (#8166)" This reverts commit d88faf9915be3f3e5b708f3517279295a0b3587b. --- BUILD.md | 2 +- CHANGELOG.md | 2 +- README.md | 2 +- .../re_types_builder/src/codegen/docs/mod.rs | 4 +-- crates/top/rerun-cli/README.md | 4 +-- crates/top/rerun/README.md | 6 ++--- docs/content/concepts/annotation-context.md | 4 +-- docs/content/concepts/app-model.md | 4 +-- docs/content/concepts/apps-and-recordings.md | 2 +- .../getting-started/data-in/open-any-file.md | 2 +- docs/content/getting-started/data-in/rust.md | 26 +++++++++++-------- docs/content/howto/logging/custom-data.md | 2 +- docs/content/howto/logging/send-columns.md | 2 +- .../howto/visualization/reuse-blueprints.md | 2 +- .../reference/data-loaders/overview.md | 2 +- docs/content/reference/dataframes.md | 6 ++--- .../reference/migration/migration-0-9.md | 14 +++++----- docs/content/reference/rust.md | 2 +- docs/content/reference/sdk/operating-modes.md | 12 ++++----- .../types/archetypes/annotation_context.md | 2 +- .../reference/types/archetypes/arrows2d.md | 2 +- .../reference/types/archetypes/arrows3d.md | 2 +- .../reference/types/archetypes/asset3d.md | 2 +- .../reference/types/archetypes/asset_video.md | 2 +- .../reference/types/archetypes/bar_chart.md | 2 +- .../reference/types/archetypes/boxes2d.md | 2 +- .../reference/types/archetypes/boxes3d.md | 2 +- .../reference/types/archetypes/capsules3d.md | 2 +- .../reference/types/archetypes/clear.md | 2 +- .../reference/types/archetypes/depth_image.md | 2 +- .../types/archetypes/disconnected_space.md | 2 +- .../types/archetypes/ellipsoids3d.md | 2 +- .../types/archetypes/encoded_image.md | 2 +- .../types/archetypes/geo_line_strings.md | 2 +- .../reference/types/archetypes/geo_points.md | 2 +- .../reference/types/archetypes/image.md | 2 +- .../types/archetypes/instance_poses3d.md | 2 +- .../types/archetypes/line_strips2d.md | 2 +- .../types/archetypes/line_strips3d.md | 2 +- .../reference/types/archetypes/mesh3d.md | 2 +- .../reference/types/archetypes/pinhole.md | 2 +- .../reference/types/archetypes/points2d.md | 2 +- .../reference/types/archetypes/points3d.md | 2 +- .../reference/types/archetypes/scalar.md | 2 +- .../types/archetypes/segmentation_image.md | 2 +- .../reference/types/archetypes/series_line.md | 2 +- .../types/archetypes/series_point.md | 2 +- .../reference/types/archetypes/tensor.md | 2 +- .../types/archetypes/text_document.md | 2 +- .../reference/types/archetypes/text_log.md | 2 +- .../reference/types/archetypes/transform3d.md | 2 +- .../types/archetypes/video_frame_reference.md | 2 +- .../types/archetypes/view_coordinates.md | 2 +- .../types/components/aggregation_policy.md | 2 +- .../types/components/albedo_factor.md | 2 +- .../types/components/annotation_context.md | 2 +- .../reference/types/components/axis_length.md | 2 +- .../reference/types/components/blob.md | 2 +- .../reference/types/components/class_id.md | 2 +- .../types/components/clear_is_recursive.md | 2 +- .../reference/types/components/color.md | 2 +- .../reference/types/components/colormap.md | 2 +- .../reference/types/components/depth_meter.md | 2 +- .../types/components/disconnected_space.md | 2 +- .../reference/types/components/draw_order.md | 2 +- .../reference/types/components/entity_path.md | 2 +- .../reference/types/components/fill_mode.md | 2 +- .../reference/types/components/fill_ratio.md | 2 +- .../types/components/gamma_correction.md | 2 +- .../types/components/geo_line_string.md | 2 +- .../reference/types/components/half_size2d.md | 2 +- .../reference/types/components/half_size3d.md | 2 +- .../types/components/image_buffer.md | 2 +- .../types/components/image_format.md | 2 +- .../types/components/image_plane_distance.md | 2 +- .../reference/types/components/keypoint_id.md | 2 +- .../reference/types/components/lat_lon.md | 2 +- .../reference/types/components/length.md | 2 +- .../types/components/line_strip2d.md | 2 +- .../types/components/line_strip3d.md | 2 +- .../types/components/magnification_filter.md | 2 +- .../types/components/marker_shape.md | 2 +- .../reference/types/components/marker_size.md | 2 +- .../reference/types/components/media_type.md | 2 +- .../reference/types/components/name.md | 2 +- .../reference/types/components/opacity.md | 2 +- .../types/components/pinhole_projection.md | 2 +- .../components/pose_rotation_axis_angle.md | 2 +- .../types/components/pose_rotation_quat.md | 2 +- .../types/components/pose_scale3d.md | 2 +- .../types/components/pose_transform_mat3x3.md | 2 +- .../types/components/pose_translation3d.md | 2 +- .../reference/types/components/position2d.md | 2 +- .../reference/types/components/position3d.md | 2 +- .../reference/types/components/radius.md | 2 +- .../reference/types/components/range1d.md | 2 +- .../reference/types/components/resolution.md | 2 +- .../types/components/rotation_axis_angle.md | 2 +- .../types/components/rotation_quat.md | 2 +- .../reference/types/components/scalar.md | 2 +- .../reference/types/components/scale3d.md | 2 +- .../reference/types/components/show_labels.md | 2 +- .../types/components/stroke_width.md | 2 +- .../reference/types/components/tensor_data.md | 2 +- .../tensor_dimension_index_selection.md | 2 +- .../components/tensor_height_dimension.md | 2 +- .../components/tensor_width_dimension.md | 2 +- .../reference/types/components/texcoord2d.md | 2 +- .../reference/types/components/text.md | 2 +- .../types/components/text_log_level.md | 2 +- .../types/components/transform_mat3x3.md | 2 +- .../types/components/transform_relation.md | 2 +- .../types/components/translation3d.md | 2 +- .../types/components/triangle_indices.md | 2 +- .../reference/types/components/value_range.md | 2 +- .../reference/types/components/vector2d.md | 2 +- .../reference/types/components/vector3d.md | 2 +- .../types/components/video_timestamp.md | 2 +- .../types/components/view_coordinates.md | 2 +- .../reference/types/datatypes/angle.md | 2 +- .../types/datatypes/annotation_info.md | 2 +- .../content/reference/types/datatypes/blob.md | 2 +- .../content/reference/types/datatypes/bool.md | 2 +- .../types/datatypes/channel_datatype.md | 2 +- .../types/datatypes/class_description.md | 2 +- .../datatypes/class_description_map_elem.md | 2 +- .../reference/types/datatypes/class_id.md | 2 +- .../reference/types/datatypes/color_model.md | 2 +- .../reference/types/datatypes/dvec2d.md | 2 +- .../reference/types/datatypes/entity_path.md | 2 +- .../reference/types/datatypes/float32.md | 2 +- .../reference/types/datatypes/float64.md | 2 +- .../reference/types/datatypes/image_format.md | 2 +- .../reference/types/datatypes/keypoint_id.md | 2 +- .../types/datatypes/keypoint_pair.md | 2 +- .../reference/types/datatypes/mat3x3.md | 2 +- .../reference/types/datatypes/mat4x4.md | 2 +- .../reference/types/datatypes/pixel_format.md | 2 +- .../reference/types/datatypes/quaternion.md | 2 +- .../reference/types/datatypes/range1d.md | 2 +- .../reference/types/datatypes/range2d.md | 2 +- .../reference/types/datatypes/rgba32.md | 2 +- .../types/datatypes/rotation_axis_angle.md | 2 +- .../types/datatypes/tensor_buffer.md | 2 +- .../reference/types/datatypes/tensor_data.md | 2 +- .../types/datatypes/tensor_dimension.md | 2 +- .../tensor_dimension_index_selection.md | 2 +- .../datatypes/tensor_dimension_selection.md | 2 +- .../reference/types/datatypes/time_int.md | 2 +- .../reference/types/datatypes/time_range.md | 2 +- .../types/datatypes/time_range_boundary.md | 2 +- .../reference/types/datatypes/uint16.md | 2 +- .../reference/types/datatypes/uint32.md | 2 +- .../reference/types/datatypes/uint64.md | 2 +- .../content/reference/types/datatypes/utf8.md | 2 +- .../content/reference/types/datatypes/uuid.md | 2 +- .../reference/types/datatypes/uvec2d.md | 2 +- .../reference/types/datatypes/uvec3d.md | 2 +- .../reference/types/datatypes/uvec4d.md | 2 +- .../reference/types/datatypes/vec2d.md | 2 +- .../reference/types/datatypes/vec3d.md | 2 +- .../reference/types/datatypes/vec4d.md | 2 +- .../types/datatypes/video_timestamp.md | 2 +- .../types/datatypes/view_coordinates.md | 2 +- .../types/datatypes/visible_time_range.md | 2 +- examples/rust/external_data_loader/README.md | 2 +- examples/rust/revy/README.md | 2 +- 167 files changed, 197 insertions(+), 199 deletions(-) diff --git a/BUILD.md b/BUILD.md index d690a4d9bc72..8e22c44d6c3c 100644 --- a/BUILD.md +++ b/BUILD.md @@ -112,7 +112,7 @@ High-level documentation for Rerun can be found at [http://rerun.io/docs](http:/ - 🌊 [C++ API docs](https://ref.rerun.io/docs/cpp) are built with `doxygen` and hosted on GitHub. Use `pixi run -e cpp cpp-docs` to build them locally. For details on the C++ doc-system, see [Writing Docs](rerun_cpp/docs/writing_docs.md). - 🐍 [Python API docs](https://ref.rerun.io/docs/python) are built via `mkdocs` and hosted on GitHub. For details on the Python doc-system, see [Writing Docs](rerun_py/docs/writing_docs.md). -- 🦀 [Rust API docs](https://ref.rerun.io/docs/rust/stable) are hosted on . You can build them locally with: `cargo doc --all-features --no-deps --open`. +- 🦀 [Rust API docs](https://docs.rs/rerun/) are hosted on . You can build them locally with: `cargo doc --all-features --no-deps --open`. ## Building for the web diff --git a/CHANGELOG.md b/CHANGELOG.md index 8071a6f60466..3d6bec9ac0d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -313,7 +313,7 @@ This can both greatly simplify logging code and drastically improve performance API documentation: * 🐍 [Python `send_columns` docs](https://ref.rerun.io/docs/python/stable/common/columnar_api/#rerun.send_columns) * 🌊 [C++ `send_columns` docs](https://ref.rerun.io/docs/cpp/stable/classrerun_1_1RecordingStream.html#ad17571d51185ce2fc2fc2f5c3070ad65) -* 🦀 [Rust `send_columns` docs](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.send_columns) +* 🦀 [Rust `send_columns` docs](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.send_columns) API usage examples:
diff --git a/README.md b/README.md index 1e75c2f789ed..5ae94c682b7b 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ You should now be able to run `rerun --help` in any terminal. - ⚙️ [Examples](http://rerun.io/examples) - 🌊 [C++ API docs](https://ref.rerun.io/docs/cpp) - 🐍 [Python API docs](https://ref.rerun.io/docs/python) -- 🦀 [Rust API docs](https://ref.rerun.io/docs/rust/stable) +- 🦀 [Rust API docs](https://docs.rs/rerun/) - ⁉️ [Troubleshooting](https://www.rerun.io/docs/getting-started/troubleshooting) diff --git a/crates/build/re_types_builder/src/codegen/docs/mod.rs b/crates/build/re_types_builder/src/codegen/docs/mod.rs index e7e4795095a6..22123d734614 100644 --- a/crates/build/re_types_builder/src/codegen/docs/mod.rs +++ b/crates/build/re_types_builder/src/codegen/docs/mod.rs @@ -381,9 +381,7 @@ fn list_links(is_unreleased: bool, page: &mut String, object: &Object) { putln!( page, - // TODO(#8165): docs.rs/rerun is broken right now - // " * 🦀 [Rust API docs for `{}`](https://docs.rs/rerun/latest/rerun/{}/{}.{}.html{speculative_marker})", - " * 🦀 [Rust API docs for `{}`](https://ref.rerun.io/docs/rust/stable/rerun/{}/{}.{}.html{speculative_marker})", + " * 🦀 [Rust API docs for `{}`](https://docs.rs/rerun/latest/rerun/{}/{}.{}.html{speculative_marker})", object.name, object.kind.plural_snake_case(), if object.is_struct() { "struct" } else { "enum" }, diff --git a/crates/top/rerun-cli/README.md b/crates/top/rerun-cli/README.md index 5b0a4013794f..77eda956da93 100644 --- a/crates/top/rerun-cli/README.md +++ b/crates/top/rerun-cli/README.md @@ -25,9 +25,7 @@ Run `rerun --help` for more. ## What is Rerun? - [Examples](https://github.com/rerun-io/rerun/tree/latest/examples/rust) - [High-level docs](http://rerun.io/docs) - - -- [Rust API docs](https://ref.rerun.io/docs/rust/stable/rerun/) +- [Rust API docs](https://docs.rs/rerun/) - [Troubleshooting](https://www.rerun.io/docs/getting-started/troubleshooting) diff --git a/crates/top/rerun/README.md b/crates/top/rerun/README.md index cddfb83967cf..3882f1f038e5 100644 --- a/crates/top/rerun/README.md +++ b/crates/top/rerun/README.md @@ -6,7 +6,7 @@

Latest version - Documentation + Documentation MIT Apache Rerun Discord @@ -32,9 +32,7 @@ rec.log("image", &rerun::archetypes::Image::new(image))?; ## Getting started - [Examples](https://github.com/rerun-io/rerun/tree/latest/examples/rust) - [High-level docs](http://rerun.io/docs) - - -- [Rust API docs](https://ref.rerun.io/docs/rust/stable/rerun/) +- [Rust API docs](https://docs.rs/rerun/) - [Troubleshooting](https://www.rerun.io/docs/getting-started/troubleshooting) ## Library diff --git a/docs/content/concepts/annotation-context.md b/docs/content/concepts/annotation-context.md index 8fc00f0d0bc1..cd89d4cee311 100644 --- a/docs/content/concepts/annotation-context.md +++ b/docs/content/concepts/annotation-context.md @@ -54,7 +54,7 @@ The Annotation Context is defined as a list of Class Descriptions that define ho Annotation contexts are logged with: * Python: 🐍[`rr.AnnotationContext`](https://ref.rerun.io/docs/python/stable/common/archetypes/#rerun.archetypes.AnnotationContext) -* Rust: 🦀[`rerun::AnnotationContext`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.AnnotationContext.html#) +* Rust: 🦀[`rerun::AnnotationContext`](https://docs.rs/rerun/latest/rerun/archetypes/struct.AnnotationContext.html#) snippet: tutorials/annotation-context @@ -72,7 +72,7 @@ By default, Rerun will automatically assign colors to each class id, but by defi you can explicitly determine the color of each class. * Python: [`rr.SegmentationImage`](https://ref.rerun.io/docs/python/stable/common/archetypes/#rerun.archetypes.SegmentationImage) -* Rust: Log a [`rerun::SegmentationImage`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.SegmentationImage.html) +* Rust: Log a [`rerun::SegmentationImage`](https://docs.rs/rerun/latest/rerun/archetypes/struct.SegmentationImage.html) diff --git a/docs/content/concepts/app-model.md b/docs/content/concepts/app-model.md index 1666e493939e..4029e722d385 100644 --- a/docs/content/concepts/app-model.md +++ b/docs/content/concepts/app-model.md @@ -84,7 +84,7 @@ Dataflow: Reference: * [SDK operating modes: `connect`](../reference/sdk/operating-modes.md#connect) * [🐍 Python `connect`](https://ref.rerun.io/docs/python/0.19.0/common/initialization_functions/#rerun.connect) -* [🦀 Rust `connect`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStreamBuilder.html#method.connect) +* [🦀 Rust `connect`](https://docs.rs/rerun/latest/rerun/struct.RecordingStreamBuilder.html#method.connect) * [🌊 C++ `connect`](https://ref.rerun.io/docs/cpp/stable/classrerun_1_1RecordingStream.html#aef3377ffaa2441b906d2bac94dd8fc64) ### Asynchronous workflow @@ -125,7 +125,7 @@ Dataflow: Reference: * [SDK operating modes: `save`](../reference/sdk/operating-modes.md#save) * [🐍 Python `save`](https://ref.rerun.io/docs/python/0.19.0/common/initialization_functions/#rerun.save) -* [🦀 Rust `save`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStreamBuilder.html#method.save) +* [🦀 Rust `save`](https://docs.rs/rerun/latest/rerun/struct.RecordingStreamBuilder.html#method.save) * [🌊 C++ `save`](https://ref.rerun.io/docs/cpp/stable/classrerun_1_1RecordingStream.html#a555a7940a076c93d951de5b139d14918) + +The easiest way to log geometric primitives is the use the [`RecordingStream::log`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.log) method with one of the built-in archetype class, such as [`Points3D`](https://docs.rs/rerun/latest/0.9.0-alpha.10/struct.Points3D.html). Archetypes take care of building batches of components that are recognized and correctly displayed by the Rerun viewer. ### Components @@ -131,9 +133,11 @@ cases, it's possible to add custom components to archetypes, or even log entirel archetypes altogether. For more information on how the Rerun data model works, refer to our section on [Entities and Components](../../concepts/entity-component.md). -Notably, the [`RecordingStream::log`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.log) method +Notably, the [`RecordingStream::log`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.log) method + + -will handle any data type that implements the [`AsComponents`](https://ref.rerun.io/docs/rust/stable/rerun/trait.AsComponents.html) trait, making it easy to add your own data. +will handle any data type that implements the [`AsComponents`](https://docs.rs/rerun/latest/rerun/trait.AsComponents.html) trait, making it easy to add your own data. For more information on how to supply your own components see [Use custom data](../../howto/extend/custom-data.md). ### Entities & hierarchies @@ -261,7 +265,7 @@ for i in 0..400 { } ``` -First we use [`RecordingStream::set_time_seconds`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.set_time_seconds) to declare our own custom `Timeline` and set the current timestamp. +First we use [`RecordingStream::set_time_seconds`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.set_time_seconds) to declare our own custom `Timeline` and set the current timestamp. You can add as many timelines and timestamps as you want when logging data. ⚠️ If you run this code as is, the result will be.. surprising: the beads are animating as expected, but everything we've logged until that point is gone! ⚠️ @@ -330,7 +334,7 @@ Sometimes, sending the data over the network is not an option. Maybe you'd like Rerun has you covered: -- Use [`RecordingStream::save`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.save) to stream all logging data to disk. +- Use [`RecordingStream::save`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.save) to stream all logging data to disk. - Visualize it via `rerun path/to/recording.rrd` You can also save a recording (or a portion of it) as you're visualizing it, directly from the viewer. @@ -339,7 +343,7 @@ You can also save a recording (or a portion of it) as you're visualizing it, dir ### Spawning the Viewer from your process -If the Rerun Viewer is [installed](../installing-viewer.md) and available in your `PATH`, you can use [`RecordingStream::spawn`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.spawn) to automatically start a Viewer in a new process and connect to it over TCP. +If the Rerun Viewer is [installed](../installing-viewer.md) and available in your `PATH`, you can use [`RecordingStream::spawn`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.spawn) to automatically start a Viewer in a new process and connect to it over TCP. If an external Viewer was already running, `spawn` will connect to that one instead of spawning a new one. ```rust @@ -353,7 +357,7 @@ fn main() -> Result<(), Box> { } ``` -Alternatively, you can use [`rerun::native_viewer::show`](https://ref.rerun.io/docs/rust/stable/rerun/native_viewer/fn.show.html) to start a Viewer on the main thread (for platform-compatibility reasons) and feed it data from memory. +Alternatively, you can use [`rerun::native_viewer::show`](https://docs.rs/rerun/latest/rerun/native_viewer/fn.show.html) to start a Viewer on the main thread (for platform-compatibility reasons) and feed it data from memory. This requires the `native_viewer` feature to be enabled in `Cargo.toml`: ```toml diff --git a/docs/content/howto/logging/custom-data.md b/docs/content/howto/logging/custom-data.md index 6c14c80a47f4..8200fc88f701 100644 --- a/docs/content/howto/logging/custom-data.md +++ b/docs/content/howto/logging/custom-data.md @@ -16,7 +16,7 @@ rr.log( ) ``` -You can also create your own component by implementing the `AsComponents` [Python protocol](https://ref.rerun.io/docs/python/0.9.0/common/interfaces/#rerun.AsComponents) or [Rust trait](https://ref.rerun.io/docs/rust/stable/rerun/trait.AsComponents.html), which means implementing the function, `as_component_batches()`. +You can also create your own component by implementing the `AsComponents` [Python protocol](https://ref.rerun.io/docs/python/0.9.0/common/interfaces/#rerun.AsComponents) or [Rust trait](https://docs.rs/rerun/latest/rerun/trait.AsComponents.html), which means implementing the function, `as_component_batches()`. ## Remapping to a Rerun archetype Let's start with a simple example where you have your own point cloud class that is perfectly representable as a Rerun archetype. diff --git a/docs/content/howto/logging/send-columns.md b/docs/content/howto/logging/send-columns.md index 9f5860821b10..cef7745b253a 100644 --- a/docs/content/howto/logging/send-columns.md +++ b/docs/content/howto/logging/send-columns.md @@ -14,7 +14,7 @@ In contrast to the `log` function, `send_columns` does NOT add any other timelin API docs of `send_columns`: * [🌊 C++](https://ref.rerun.io/docs/cpp/stable/classrerun_1_1RecordingStream.html#ad17571d51185ce2fc2fc2f5c3070ad65) * [🐍 Python](https://ref.rerun.io/docs/python/stable/common/columnar_api/#rerun.send_columns) -* [🦀 Rust](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.send_columns) +* [🦀 Rust](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.send_columns) ### Using `send_columns` for logging scalars diff --git a/docs/content/howto/visualization/reuse-blueprints.md b/docs/content/howto/visualization/reuse-blueprints.md index 5c942faf6f95..4317e32cb4be 100644 --- a/docs/content/howto/visualization/reuse-blueprints.md +++ b/docs/content/howto/visualization/reuse-blueprints.md @@ -29,7 +29,7 @@ The interactive way is to import the blueprint file directly into the Rerun view The programmatic way works by calling `log_file_from_path`: * [🐍 Python `log_file_from_path`](https://ref.rerun.io/docs/python/stable/common/logging_functions/#rerun.log_file_from_path) -* [🦀 Rust `log_file_from_path`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.log_file_from_path) +* [🦀 Rust `log_file_from_path`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.log_file_from_path) * [🌊 C++ `log_file_from_path`](https://ref.rerun.io/docs/cpp/stable/classrerun_1_1RecordingStream.html#a20798d7ea74cce5c8174e5cacd0a2c47) This method allows you to log any file that contains data that Rerun understands (in this case, blueprint data) as part of your current recording: diff --git a/docs/content/reference/data-loaders/overview.md b/docs/content/reference/data-loaders/overview.md index dd6cb06b3fe9..8d99a890be41 100644 --- a/docs/content/reference/data-loaders/overview.md +++ b/docs/content/reference/data-loaders/overview.md @@ -35,7 +35,7 @@ The Rerun Viewer/SDK will then automatically load the data streamed to the exter Like any other `DataLoader`, an external loader will be notified of all file openings, unconditionally. -To indicate that it does not support a given file, the loader has to exit with a [dedicated status code](https://ref.rerun.io/docs/rust/stable/rerun/constant.EXTERNAL_DATA_LOADER_INCOMPATIBLE_EXIT_CODE.html). +To indicate that it does not support a given file, the loader has to exit with a [dedicated status code](https://docs.rs/rerun/latest/rerun/constant.EXTERNAL_DATA_LOADER_INCOMPATIBLE_EXIT_CODE.html). When the Viewer and/or SDK executes an external loader, it will pass to it a set of recommended settings in the form of CLI parameters (in addition to the file path to be loaded, which is passed as the one and only positional argument): diff --git a/docs/content/reference/dataframes.md b/docs/content/reference/dataframes.md index 1f810b7ad47a..a7cb2dd076de 100644 --- a/docs/content/reference/dataframes.md +++ b/docs/content/reference/dataframes.md @@ -6,7 +6,7 @@ order: 300 Rerun, at its core, is a database. As such, you can always get your data back in the form of tables (also known as dataframes, or records, or batches...). This can be achieved in three different ways, depending on your needs: -* using the dataframe API, currently available in [Python](https://ref.rerun.io/docs/python/stable/common/dataframe/) and [Rust](https://ref.rerun.io/docs/rust/stable/rerun/dataframe/index.html), +* using the dataframe API, currently available in [Python](https://ref.rerun.io/docs/python/stable/common/dataframe/) and [Rust](https://docs.rs/rerun/latest/rerun/dataframe/index.html), * using the [blueprint API](../concepts/blueprint.md) to configure a [dataframe view](types/views/dataframe_view.md) from code, * or simply by setting up [dataframe view](types/views/dataframe_view.md) manually in the UI. @@ -28,7 +28,7 @@ snippet: reference/dataframe_query Check out the API reference to learn more about all the ways that data can be searched and filtered: * [🐍 Python API reference](https://ref.rerun.io/docs/python/stable/common/dataframe/) * [Example](https://github.com/rerun-io/rerun/blob/c00a9f649fd4463f91620e8e2eac11355b245ac5/examples/python/dataframe_query/dataframe_query.py) -* [🦀 Rust API reference](https://ref.rerun.io/docs/rust/stable/rerun/dataframe/index.html) +* [🦀 Rust API reference](https://docs.rs/rerun/latest/rerun/dataframe/index.html) * [Example](https://github.com/rerun-io/rerun/blob/c00a9f649fd4463f91620e8e2eac11355b245ac5/examples/rust/dataframe_query/src/main.rs) @@ -61,7 +61,7 @@ snippet: reference/dataframe_view_query_external Check out the blueprint API and `log_file_from_path` references to learn more: * [🐍 Python blueprint API reference](https://ref.rerun.io/docs/python/stable/common/blueprint_apis/) * [🐍 Python `log_file_from_path`](https://ref.rerun.io/docs/python/stable/common/logging_functions/#rerun.log_file_from_path) -* [🦀 Rust `log_file_from_path`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.log_file_from_path) +* [🦀 Rust `log_file_from_path`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.log_file_from_path) * [🌊 C++ `log_file_from_path`](https://ref.rerun.io/docs/cpp/stable/classrerun_1_1RecordingStream.html#a20798d7ea74cce5c8174e5cacd0a2c47) You can learn more in our [dedicated page about blueprint re-use](../howto/visualization/reuse-blueprints.md). diff --git a/docs/content/reference/migration/migration-0-9.md b/docs/content/reference/migration/migration-0-9.md index 4cbb65370693..fb9749f08c48 100644 --- a/docs/content/reference/migration/migration-0-9.md +++ b/docs/content/reference/migration/migration-0-9.md @@ -245,21 +245,21 @@ Rust already used a more type oriented interface, so the changes are not as dras ## Removal of MsgSender -The biggest change that `MsgSender` is gone and all logging happens instead directly on the [`RecordingStream::RecordingStream`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html) -using its [`log`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.log) and [`RecordingStream::log_timeless`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.log_timeless) functions. +The biggest change that `MsgSender` is gone and all logging happens instead directly on the [`RecordingStream::RecordingStream`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html) +using its [`log`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.log) and [`RecordingStream::log_timeless`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.log_timeless) functions. ## Logging time -The new `log` function logs time implicitly. `log_time` and `log_tick` are always included, as well as any custom timeline set using [`RecordingStream::set_timepoint`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.set_timepoint), or one of the shorthands [`RecordingStream::set_time_sequence`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.set_time_sequence)/[`RecordingStream::set_time_seconds`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.set_time_seconds)/[`RecordingStream::set_time_nanos`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.set_time_nanos) +The new `log` function logs time implicitly. `log_time` and `log_tick` are always included, as well as any custom timeline set using [`RecordingStream::set_timepoint`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.set_timepoint), or one of the shorthands [`RecordingStream::set_time_sequence`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.set_time_sequence)/[`RecordingStream::set_time_seconds`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.set_time_seconds)/[`RecordingStream::set_time_nanos`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.set_time_nanos) ## Components -> archetypes -The new log messages consume any type that implements the [`AsComponents`](https://ref.rerun.io/docs/rust/stable/rerun/trait.AsComponents.html) trait -which is [implemented by](https://ref.rerun.io/docs/rust/stable/rerun/trait.AsComponents.html#implementors) all archetypes. +The new log messages consume any type that implements the [`AsComponents`](https://docs.rs/rerun/latest/rerun/trait.AsComponents.html) trait +which is [implemented by](https://docs.rs/rerun/latest/rerun/trait.AsComponents.html#implementors) all archetypes. All previously separately logged components have corresponding types and are used in one or more archetypes. See the respective API docs as well as the [Archetype Overview](../types/archetypes.md) to learn more and find self-contained code examples. -For continuing to log collections of components without implementing the [`AsComponents`](https://ref.rerun.io/docs/rust/stable/rerun/trait.AsComponents.html) trait, use [`RecordingStream::log_component_batches`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.log_component_batches) +For continuing to log collections of components without implementing the [`AsComponents`](https://docs.rs/rerun/latest/rerun/trait.AsComponents.html) trait, use [`RecordingStream::log_component_batches`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.log_component_batches) @@ -267,4 +267,4 @@ For continuing to log collections of components without implementing the [`AsCom Splatting is no longer done explicitly (before `MsgSender::splat`), but automatically inferred whenever there is a single component together with larger component batches on the same entity path. -See also [`RecordingStream::log_component_batches`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.log_component_batches) for more information. +See also [`RecordingStream::log_component_batches`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.log_component_batches) for more information. diff --git a/docs/content/reference/rust.md b/docs/content/reference/rust.md index 6523a1748d31..16ec9e4d616f 100644 --- a/docs/content/reference/rust.md +++ b/docs/content/reference/rust.md @@ -1,5 +1,5 @@ --- title: 🦀 Rust APIs order: 2200 -redirect: https://ref.rerun.io/docs/rust/stable +redirect: https://docs.rs/rerun/ --- diff --git a/docs/content/reference/sdk/operating-modes.md b/docs/content/reference/sdk/operating-modes.md index 470d01425333..cf6c729067ee 100644 --- a/docs/content/reference/sdk/operating-modes.md +++ b/docs/content/reference/sdk/operating-modes.md @@ -27,7 +27,7 @@ This is the default behavior you get when running all of our C++/Python/Rust exa Call [`rr.spawn`](https://ref.rerun.io/docs/python/stable/common/initialization_functions/#rerun.spawn) once at the start of your program to start a Rerun Viewer in an external process and stream all the data to it via TCP. If an external Viewer was already running, `spawn` will connect to that one instead of spawning a new one. #### Rust -[`RecordingStream::spawn`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.spawn) spawns a new Rerun Viewer process using an executable available in your PATH, then streams all the data to it via TCP. If an external Viewer was already running, `spawn` will connect to that one instead of spawning a new one. +[`RecordingStream::spawn`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.spawn) spawns a new Rerun Viewer process using an executable available in your PATH, then streams all the data to it via TCP. If an external Viewer was already running, `spawn` will connect to that one instead of spawning a new one. ### Connect @@ -43,7 +43,7 @@ You will need to start a stand-alone Viewer first by typing `rerun` in your term [`rr.connect`](https://ref.rerun.io/docs/python/stable/common/initialization_functions/#rerun.connect) #### Rust -[`RecordingStream::connect`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.connect) +[`RecordingStream::connect`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.connect) ### Serve @@ -57,7 +57,7 @@ Not available yet. Use [`rr.serve`](https://ref.rerun.io/docs/python/stable/common/initialization_functions/#rerun.serve). #### Rust -[`RecordingStream::serve`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.serve) +[`RecordingStream::serve`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.serve) ### Save @@ -75,7 +75,7 @@ Use `RecordingStream::save`. Use [`rr.save`](https://ref.rerun.io/docs/python/stable/common/initialization_functions/#rerun.save). #### Rust -Use [`RecordingStream::save`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.save). +Use [`RecordingStream::save`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.save). ### Standard Input/Output @@ -96,7 +96,7 @@ Check out our [dedicated example](https://github.com/rerun-io/rerun/tree/latest/ #### Rust -Use [`RecordingStream::stdout`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.stdout). +Use [`RecordingStream::stdout`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.stdout). Check out our [dedicated example](https://github.com/rerun-io/rerun/tree/latest/examples/rust/stdio/src/main.rs). @@ -106,6 +106,6 @@ Check out our [dedicated example](https://github.com/rerun-io/rerun/tree/latest/ We provide helpers for both Python & Rust to effortlessly add and properly handle all of these flags in your programs. - For Python, checkout the [`script_helpers`](https://ref.rerun.io/docs/python/stable/common/script_helpers/) module. -- For Rust, checkout our [`clap`]() [integration](https://ref.rerun.io/docs/rust/stable/rerun/clap/index.html). +- For Rust, checkout our [`clap`]() [integration](https://docs.rs/rerun/latest/rerun/clap/index.html). Have a look at the [official examples](/examples) to see these helpers in action. diff --git a/docs/content/reference/types/archetypes/annotation_context.md b/docs/content/reference/types/archetypes/annotation_context.md index 023a61e6c930..a9850dde6c0b 100644 --- a/docs/content/reference/types/archetypes/annotation_context.md +++ b/docs/content/reference/types/archetypes/annotation_context.md @@ -25,7 +25,7 @@ See also [`datatypes.ClassDescription`](https://rerun.io/docs/reference/types/da ## API reference links * 🌊 [C++ API docs for `AnnotationContext`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1AnnotationContext.html) * 🐍 [Python API docs for `AnnotationContext`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.AnnotationContext) - * 🦀 [Rust API docs for `AnnotationContext`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.AnnotationContext.html) + * 🦀 [Rust API docs for `AnnotationContext`](https://docs.rs/rerun/latest/rerun/archetypes/struct.AnnotationContext.html) ## Examples diff --git a/docs/content/reference/types/archetypes/arrows2d.md b/docs/content/reference/types/archetypes/arrows2d.md index d350ff87681a..40564b6514bc 100644 --- a/docs/content/reference/types/archetypes/arrows2d.md +++ b/docs/content/reference/types/archetypes/arrows2d.md @@ -21,7 +21,7 @@ title: "Arrows2D" ## API reference links * 🌊 [C++ API docs for `Arrows2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Arrows2D.html) * 🐍 [Python API docs for `Arrows2D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Arrows2D) - * 🦀 [Rust API docs for `Arrows2D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Arrows2D.html) + * 🦀 [Rust API docs for `Arrows2D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Arrows2D.html) ## Example diff --git a/docs/content/reference/types/archetypes/arrows3d.md b/docs/content/reference/types/archetypes/arrows3d.md index 67e693c55b76..937223f432ba 100644 --- a/docs/content/reference/types/archetypes/arrows3d.md +++ b/docs/content/reference/types/archetypes/arrows3d.md @@ -21,7 +21,7 @@ title: "Arrows3D" ## API reference links * 🌊 [C++ API docs for `Arrows3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Arrows3D.html) * 🐍 [Python API docs for `Arrows3D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Arrows3D) - * 🦀 [Rust API docs for `Arrows3D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Arrows3D.html) + * 🦀 [Rust API docs for `Arrows3D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Arrows3D.html) ## Example diff --git a/docs/content/reference/types/archetypes/asset3d.md b/docs/content/reference/types/archetypes/asset3d.md index 8dd4fe82124c..ed8b246601db 100644 --- a/docs/content/reference/types/archetypes/asset3d.md +++ b/docs/content/reference/types/archetypes/asset3d.md @@ -26,7 +26,7 @@ an instance of the mesh will be drawn for each transform. ## API reference links * 🌊 [C++ API docs for `Asset3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Asset3D.html) * 🐍 [Python API docs for `Asset3D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Asset3D) - * 🦀 [Rust API docs for `Asset3D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Asset3D.html) + * 🦀 [Rust API docs for `Asset3D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Asset3D.html) ## Example diff --git a/docs/content/reference/types/archetypes/asset_video.md b/docs/content/reference/types/archetypes/asset_video.md index a12d66864ac9..b2ffd51cc9ad 100644 --- a/docs/content/reference/types/archetypes/asset_video.md +++ b/docs/content/reference/types/archetypes/asset_video.md @@ -26,7 +26,7 @@ In order to display a video, you also need to log a [`archetypes.VideoFrameRefer ## API reference links * 🌊 [C++ API docs for `AssetVideo`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1AssetVideo.html) * 🐍 [Python API docs for `AssetVideo`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.AssetVideo) - * 🦀 [Rust API docs for `AssetVideo`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.AssetVideo.html) + * 🦀 [Rust API docs for `AssetVideo`](https://docs.rs/rerun/latest/rerun/archetypes/struct.AssetVideo.html) ## Examples diff --git a/docs/content/reference/types/archetypes/bar_chart.md b/docs/content/reference/types/archetypes/bar_chart.md index 838be7525f03..6f2e286bd923 100644 --- a/docs/content/reference/types/archetypes/bar_chart.md +++ b/docs/content/reference/types/archetypes/bar_chart.md @@ -20,7 +20,7 @@ The x values will be the indices of the array, and the bar heights will be the p ## API reference links * 🌊 [C++ API docs for `BarChart`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1BarChart.html) * 🐍 [Python API docs for `BarChart`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.BarChart) - * 🦀 [Rust API docs for `BarChart`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.BarChart.html) + * 🦀 [Rust API docs for `BarChart`](https://docs.rs/rerun/latest/rerun/archetypes/struct.BarChart.html) ## Example diff --git a/docs/content/reference/types/archetypes/boxes2d.md b/docs/content/reference/types/archetypes/boxes2d.md index 91f17ea320dc..c1b9c9c424e4 100644 --- a/docs/content/reference/types/archetypes/boxes2d.md +++ b/docs/content/reference/types/archetypes/boxes2d.md @@ -21,7 +21,7 @@ title: "Boxes2D" ## API reference links * 🌊 [C++ API docs for `Boxes2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Boxes2D.html) * 🐍 [Python API docs for `Boxes2D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Boxes2D) - * 🦀 [Rust API docs for `Boxes2D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Boxes2D.html) + * 🦀 [Rust API docs for `Boxes2D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Boxes2D.html) ## Example diff --git a/docs/content/reference/types/archetypes/boxes3d.md b/docs/content/reference/types/archetypes/boxes3d.md index 949d76c5d9f6..ef33d29fcfc2 100644 --- a/docs/content/reference/types/archetypes/boxes3d.md +++ b/docs/content/reference/types/archetypes/boxes3d.md @@ -25,7 +25,7 @@ If there's more instance poses than half sizes, the last half size will be repea ## API reference links * 🌊 [C++ API docs for `Boxes3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Boxes3D.html) * 🐍 [Python API docs for `Boxes3D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Boxes3D) - * 🦀 [Rust API docs for `Boxes3D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Boxes3D.html) + * 🦀 [Rust API docs for `Boxes3D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Boxes3D.html) ## Examples diff --git a/docs/content/reference/types/archetypes/capsules3d.md b/docs/content/reference/types/archetypes/capsules3d.md index f807fedf80c6..2e5bf57004b9 100644 --- a/docs/content/reference/types/archetypes/capsules3d.md +++ b/docs/content/reference/types/archetypes/capsules3d.md @@ -26,7 +26,7 @@ instances. ## API reference links * 🌊 [C++ API docs for `Capsules3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Capsules3D.html) * 🐍 [Python API docs for `Capsules3D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Capsules3D) - * 🦀 [Rust API docs for `Capsules3D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Capsules3D.html) + * 🦀 [Rust API docs for `Capsules3D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Capsules3D.html) ## Example diff --git a/docs/content/reference/types/archetypes/clear.md b/docs/content/reference/types/archetypes/clear.md index 970f2a473f43..476fcb56470b 100644 --- a/docs/content/reference/types/archetypes/clear.md +++ b/docs/content/reference/types/archetypes/clear.md @@ -28,7 +28,7 @@ data (i.e. discontinuous lines). ## API reference links * 🌊 [C++ API docs for `Clear`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Clear.html) * 🐍 [Python API docs for `Clear`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Clear) - * 🦀 [Rust API docs for `Clear`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Clear.html) + * 🦀 [Rust API docs for `Clear`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Clear.html) ## Examples diff --git a/docs/content/reference/types/archetypes/depth_image.md b/docs/content/reference/types/archetypes/depth_image.md index 968aa46d8bfd..6a0d62afe6c0 100644 --- a/docs/content/reference/types/archetypes/depth_image.md +++ b/docs/content/reference/types/archetypes/depth_image.md @@ -21,7 +21,7 @@ Each pixel corresponds to a depth value in units specified by [`components.Depth ## API reference links * 🌊 [C++ API docs for `DepthImage`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1DepthImage.html) * 🐍 [Python API docs for `DepthImage`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.DepthImage) - * 🦀 [Rust API docs for `DepthImage`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.DepthImage.html) + * 🦀 [Rust API docs for `DepthImage`](https://docs.rs/rerun/latest/rerun/archetypes/struct.DepthImage.html) ## Examples diff --git a/docs/content/reference/types/archetypes/disconnected_space.md b/docs/content/reference/types/archetypes/disconnected_space.md index b0fd6dafe308..eacd122ed166 100644 --- a/docs/content/reference/types/archetypes/disconnected_space.md +++ b/docs/content/reference/types/archetypes/disconnected_space.md @@ -22,7 +22,7 @@ This is useful for specifying that a subgraph is independent of the rest of the ## API reference links * 🌊 [C++ API docs for `DisconnectedSpace`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1DisconnectedSpace.html) * 🐍 [Python API docs for `DisconnectedSpace`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.DisconnectedSpace) - * 🦀 [Rust API docs for `DisconnectedSpace`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.DisconnectedSpace.html) + * 🦀 [Rust API docs for `DisconnectedSpace`](https://docs.rs/rerun/latest/rerun/archetypes/struct.DisconnectedSpace.html) ## Example diff --git a/docs/content/reference/types/archetypes/ellipsoids3d.md b/docs/content/reference/types/archetypes/ellipsoids3d.md index 3064d2c53db5..faeaba7a7b94 100644 --- a/docs/content/reference/types/archetypes/ellipsoids3d.md +++ b/docs/content/reference/types/archetypes/ellipsoids3d.md @@ -29,7 +29,7 @@ If there's more instance poses than half sizes, the last half size will be repea ## API reference links * 🌊 [C++ API docs for `Ellipsoids3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Ellipsoids3D.html) * 🐍 [Python API docs for `Ellipsoids3D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Ellipsoids3D) - * 🦀 [Rust API docs for `Ellipsoids3D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Ellipsoids3D.html) + * 🦀 [Rust API docs for `Ellipsoids3D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Ellipsoids3D.html) ## Example diff --git a/docs/content/reference/types/archetypes/encoded_image.md b/docs/content/reference/types/archetypes/encoded_image.md index 155a7a5f5d52..48b3edd7669c 100644 --- a/docs/content/reference/types/archetypes/encoded_image.md +++ b/docs/content/reference/types/archetypes/encoded_image.md @@ -24,7 +24,7 @@ For images that refer to video frames see [`archetypes.VideoFrameReference`](htt ## API reference links * 🌊 [C++ API docs for `EncodedImage`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1EncodedImage.html) * 🐍 [Python API docs for `EncodedImage`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.EncodedImage) - * 🦀 [Rust API docs for `EncodedImage`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.EncodedImage.html) + * 🦀 [Rust API docs for `EncodedImage`](https://docs.rs/rerun/latest/rerun/archetypes/struct.EncodedImage.html) ## Example diff --git a/docs/content/reference/types/archetypes/geo_line_strings.md b/docs/content/reference/types/archetypes/geo_line_strings.md index 71fe45a8cfd7..e6c316e5be05 100644 --- a/docs/content/reference/types/archetypes/geo_line_strings.md +++ b/docs/content/reference/types/archetypes/geo_line_strings.md @@ -20,7 +20,7 @@ Also known as "line strips" or "polylines". ## API reference links * 🌊 [C++ API docs for `GeoLineStrings`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1GeoLineStrings.html) * 🐍 [Python API docs for `GeoLineStrings`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.GeoLineStrings) - * 🦀 [Rust API docs for `GeoLineStrings`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.GeoLineStrings.html) + * 🦀 [Rust API docs for `GeoLineStrings`](https://docs.rs/rerun/latest/rerun/archetypes/struct.GeoLineStrings.html) ## Example diff --git a/docs/content/reference/types/archetypes/geo_points.md b/docs/content/reference/types/archetypes/geo_points.md index c006861e6eae..866f074b0903 100644 --- a/docs/content/reference/types/archetypes/geo_points.md +++ b/docs/content/reference/types/archetypes/geo_points.md @@ -20,7 +20,7 @@ Geospatial points with positions expressed in [EPSG:4326](https://epsg.io/4326) ## API reference links * 🌊 [C++ API docs for `GeoPoints`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1GeoPoints.html) * 🐍 [Python API docs for `GeoPoints`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.GeoPoints) - * 🦀 [Rust API docs for `GeoPoints`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.GeoPoints.html) + * 🦀 [Rust API docs for `GeoPoints`](https://docs.rs/rerun/latest/rerun/archetypes/struct.GeoPoints.html) ## Example diff --git a/docs/content/reference/types/archetypes/image.md b/docs/content/reference/types/archetypes/image.md index fcdd6d487889..f278721593b9 100644 --- a/docs/content/reference/types/archetypes/image.md +++ b/docs/content/reference/types/archetypes/image.md @@ -32,7 +32,7 @@ row-major, interleaved-pixel image format. ## API reference links * 🌊 [C++ API docs for `Image`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Image.html) * 🐍 [Python API docs for `Image`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Image) - * 🦀 [Rust API docs for `Image`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Image.html) + * 🦀 [Rust API docs for `Image`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Image.html) ## Examples diff --git a/docs/content/reference/types/archetypes/instance_poses3d.md b/docs/content/reference/types/archetypes/instance_poses3d.md index 7d970c26a84b..99ceac0f1243 100644 --- a/docs/content/reference/types/archetypes/instance_poses3d.md +++ b/docs/content/reference/types/archetypes/instance_poses3d.md @@ -30,7 +30,7 @@ will draw an object for every pose, a behavior also known as "instancing". ## API reference links * 🌊 [C++ API docs for `InstancePoses3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1InstancePoses3D.html) * 🐍 [Python API docs for `InstancePoses3D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.InstancePoses3D) - * 🦀 [Rust API docs for `InstancePoses3D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.InstancePoses3D.html) + * 🦀 [Rust API docs for `InstancePoses3D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.InstancePoses3D.html) ## Examples diff --git a/docs/content/reference/types/archetypes/line_strips2d.md b/docs/content/reference/types/archetypes/line_strips2d.md index c44849dd3b44..dde4074a399d 100644 --- a/docs/content/reference/types/archetypes/line_strips2d.md +++ b/docs/content/reference/types/archetypes/line_strips2d.md @@ -21,7 +21,7 @@ title: "LineStrips2D" ## API reference links * 🌊 [C++ API docs for `LineStrips2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1LineStrips2D.html) * 🐍 [Python API docs for `LineStrips2D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.LineStrips2D) - * 🦀 [Rust API docs for `LineStrips2D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.LineStrips2D.html) + * 🦀 [Rust API docs for `LineStrips2D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.LineStrips2D.html) ## Examples diff --git a/docs/content/reference/types/archetypes/line_strips3d.md b/docs/content/reference/types/archetypes/line_strips3d.md index 6ac56e362f82..ab9c01704820 100644 --- a/docs/content/reference/types/archetypes/line_strips3d.md +++ b/docs/content/reference/types/archetypes/line_strips3d.md @@ -21,7 +21,7 @@ title: "LineStrips3D" ## API reference links * 🌊 [C++ API docs for `LineStrips3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1LineStrips3D.html) * 🐍 [Python API docs for `LineStrips3D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.LineStrips3D) - * 🦀 [Rust API docs for `LineStrips3D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.LineStrips3D.html) + * 🦀 [Rust API docs for `LineStrips3D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.LineStrips3D.html) ## Examples diff --git a/docs/content/reference/types/archetypes/mesh3d.md b/docs/content/reference/types/archetypes/mesh3d.md index e6caa20f4a60..3546920a0238 100644 --- a/docs/content/reference/types/archetypes/mesh3d.md +++ b/docs/content/reference/types/archetypes/mesh3d.md @@ -26,7 +26,7 @@ an instance of the mesh will be drawn for each transform. ## API reference links * 🌊 [C++ API docs for `Mesh3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Mesh3D.html) * 🐍 [Python API docs for `Mesh3D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Mesh3D) - * 🦀 [Rust API docs for `Mesh3D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Mesh3D.html) + * 🦀 [Rust API docs for `Mesh3D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Mesh3D.html) ## Examples diff --git a/docs/content/reference/types/archetypes/pinhole.md b/docs/content/reference/types/archetypes/pinhole.md index aa5702863e1a..06a456ba5c46 100644 --- a/docs/content/reference/types/archetypes/pinhole.md +++ b/docs/content/reference/types/archetypes/pinhole.md @@ -21,7 +21,7 @@ Camera perspective projection (a.k.a. intrinsics). ## API reference links * 🌊 [C++ API docs for `Pinhole`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Pinhole.html) * 🐍 [Python API docs for `Pinhole`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Pinhole) - * 🦀 [Rust API docs for `Pinhole`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Pinhole.html) + * 🦀 [Rust API docs for `Pinhole`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Pinhole.html) ## Examples diff --git a/docs/content/reference/types/archetypes/points2d.md b/docs/content/reference/types/archetypes/points2d.md index 81a977ba65c3..69395fd5fa0b 100644 --- a/docs/content/reference/types/archetypes/points2d.md +++ b/docs/content/reference/types/archetypes/points2d.md @@ -21,7 +21,7 @@ A 2D point cloud with positions and optional colors, radii, labels, etc. ## API reference links * 🌊 [C++ API docs for `Points2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Points2D.html) * 🐍 [Python API docs for `Points2D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Points2D) - * 🦀 [Rust API docs for `Points2D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Points2D.html) + * 🦀 [Rust API docs for `Points2D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Points2D.html) ## Examples diff --git a/docs/content/reference/types/archetypes/points3d.md b/docs/content/reference/types/archetypes/points3d.md index f367a24d355f..6b83466c7381 100644 --- a/docs/content/reference/types/archetypes/points3d.md +++ b/docs/content/reference/types/archetypes/points3d.md @@ -21,7 +21,7 @@ A 3D point cloud with positions and optional colors, radii, labels, etc. ## API reference links * 🌊 [C++ API docs for `Points3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Points3D.html) * 🐍 [Python API docs for `Points3D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Points3D) - * 🦀 [Rust API docs for `Points3D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Points3D.html) + * 🦀 [Rust API docs for `Points3D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Points3D.html) ## Examples diff --git a/docs/content/reference/types/archetypes/scalar.md b/docs/content/reference/types/archetypes/scalar.md index ec4a528d3dde..b75e7960f4a0 100644 --- a/docs/content/reference/types/archetypes/scalar.md +++ b/docs/content/reference/types/archetypes/scalar.md @@ -24,7 +24,7 @@ the plot-specific archetypes through the blueprint. ## API reference links * 🌊 [C++ API docs for `Scalar`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Scalar.html) * 🐍 [Python API docs for `Scalar`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Scalar) - * 🦀 [Rust API docs for `Scalar`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Scalar.html) + * 🦀 [Rust API docs for `Scalar`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Scalar.html) ## Examples diff --git a/docs/content/reference/types/archetypes/segmentation_image.md b/docs/content/reference/types/archetypes/segmentation_image.md index bd607a7a135d..d6fd1a5c1543 100644 --- a/docs/content/reference/types/archetypes/segmentation_image.md +++ b/docs/content/reference/types/archetypes/segmentation_image.md @@ -26,7 +26,7 @@ See also [`archetypes.AnnotationContext`](https://rerun.io/docs/reference/types/ ## API reference links * 🌊 [C++ API docs for `SegmentationImage`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1SegmentationImage.html) * 🐍 [Python API docs for `SegmentationImage`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.SegmentationImage) - * 🦀 [Rust API docs for `SegmentationImage`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.SegmentationImage.html) + * 🦀 [Rust API docs for `SegmentationImage`](https://docs.rs/rerun/latest/rerun/archetypes/struct.SegmentationImage.html) ## Example diff --git a/docs/content/reference/types/archetypes/series_line.md b/docs/content/reference/types/archetypes/series_line.md index a87f6374f5f0..a35379f1b8e9 100644 --- a/docs/content/reference/types/archetypes/series_line.md +++ b/docs/content/reference/types/archetypes/series_line.md @@ -20,7 +20,7 @@ when possible. The underlying data needs to be logged to the same entity-path us ## API reference links * 🌊 [C++ API docs for `SeriesLine`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1SeriesLine.html) * 🐍 [Python API docs for `SeriesLine`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.SeriesLine) - * 🦀 [Rust API docs for `SeriesLine`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.SeriesLine.html) + * 🦀 [Rust API docs for `SeriesLine`](https://docs.rs/rerun/latest/rerun/archetypes/struct.SeriesLine.html) ## Example diff --git a/docs/content/reference/types/archetypes/series_point.md b/docs/content/reference/types/archetypes/series_point.md index 7b322940406b..c2163b8e2638 100644 --- a/docs/content/reference/types/archetypes/series_point.md +++ b/docs/content/reference/types/archetypes/series_point.md @@ -20,7 +20,7 @@ when possible. The underlying data needs to be logged to the same entity-path us ## API reference links * 🌊 [C++ API docs for `SeriesPoint`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1SeriesPoint.html) * 🐍 [Python API docs for `SeriesPoint`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.SeriesPoint) - * 🦀 [Rust API docs for `SeriesPoint`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.SeriesPoint.html) + * 🦀 [Rust API docs for `SeriesPoint`](https://docs.rs/rerun/latest/rerun/archetypes/struct.SeriesPoint.html) ## Example diff --git a/docs/content/reference/types/archetypes/tensor.md b/docs/content/reference/types/archetypes/tensor.md index 5ee9aa69c255..7e25161887e2 100644 --- a/docs/content/reference/types/archetypes/tensor.md +++ b/docs/content/reference/types/archetypes/tensor.md @@ -19,7 +19,7 @@ An N-dimensional array of numbers. ## API reference links * 🌊 [C++ API docs for `Tensor`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Tensor.html) * 🐍 [Python API docs for `Tensor`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Tensor) - * 🦀 [Rust API docs for `Tensor`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Tensor.html) + * 🦀 [Rust API docs for `Tensor`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Tensor.html) ## Example diff --git a/docs/content/reference/types/archetypes/text_document.md b/docs/content/reference/types/archetypes/text_document.md index 3dbc01742c2b..e7b481d14b6f 100644 --- a/docs/content/reference/types/archetypes/text_document.md +++ b/docs/content/reference/types/archetypes/text_document.md @@ -20,7 +20,7 @@ Supports raw text and markdown. ## API reference links * 🌊 [C++ API docs for `TextDocument`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1TextDocument.html) * 🐍 [Python API docs for `TextDocument`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.TextDocument) - * 🦀 [Rust API docs for `TextDocument`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.TextDocument.html) + * 🦀 [Rust API docs for `TextDocument`](https://docs.rs/rerun/latest/rerun/archetypes/struct.TextDocument.html) ## Example diff --git a/docs/content/reference/types/archetypes/text_log.md b/docs/content/reference/types/archetypes/text_log.md index 5dd35b820968..96ce9f014dca 100644 --- a/docs/content/reference/types/archetypes/text_log.md +++ b/docs/content/reference/types/archetypes/text_log.md @@ -20,7 +20,7 @@ A log entry in a text log, comprised of a text body and its log level. ## API reference links * 🌊 [C++ API docs for `TextLog`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1TextLog.html) * 🐍 [Python API docs for `TextLog`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.TextLog) - * 🦀 [Rust API docs for `TextLog`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.TextLog.html) + * 🦀 [Rust API docs for `TextLog`](https://docs.rs/rerun/latest/rerun/archetypes/struct.TextLog.html) ## Example diff --git a/docs/content/reference/types/archetypes/transform3d.md b/docs/content/reference/types/archetypes/transform3d.md index 7e87ebf49407..a1214398179d 100644 --- a/docs/content/reference/types/archetypes/transform3d.md +++ b/docs/content/reference/types/archetypes/transform3d.md @@ -28,7 +28,7 @@ For transforms that affect only a single entity and do not propagate along the e ## API reference links * 🌊 [C++ API docs for `Transform3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1Transform3D.html) * 🐍 [Python API docs for `Transform3D`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.Transform3D) - * 🦀 [Rust API docs for `Transform3D`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.Transform3D.html) + * 🦀 [Rust API docs for `Transform3D`](https://docs.rs/rerun/latest/rerun/archetypes/struct.Transform3D.html) ## Examples diff --git a/docs/content/reference/types/archetypes/video_frame_reference.md b/docs/content/reference/types/archetypes/video_frame_reference.md index c7813fa75b77..310c18af65e2 100644 --- a/docs/content/reference/types/archetypes/video_frame_reference.md +++ b/docs/content/reference/types/archetypes/video_frame_reference.md @@ -24,7 +24,7 @@ See for details of what is and isn't sup ## API reference links * 🌊 [C++ API docs for `VideoFrameReference`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1VideoFrameReference.html) * 🐍 [Python API docs for `VideoFrameReference`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.VideoFrameReference) - * 🦀 [Rust API docs for `VideoFrameReference`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.VideoFrameReference.html) + * 🦀 [Rust API docs for `VideoFrameReference`](https://docs.rs/rerun/latest/rerun/archetypes/struct.VideoFrameReference.html) ## Examples diff --git a/docs/content/reference/types/archetypes/view_coordinates.md b/docs/content/reference/types/archetypes/view_coordinates.md index b378bf17bc7d..544fd552f529 100644 --- a/docs/content/reference/types/archetypes/view_coordinates.md +++ b/docs/content/reference/types/archetypes/view_coordinates.md @@ -27,7 +27,7 @@ Make sure that this archetype is logged at or above the origin entity path of yo ## API reference links * 🌊 [C++ API docs for `ViewCoordinates`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1archetypes_1_1ViewCoordinates.html) * 🐍 [Python API docs for `ViewCoordinates`](https://ref.rerun.io/docs/python/stable/common/archetypes#rerun.archetypes.ViewCoordinates) - * 🦀 [Rust API docs for `ViewCoordinates`](https://ref.rerun.io/docs/rust/stable/rerun/archetypes/struct.ViewCoordinates.html) + * 🦀 [Rust API docs for `ViewCoordinates`](https://docs.rs/rerun/latest/rerun/archetypes/struct.ViewCoordinates.html) ## Example diff --git a/docs/content/reference/types/components/aggregation_policy.md b/docs/content/reference/types/components/aggregation_policy.md index 25289d088dc5..108c3aee615e 100644 --- a/docs/content/reference/types/components/aggregation_policy.md +++ b/docs/content/reference/types/components/aggregation_policy.md @@ -39,7 +39,7 @@ uint8 ## API reference links * 🌊 [C++ API docs for `AggregationPolicy`](https://ref.rerun.io/docs/cpp/stable/namespacererun_1_1components.html) * 🐍 [Python API docs for `AggregationPolicy`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.AggregationPolicy) - * 🦀 [Rust API docs for `AggregationPolicy`](https://ref.rerun.io/docs/rust/stable/rerun/components/enum.AggregationPolicy.html) + * 🦀 [Rust API docs for `AggregationPolicy`](https://docs.rs/rerun/latest/rerun/components/enum.AggregationPolicy.html) ## Used by diff --git a/docs/content/reference/types/components/albedo_factor.md b/docs/content/reference/types/components/albedo_factor.md index b33c65114124..620ebf98f388 100644 --- a/docs/content/reference/types/components/albedo_factor.md +++ b/docs/content/reference/types/components/albedo_factor.md @@ -17,7 +17,7 @@ uint32 ## API reference links * 🌊 [C++ API docs for `AlbedoFactor`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1AlbedoFactor.html) * 🐍 [Python API docs for `AlbedoFactor`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.AlbedoFactor) - * 🦀 [Rust API docs for `AlbedoFactor`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.AlbedoFactor.html) + * 🦀 [Rust API docs for `AlbedoFactor`](https://docs.rs/rerun/latest/rerun/components/struct.AlbedoFactor.html) ## Used by diff --git a/docs/content/reference/types/components/annotation_context.md b/docs/content/reference/types/components/annotation_context.md index 5edfad354652..eb4402d89374 100644 --- a/docs/content/reference/types/components/annotation_context.md +++ b/docs/content/reference/types/components/annotation_context.md @@ -38,7 +38,7 @@ List ## API reference links * 🌊 [C++ API docs for `Blob`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Blob.html) * 🐍 [Python API docs for `Blob`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Blob) - * 🦀 [Rust API docs for `Blob`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Blob.html) + * 🦀 [Rust API docs for `Blob`](https://docs.rs/rerun/latest/rerun/components/struct.Blob.html) ## Used by diff --git a/docs/content/reference/types/components/class_id.md b/docs/content/reference/types/components/class_id.md index fc4e8e0ab290..a808c474cdb2 100644 --- a/docs/content/reference/types/components/class_id.md +++ b/docs/content/reference/types/components/class_id.md @@ -17,7 +17,7 @@ uint16 ## API reference links * 🌊 [C++ API docs for `ClassId`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1ClassId.html) * 🐍 [Python API docs for `ClassId`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.ClassId) - * 🦀 [Rust API docs for `ClassId`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.ClassId.html) + * 🦀 [Rust API docs for `ClassId`](https://docs.rs/rerun/latest/rerun/components/struct.ClassId.html) ## Used by diff --git a/docs/content/reference/types/components/clear_is_recursive.md b/docs/content/reference/types/components/clear_is_recursive.md index b649b15a8fde..ef8b8e2d8117 100644 --- a/docs/content/reference/types/components/clear_is_recursive.md +++ b/docs/content/reference/types/components/clear_is_recursive.md @@ -17,7 +17,7 @@ boolean ## API reference links * 🌊 [C++ API docs for `ClearIsRecursive`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1ClearIsRecursive.html) * 🐍 [Python API docs for `ClearIsRecursive`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.ClearIsRecursive) - * 🦀 [Rust API docs for `ClearIsRecursive`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.ClearIsRecursive.html) + * 🦀 [Rust API docs for `ClearIsRecursive`](https://docs.rs/rerun/latest/rerun/components/struct.ClearIsRecursive.html) ## Used by diff --git a/docs/content/reference/types/components/color.md b/docs/content/reference/types/components/color.md index 465fbcb4b752..32fcd7eb4c97 100644 --- a/docs/content/reference/types/components/color.md +++ b/docs/content/reference/types/components/color.md @@ -20,7 +20,7 @@ uint32 ## API reference links * 🌊 [C++ API docs for `Color`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Color.html) * 🐍 [Python API docs for `Color`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Color) - * 🦀 [Rust API docs for `Color`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Color.html) + * 🦀 [Rust API docs for `Color`](https://docs.rs/rerun/latest/rerun/components/struct.Color.html) ## Used by diff --git a/docs/content/reference/types/components/colormap.md b/docs/content/reference/types/components/colormap.md index 31c6e8558057..70de09de6056 100644 --- a/docs/content/reference/types/components/colormap.md +++ b/docs/content/reference/types/components/colormap.md @@ -63,7 +63,7 @@ uint8 ## API reference links * 🌊 [C++ API docs for `Colormap`](https://ref.rerun.io/docs/cpp/stable/namespacererun_1_1components.html) * 🐍 [Python API docs for `Colormap`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Colormap) - * 🦀 [Rust API docs for `Colormap`](https://ref.rerun.io/docs/rust/stable/rerun/components/enum.Colormap.html) + * 🦀 [Rust API docs for `Colormap`](https://docs.rs/rerun/latest/rerun/components/enum.Colormap.html) ## Used by diff --git a/docs/content/reference/types/components/depth_meter.md b/docs/content/reference/types/components/depth_meter.md index cbf311a5017e..1d538ae6a479 100644 --- a/docs/content/reference/types/components/depth_meter.md +++ b/docs/content/reference/types/components/depth_meter.md @@ -24,7 +24,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `DepthMeter`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1DepthMeter.html) * 🐍 [Python API docs for `DepthMeter`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.DepthMeter) - * 🦀 [Rust API docs for `DepthMeter`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.DepthMeter.html) + * 🦀 [Rust API docs for `DepthMeter`](https://docs.rs/rerun/latest/rerun/components/struct.DepthMeter.html) ## Used by diff --git a/docs/content/reference/types/components/disconnected_space.md b/docs/content/reference/types/components/disconnected_space.md index ca5a795e536b..4f7f472db1ce 100644 --- a/docs/content/reference/types/components/disconnected_space.md +++ b/docs/content/reference/types/components/disconnected_space.md @@ -22,7 +22,7 @@ boolean ## API reference links * 🌊 [C++ API docs for `DisconnectedSpace`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1DisconnectedSpace.html) * 🐍 [Python API docs for `DisconnectedSpace`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.DisconnectedSpace) - * 🦀 [Rust API docs for `DisconnectedSpace`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.DisconnectedSpace.html) + * 🦀 [Rust API docs for `DisconnectedSpace`](https://docs.rs/rerun/latest/rerun/components/struct.DisconnectedSpace.html) ## Used by diff --git a/docs/content/reference/types/components/draw_order.md b/docs/content/reference/types/components/draw_order.md index 5795701856fe..deb5c0213ce7 100644 --- a/docs/content/reference/types/components/draw_order.md +++ b/docs/content/reference/types/components/draw_order.md @@ -22,7 +22,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `DrawOrder`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1DrawOrder.html) * 🐍 [Python API docs for `DrawOrder`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.DrawOrder) - * 🦀 [Rust API docs for `DrawOrder`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.DrawOrder.html) + * 🦀 [Rust API docs for `DrawOrder`](https://docs.rs/rerun/latest/rerun/components/struct.DrawOrder.html) ## Used by diff --git a/docs/content/reference/types/components/entity_path.md b/docs/content/reference/types/components/entity_path.md index 23c1a9eac1a8..fd781a032d82 100644 --- a/docs/content/reference/types/components/entity_path.md +++ b/docs/content/reference/types/components/entity_path.md @@ -17,7 +17,7 @@ utf8 ## API reference links * 🌊 [C++ API docs for `EntityPath`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1EntityPath.html) * 🐍 [Python API docs for `EntityPath`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.EntityPath) - * 🦀 [Rust API docs for `EntityPath`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.EntityPath.html) + * 🦀 [Rust API docs for `EntityPath`](https://docs.rs/rerun/latest/rerun/components/struct.EntityPath.html) ## Used by diff --git a/docs/content/reference/types/components/fill_mode.md b/docs/content/reference/types/components/fill_mode.md index 6782e4d7b968..f95ed3ac01a6 100644 --- a/docs/content/reference/types/components/fill_mode.md +++ b/docs/content/reference/types/components/fill_mode.md @@ -36,7 +36,7 @@ uint8 ## API reference links * 🌊 [C++ API docs for `FillMode`](https://ref.rerun.io/docs/cpp/stable/namespacererun_1_1components.html) * 🐍 [Python API docs for `FillMode`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.FillMode) - * 🦀 [Rust API docs for `FillMode`](https://ref.rerun.io/docs/rust/stable/rerun/components/enum.FillMode.html) + * 🦀 [Rust API docs for `FillMode`](https://docs.rs/rerun/latest/rerun/components/enum.FillMode.html) ## Used by diff --git a/docs/content/reference/types/components/fill_ratio.md b/docs/content/reference/types/components/fill_ratio.md index 344b08d00f82..e9a14ea74a22 100644 --- a/docs/content/reference/types/components/fill_ratio.md +++ b/docs/content/reference/types/components/fill_ratio.md @@ -22,7 +22,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `FillRatio`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1FillRatio.html) * 🐍 [Python API docs for `FillRatio`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.FillRatio) - * 🦀 [Rust API docs for `FillRatio`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.FillRatio.html) + * 🦀 [Rust API docs for `FillRatio`](https://docs.rs/rerun/latest/rerun/components/struct.FillRatio.html) ## Used by diff --git a/docs/content/reference/types/components/gamma_correction.md b/docs/content/reference/types/components/gamma_correction.md index 4d1c3a63f195..18465ef0e832 100644 --- a/docs/content/reference/types/components/gamma_correction.md +++ b/docs/content/reference/types/components/gamma_correction.md @@ -23,6 +23,6 @@ float32 ## API reference links * 🌊 [C++ API docs for `GammaCorrection`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1GammaCorrection.html) * 🐍 [Python API docs for `GammaCorrection`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.GammaCorrection) - * 🦀 [Rust API docs for `GammaCorrection`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.GammaCorrection.html) + * 🦀 [Rust API docs for `GammaCorrection`](https://docs.rs/rerun/latest/rerun/components/struct.GammaCorrection.html) diff --git a/docs/content/reference/types/components/geo_line_string.md b/docs/content/reference/types/components/geo_line_string.md index 683149faa231..b56e6aa435c6 100644 --- a/docs/content/reference/types/components/geo_line_string.md +++ b/docs/content/reference/types/components/geo_line_string.md @@ -14,7 +14,7 @@ List> ## API reference links * 🌊 [C++ API docs for `GeoLineString`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1GeoLineString.html) * 🐍 [Python API docs for `GeoLineString`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.GeoLineString) - * 🦀 [Rust API docs for `GeoLineString`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.GeoLineString.html) + * 🦀 [Rust API docs for `GeoLineString`](https://docs.rs/rerun/latest/rerun/components/struct.GeoLineString.html) ## Used by diff --git a/docs/content/reference/types/components/half_size2d.md b/docs/content/reference/types/components/half_size2d.md index ebcfa20828b8..d62d8ced89ee 100644 --- a/docs/content/reference/types/components/half_size2d.md +++ b/docs/content/reference/types/components/half_size2d.md @@ -22,7 +22,7 @@ FixedSizeList<2, float32> ## API reference links * 🌊 [C++ API docs for `HalfSize2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1HalfSize2D.html) * 🐍 [Python API docs for `HalfSize2D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.HalfSize2D) - * 🦀 [Rust API docs for `HalfSize2D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.HalfSize2D.html) + * 🦀 [Rust API docs for `HalfSize2D`](https://docs.rs/rerun/latest/rerun/components/struct.HalfSize2D.html) ## Used by diff --git a/docs/content/reference/types/components/half_size3d.md b/docs/content/reference/types/components/half_size3d.md index 2bdb5e67c663..4d155a50f776 100644 --- a/docs/content/reference/types/components/half_size3d.md +++ b/docs/content/reference/types/components/half_size3d.md @@ -22,7 +22,7 @@ FixedSizeList<3, float32> ## API reference links * 🌊 [C++ API docs for `HalfSize3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1HalfSize3D.html) * 🐍 [Python API docs for `HalfSize3D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.HalfSize3D) - * 🦀 [Rust API docs for `HalfSize3D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.HalfSize3D.html) + * 🦀 [Rust API docs for `HalfSize3D`](https://docs.rs/rerun/latest/rerun/components/struct.HalfSize3D.html) ## Used by diff --git a/docs/content/reference/types/components/image_buffer.md b/docs/content/reference/types/components/image_buffer.md index 73a4232eab0e..b8c63d1ea96c 100644 --- a/docs/content/reference/types/components/image_buffer.md +++ b/docs/content/reference/types/components/image_buffer.md @@ -19,7 +19,7 @@ List ## API reference links * 🌊 [C++ API docs for `ImageBuffer`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1ImageBuffer.html) * 🐍 [Python API docs for `ImageBuffer`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.ImageBuffer) - * 🦀 [Rust API docs for `ImageBuffer`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.ImageBuffer.html) + * 🦀 [Rust API docs for `ImageBuffer`](https://docs.rs/rerun/latest/rerun/components/struct.ImageBuffer.html) ## Used by diff --git a/docs/content/reference/types/components/image_format.md b/docs/content/reference/types/components/image_format.md index 496c115dae79..da3a4c0cb844 100644 --- a/docs/content/reference/types/components/image_format.md +++ b/docs/content/reference/types/components/image_format.md @@ -23,7 +23,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `ImageFormat`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1ImageFormat.html) * 🐍 [Python API docs for `ImageFormat`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.ImageFormat) - * 🦀 [Rust API docs for `ImageFormat`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.ImageFormat.html) + * 🦀 [Rust API docs for `ImageFormat`](https://docs.rs/rerun/latest/rerun/components/struct.ImageFormat.html) ## Used by diff --git a/docs/content/reference/types/components/image_plane_distance.md b/docs/content/reference/types/components/image_plane_distance.md index 92b22f030769..913f703a6758 100644 --- a/docs/content/reference/types/components/image_plane_distance.md +++ b/docs/content/reference/types/components/image_plane_distance.md @@ -19,7 +19,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `ImagePlaneDistance`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1ImagePlaneDistance.html) * 🐍 [Python API docs for `ImagePlaneDistance`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.ImagePlaneDistance) - * 🦀 [Rust API docs for `ImagePlaneDistance`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.ImagePlaneDistance.html) + * 🦀 [Rust API docs for `ImagePlaneDistance`](https://docs.rs/rerun/latest/rerun/components/struct.ImagePlaneDistance.html) ## Used by diff --git a/docs/content/reference/types/components/keypoint_id.md b/docs/content/reference/types/components/keypoint_id.md index e26cd7431f50..8d405c519827 100644 --- a/docs/content/reference/types/components/keypoint_id.md +++ b/docs/content/reference/types/components/keypoint_id.md @@ -17,7 +17,7 @@ uint16 ## API reference links * 🌊 [C++ API docs for `KeypointId`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1KeypointId.html) * 🐍 [Python API docs for `KeypointId`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.KeypointId) - * 🦀 [Rust API docs for `KeypointId`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.KeypointId.html) + * 🦀 [Rust API docs for `KeypointId`](https://docs.rs/rerun/latest/rerun/components/struct.KeypointId.html) ## Used by diff --git a/docs/content/reference/types/components/lat_lon.md b/docs/content/reference/types/components/lat_lon.md index e1b1976f58d8..c99770a309fd 100644 --- a/docs/content/reference/types/components/lat_lon.md +++ b/docs/content/reference/types/components/lat_lon.md @@ -17,7 +17,7 @@ FixedSizeList<2, float64> ## API reference links * 🌊 [C++ API docs for `LatLon`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1LatLon.html) * 🐍 [Python API docs for `LatLon`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.LatLon) - * 🦀 [Rust API docs for `LatLon`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.LatLon.html) + * 🦀 [Rust API docs for `LatLon`](https://docs.rs/rerun/latest/rerun/components/struct.LatLon.html) ## Used by diff --git a/docs/content/reference/types/components/length.md b/docs/content/reference/types/components/length.md index c1f022d9e79b..3ca08ab2647f 100644 --- a/docs/content/reference/types/components/length.md +++ b/docs/content/reference/types/components/length.md @@ -20,7 +20,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `Length`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Length.html) * 🐍 [Python API docs for `Length`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Length) - * 🦀 [Rust API docs for `Length`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Length.html) + * 🦀 [Rust API docs for `Length`](https://docs.rs/rerun/latest/rerun/components/struct.Length.html) ## Used by diff --git a/docs/content/reference/types/components/line_strip2d.md b/docs/content/reference/types/components/line_strip2d.md index 37a564b14a63..4cd8b225161e 100644 --- a/docs/content/reference/types/components/line_strip2d.md +++ b/docs/content/reference/types/components/line_strip2d.md @@ -25,7 +25,7 @@ List> ## API reference links * 🌊 [C++ API docs for `LineStrip2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1LineStrip2D.html) * 🐍 [Python API docs for `LineStrip2D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.LineStrip2D) - * 🦀 [Rust API docs for `LineStrip2D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.LineStrip2D.html) + * 🦀 [Rust API docs for `LineStrip2D`](https://docs.rs/rerun/latest/rerun/components/struct.LineStrip2D.html) ## Used by diff --git a/docs/content/reference/types/components/line_strip3d.md b/docs/content/reference/types/components/line_strip3d.md index 732fc6e6f5f6..8bc3cc421fab 100644 --- a/docs/content/reference/types/components/line_strip3d.md +++ b/docs/content/reference/types/components/line_strip3d.md @@ -25,7 +25,7 @@ List> ## API reference links * 🌊 [C++ API docs for `LineStrip3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1LineStrip3D.html) * 🐍 [Python API docs for `LineStrip3D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.LineStrip3D) - * 🦀 [Rust API docs for `LineStrip3D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.LineStrip3D.html) + * 🦀 [Rust API docs for `LineStrip3D`](https://docs.rs/rerun/latest/rerun/components/struct.LineStrip3D.html) ## Used by diff --git a/docs/content/reference/types/components/magnification_filter.md b/docs/content/reference/types/components/magnification_filter.md index 4909e723e965..425505e8b793 100644 --- a/docs/content/reference/types/components/magnification_filter.md +++ b/docs/content/reference/types/components/magnification_filter.md @@ -26,6 +26,6 @@ uint8 ## API reference links * 🌊 [C++ API docs for `MagnificationFilter`](https://ref.rerun.io/docs/cpp/stable/namespacererun_1_1components.html) * 🐍 [Python API docs for `MagnificationFilter`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.MagnificationFilter) - * 🦀 [Rust API docs for `MagnificationFilter`](https://ref.rerun.io/docs/rust/stable/rerun/components/enum.MagnificationFilter.html) + * 🦀 [Rust API docs for `MagnificationFilter`](https://docs.rs/rerun/latest/rerun/components/enum.MagnificationFilter.html) diff --git a/docs/content/reference/types/components/marker_shape.md b/docs/content/reference/types/components/marker_shape.md index 2cf54112dd68..e0fe1c1cdd83 100644 --- a/docs/content/reference/types/components/marker_shape.md +++ b/docs/content/reference/types/components/marker_shape.md @@ -45,7 +45,7 @@ uint8 ## API reference links * 🌊 [C++ API docs for `MarkerShape`](https://ref.rerun.io/docs/cpp/stable/namespacererun_1_1components.html) * 🐍 [Python API docs for `MarkerShape`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.MarkerShape) - * 🦀 [Rust API docs for `MarkerShape`](https://ref.rerun.io/docs/rust/stable/rerun/components/enum.MarkerShape.html) + * 🦀 [Rust API docs for `MarkerShape`](https://docs.rs/rerun/latest/rerun/components/enum.MarkerShape.html) ## Used by diff --git a/docs/content/reference/types/components/marker_size.md b/docs/content/reference/types/components/marker_size.md index e13f3d115815..48d47b0371cc 100644 --- a/docs/content/reference/types/components/marker_size.md +++ b/docs/content/reference/types/components/marker_size.md @@ -17,7 +17,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `MarkerSize`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1MarkerSize.html) * 🐍 [Python API docs for `MarkerSize`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.MarkerSize) - * 🦀 [Rust API docs for `MarkerSize`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.MarkerSize.html) + * 🦀 [Rust API docs for `MarkerSize`](https://docs.rs/rerun/latest/rerun/components/struct.MarkerSize.html) ## Used by diff --git a/docs/content/reference/types/components/media_type.md b/docs/content/reference/types/components/media_type.md index 66f3819a9175..ffe3f277bc39 100644 --- a/docs/content/reference/types/components/media_type.md +++ b/docs/content/reference/types/components/media_type.md @@ -20,7 +20,7 @@ utf8 ## API reference links * 🌊 [C++ API docs for `MediaType`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1MediaType.html) * 🐍 [Python API docs for `MediaType`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.MediaType) - * 🦀 [Rust API docs for `MediaType`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.MediaType.html) + * 🦀 [Rust API docs for `MediaType`](https://docs.rs/rerun/latest/rerun/components/struct.MediaType.html) ## Used by diff --git a/docs/content/reference/types/components/name.md b/docs/content/reference/types/components/name.md index 1330f3a87cd8..85bb4afdd28d 100644 --- a/docs/content/reference/types/components/name.md +++ b/docs/content/reference/types/components/name.md @@ -17,7 +17,7 @@ utf8 ## API reference links * 🌊 [C++ API docs for `Name`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Name.html) * 🐍 [Python API docs for `Name`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Name) - * 🦀 [Rust API docs for `Name`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Name.html) + * 🦀 [Rust API docs for `Name`](https://docs.rs/rerun/latest/rerun/components/struct.Name.html) ## Used by diff --git a/docs/content/reference/types/components/opacity.md b/docs/content/reference/types/components/opacity.md index 4e0a48b469c9..558c8b1951fe 100644 --- a/docs/content/reference/types/components/opacity.md +++ b/docs/content/reference/types/components/opacity.md @@ -20,7 +20,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `Opacity`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Opacity.html) * 🐍 [Python API docs for `Opacity`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Opacity) - * 🦀 [Rust API docs for `Opacity`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Opacity.html) + * 🦀 [Rust API docs for `Opacity`](https://docs.rs/rerun/latest/rerun/components/struct.Opacity.html) ## Used by diff --git a/docs/content/reference/types/components/pinhole_projection.md b/docs/content/reference/types/components/pinhole_projection.md index 5ba04be7be6c..4f8d53d6d81d 100644 --- a/docs/content/reference/types/components/pinhole_projection.md +++ b/docs/content/reference/types/components/pinhole_projection.md @@ -27,7 +27,7 @@ FixedSizeList<9, float32> ## API reference links * 🌊 [C++ API docs for `PinholeProjection`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1PinholeProjection.html) * 🐍 [Python API docs for `PinholeProjection`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.PinholeProjection) - * 🦀 [Rust API docs for `PinholeProjection`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.PinholeProjection.html) + * 🦀 [Rust API docs for `PinholeProjection`](https://docs.rs/rerun/latest/rerun/components/struct.PinholeProjection.html) ## Used by diff --git a/docs/content/reference/types/components/pose_rotation_axis_angle.md b/docs/content/reference/types/components/pose_rotation_axis_angle.md index 52cb53876287..48d12359136c 100644 --- a/docs/content/reference/types/components/pose_rotation_axis_angle.md +++ b/docs/content/reference/types/components/pose_rotation_axis_angle.md @@ -20,7 +20,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `PoseRotationAxisAngle`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1PoseRotationAxisAngle.html) * 🐍 [Python API docs for `PoseRotationAxisAngle`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.PoseRotationAxisAngle) - * 🦀 [Rust API docs for `PoseRotationAxisAngle`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.PoseRotationAxisAngle.html) + * 🦀 [Rust API docs for `PoseRotationAxisAngle`](https://docs.rs/rerun/latest/rerun/components/struct.PoseRotationAxisAngle.html) ## Used by diff --git a/docs/content/reference/types/components/pose_rotation_quat.md b/docs/content/reference/types/components/pose_rotation_quat.md index 0caab2494362..7234e9163f4b 100644 --- a/docs/content/reference/types/components/pose_rotation_quat.md +++ b/docs/content/reference/types/components/pose_rotation_quat.md @@ -20,7 +20,7 @@ FixedSizeList<4, float32> ## API reference links * 🌊 [C++ API docs for `PoseRotationQuat`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1PoseRotationQuat.html) * 🐍 [Python API docs for `PoseRotationQuat`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.PoseRotationQuat) - * 🦀 [Rust API docs for `PoseRotationQuat`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.PoseRotationQuat.html) + * 🦀 [Rust API docs for `PoseRotationQuat`](https://docs.rs/rerun/latest/rerun/components/struct.PoseRotationQuat.html) ## Used by diff --git a/docs/content/reference/types/components/pose_scale3d.md b/docs/content/reference/types/components/pose_scale3d.md index e5a23e911965..353c2cac368f 100644 --- a/docs/content/reference/types/components/pose_scale3d.md +++ b/docs/content/reference/types/components/pose_scale3d.md @@ -21,7 +21,7 @@ FixedSizeList<3, float32> ## API reference links * 🌊 [C++ API docs for `PoseScale3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1PoseScale3D.html) * 🐍 [Python API docs for `PoseScale3D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.PoseScale3D) - * 🦀 [Rust API docs for `PoseScale3D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.PoseScale3D.html) + * 🦀 [Rust API docs for `PoseScale3D`](https://docs.rs/rerun/latest/rerun/components/struct.PoseScale3D.html) ## Used by diff --git a/docs/content/reference/types/components/pose_transform_mat3x3.md b/docs/content/reference/types/components/pose_transform_mat3x3.md index 7c97332d42b5..eff04995c452 100644 --- a/docs/content/reference/types/components/pose_transform_mat3x3.md +++ b/docs/content/reference/types/components/pose_transform_mat3x3.md @@ -29,7 +29,7 @@ FixedSizeList<9, float32> ## API reference links * 🌊 [C++ API docs for `PoseTransformMat3x3`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1PoseTransformMat3x3.html) * 🐍 [Python API docs for `PoseTransformMat3x3`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.PoseTransformMat3x3) - * 🦀 [Rust API docs for `PoseTransformMat3x3`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.PoseTransformMat3x3.html) + * 🦀 [Rust API docs for `PoseTransformMat3x3`](https://docs.rs/rerun/latest/rerun/components/struct.PoseTransformMat3x3.html) ## Used by diff --git a/docs/content/reference/types/components/pose_translation3d.md b/docs/content/reference/types/components/pose_translation3d.md index d52136103587..e752f94a41e3 100644 --- a/docs/content/reference/types/components/pose_translation3d.md +++ b/docs/content/reference/types/components/pose_translation3d.md @@ -17,7 +17,7 @@ FixedSizeList<3, float32> ## API reference links * 🌊 [C++ API docs for `PoseTranslation3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1PoseTranslation3D.html) * 🐍 [Python API docs for `PoseTranslation3D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.PoseTranslation3D) - * 🦀 [Rust API docs for `PoseTranslation3D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.PoseTranslation3D.html) + * 🦀 [Rust API docs for `PoseTranslation3D`](https://docs.rs/rerun/latest/rerun/components/struct.PoseTranslation3D.html) ## Used by diff --git a/docs/content/reference/types/components/position2d.md b/docs/content/reference/types/components/position2d.md index 68a1241520cc..783dc3757ad3 100644 --- a/docs/content/reference/types/components/position2d.md +++ b/docs/content/reference/types/components/position2d.md @@ -17,7 +17,7 @@ FixedSizeList<2, float32> ## API reference links * 🌊 [C++ API docs for `Position2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Position2D.html) * 🐍 [Python API docs for `Position2D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Position2D) - * 🦀 [Rust API docs for `Position2D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Position2D.html) + * 🦀 [Rust API docs for `Position2D`](https://docs.rs/rerun/latest/rerun/components/struct.Position2D.html) ## Used by diff --git a/docs/content/reference/types/components/position3d.md b/docs/content/reference/types/components/position3d.md index 980a14342c00..c4c3884a3e57 100644 --- a/docs/content/reference/types/components/position3d.md +++ b/docs/content/reference/types/components/position3d.md @@ -17,7 +17,7 @@ FixedSizeList<3, float32> ## API reference links * 🌊 [C++ API docs for `Position3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Position3D.html) * 🐍 [Python API docs for `Position3D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Position3D) - * 🦀 [Rust API docs for `Position3D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Position3D.html) + * 🦀 [Rust API docs for `Position3D`](https://docs.rs/rerun/latest/rerun/components/struct.Position3D.html) ## Used by diff --git a/docs/content/reference/types/components/radius.md b/docs/content/reference/types/components/radius.md index d88fc4d03c94..5db6e4081e91 100644 --- a/docs/content/reference/types/components/radius.md +++ b/docs/content/reference/types/components/radius.md @@ -24,7 +24,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `Radius`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Radius.html) * 🐍 [Python API docs for `Radius`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Radius) - * 🦀 [Rust API docs for `Radius`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Radius.html) + * 🦀 [Rust API docs for `Radius`](https://docs.rs/rerun/latest/rerun/components/struct.Radius.html) ## Used by diff --git a/docs/content/reference/types/components/range1d.md b/docs/content/reference/types/components/range1d.md index c504ea5b6cff..d35374e4681a 100644 --- a/docs/content/reference/types/components/range1d.md +++ b/docs/content/reference/types/components/range1d.md @@ -17,6 +17,6 @@ FixedSizeList<2, float64> ## API reference links * 🌊 [C++ API docs for `Range1D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Range1D.html) * 🐍 [Python API docs for `Range1D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Range1D) - * 🦀 [Rust API docs for `Range1D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Range1D.html) + * 🦀 [Rust API docs for `Range1D`](https://docs.rs/rerun/latest/rerun/components/struct.Range1D.html) diff --git a/docs/content/reference/types/components/resolution.md b/docs/content/reference/types/components/resolution.md index 1752753aae81..c3ad8e6b1af5 100644 --- a/docs/content/reference/types/components/resolution.md +++ b/docs/content/reference/types/components/resolution.md @@ -19,7 +19,7 @@ FixedSizeList<2, float32> ## API reference links * 🌊 [C++ API docs for `Resolution`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Resolution.html) * 🐍 [Python API docs for `Resolution`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Resolution) - * 🦀 [Rust API docs for `Resolution`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Resolution.html) + * 🦀 [Rust API docs for `Resolution`](https://docs.rs/rerun/latest/rerun/components/struct.Resolution.html) ## Used by diff --git a/docs/content/reference/types/components/rotation_axis_angle.md b/docs/content/reference/types/components/rotation_axis_angle.md index ae04f9b8ebca..a1b3fb606577 100644 --- a/docs/content/reference/types/components/rotation_axis_angle.md +++ b/docs/content/reference/types/components/rotation_axis_angle.md @@ -20,7 +20,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `RotationAxisAngle`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1RotationAxisAngle.html) * 🐍 [Python API docs for `RotationAxisAngle`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.RotationAxisAngle) - * 🦀 [Rust API docs for `RotationAxisAngle`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.RotationAxisAngle.html) + * 🦀 [Rust API docs for `RotationAxisAngle`](https://docs.rs/rerun/latest/rerun/components/struct.RotationAxisAngle.html) ## Used by diff --git a/docs/content/reference/types/components/rotation_quat.md b/docs/content/reference/types/components/rotation_quat.md index 7888cb711b77..696ffd7081e4 100644 --- a/docs/content/reference/types/components/rotation_quat.md +++ b/docs/content/reference/types/components/rotation_quat.md @@ -20,7 +20,7 @@ FixedSizeList<4, float32> ## API reference links * 🌊 [C++ API docs for `RotationQuat`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1RotationQuat.html) * 🐍 [Python API docs for `RotationQuat`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.RotationQuat) - * 🦀 [Rust API docs for `RotationQuat`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.RotationQuat.html) + * 🦀 [Rust API docs for `RotationQuat`](https://docs.rs/rerun/latest/rerun/components/struct.RotationQuat.html) ## Used by diff --git a/docs/content/reference/types/components/scalar.md b/docs/content/reference/types/components/scalar.md index b27888260821..e41edb71b843 100644 --- a/docs/content/reference/types/components/scalar.md +++ b/docs/content/reference/types/components/scalar.md @@ -19,7 +19,7 @@ float64 ## API reference links * 🌊 [C++ API docs for `Scalar`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Scalar.html) * 🐍 [Python API docs for `Scalar`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Scalar) - * 🦀 [Rust API docs for `Scalar`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Scalar.html) + * 🦀 [Rust API docs for `Scalar`](https://docs.rs/rerun/latest/rerun/components/struct.Scalar.html) ## Used by diff --git a/docs/content/reference/types/components/scale3d.md b/docs/content/reference/types/components/scale3d.md index d6e70271d7b9..0c9a9d167088 100644 --- a/docs/content/reference/types/components/scale3d.md +++ b/docs/content/reference/types/components/scale3d.md @@ -21,7 +21,7 @@ FixedSizeList<3, float32> ## API reference links * 🌊 [C++ API docs for `Scale3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Scale3D.html) * 🐍 [Python API docs for `Scale3D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Scale3D) - * 🦀 [Rust API docs for `Scale3D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Scale3D.html) + * 🦀 [Rust API docs for `Scale3D`](https://docs.rs/rerun/latest/rerun/components/struct.Scale3D.html) ## Used by diff --git a/docs/content/reference/types/components/show_labels.md b/docs/content/reference/types/components/show_labels.md index 83e6d19fbc12..b8b6bc9e0fa7 100644 --- a/docs/content/reference/types/components/show_labels.md +++ b/docs/content/reference/types/components/show_labels.md @@ -21,7 +21,7 @@ boolean ## API reference links * 🌊 [C++ API docs for `ShowLabels`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1ShowLabels.html) * 🐍 [Python API docs for `ShowLabels`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.ShowLabels) - * 🦀 [Rust API docs for `ShowLabels`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.ShowLabels.html) + * 🦀 [Rust API docs for `ShowLabels`](https://docs.rs/rerun/latest/rerun/components/struct.ShowLabels.html) ## Used by diff --git a/docs/content/reference/types/components/stroke_width.md b/docs/content/reference/types/components/stroke_width.md index 9bf7d491765b..42a47e54c2fb 100644 --- a/docs/content/reference/types/components/stroke_width.md +++ b/docs/content/reference/types/components/stroke_width.md @@ -17,7 +17,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `StrokeWidth`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1StrokeWidth.html) * 🐍 [Python API docs for `StrokeWidth`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.StrokeWidth) - * 🦀 [Rust API docs for `StrokeWidth`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.StrokeWidth.html) + * 🦀 [Rust API docs for `StrokeWidth`](https://docs.rs/rerun/latest/rerun/components/struct.StrokeWidth.html) ## Used by diff --git a/docs/content/reference/types/components/tensor_data.md b/docs/content/reference/types/components/tensor_data.md index 7cbaae806035..1d6efe720691 100644 --- a/docs/content/reference/types/components/tensor_data.md +++ b/docs/content/reference/types/components/tensor_data.md @@ -43,7 +43,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `TensorData`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1TensorData.html) * 🐍 [Python API docs for `TensorData`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.TensorData) - * 🦀 [Rust API docs for `TensorData`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.TensorData.html) + * 🦀 [Rust API docs for `TensorData`](https://docs.rs/rerun/latest/rerun/components/struct.TensorData.html) ## Used by diff --git a/docs/content/reference/types/components/tensor_dimension_index_selection.md b/docs/content/reference/types/components/tensor_dimension_index_selection.md index 62f941df18dc..cf791cc7206e 100644 --- a/docs/content/reference/types/components/tensor_dimension_index_selection.md +++ b/docs/content/reference/types/components/tensor_dimension_index_selection.md @@ -20,6 +20,6 @@ Struct { ## API reference links * 🌊 [C++ API docs for `TensorDimensionIndexSelection`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1TensorDimensionIndexSelection.html) * 🐍 [Python API docs for `TensorDimensionIndexSelection`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.TensorDimensionIndexSelection) - * 🦀 [Rust API docs for `TensorDimensionIndexSelection`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.TensorDimensionIndexSelection.html) + * 🦀 [Rust API docs for `TensorDimensionIndexSelection`](https://docs.rs/rerun/latest/rerun/components/struct.TensorDimensionIndexSelection.html) diff --git a/docs/content/reference/types/components/tensor_height_dimension.md b/docs/content/reference/types/components/tensor_height_dimension.md index 21c2540e22ac..e494ec3fca15 100644 --- a/docs/content/reference/types/components/tensor_height_dimension.md +++ b/docs/content/reference/types/components/tensor_height_dimension.md @@ -20,6 +20,6 @@ Struct { ## API reference links * 🌊 [C++ API docs for `TensorHeightDimension`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1TensorHeightDimension.html) * 🐍 [Python API docs for `TensorHeightDimension`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.TensorHeightDimension) - * 🦀 [Rust API docs for `TensorHeightDimension`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.TensorHeightDimension.html) + * 🦀 [Rust API docs for `TensorHeightDimension`](https://docs.rs/rerun/latest/rerun/components/struct.TensorHeightDimension.html) diff --git a/docs/content/reference/types/components/tensor_width_dimension.md b/docs/content/reference/types/components/tensor_width_dimension.md index 55b4417dc704..e9ecfcdceda4 100644 --- a/docs/content/reference/types/components/tensor_width_dimension.md +++ b/docs/content/reference/types/components/tensor_width_dimension.md @@ -20,6 +20,6 @@ Struct { ## API reference links * 🌊 [C++ API docs for `TensorWidthDimension`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1TensorWidthDimension.html) * 🐍 [Python API docs for `TensorWidthDimension`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.TensorWidthDimension) - * 🦀 [Rust API docs for `TensorWidthDimension`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.TensorWidthDimension.html) + * 🦀 [Rust API docs for `TensorWidthDimension`](https://docs.rs/rerun/latest/rerun/components/struct.TensorWidthDimension.html) diff --git a/docs/content/reference/types/components/texcoord2d.md b/docs/content/reference/types/components/texcoord2d.md index 7d59f6df88b3..f7806492b348 100644 --- a/docs/content/reference/types/components/texcoord2d.md +++ b/docs/content/reference/types/components/texcoord2d.md @@ -32,7 +32,7 @@ FixedSizeList<2, float32> ## API reference links * 🌊 [C++ API docs for `Texcoord2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Texcoord2D.html) * 🐍 [Python API docs for `Texcoord2D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Texcoord2D) - * 🦀 [Rust API docs for `Texcoord2D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Texcoord2D.html) + * 🦀 [Rust API docs for `Texcoord2D`](https://docs.rs/rerun/latest/rerun/components/struct.Texcoord2D.html) ## Used by diff --git a/docs/content/reference/types/components/text.md b/docs/content/reference/types/components/text.md index 7ad03357d2c8..1dcf5e2284cb 100644 --- a/docs/content/reference/types/components/text.md +++ b/docs/content/reference/types/components/text.md @@ -17,7 +17,7 @@ utf8 ## API reference links * 🌊 [C++ API docs for `Text`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Text.html) * 🐍 [Python API docs for `Text`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Text) - * 🦀 [Rust API docs for `Text`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Text.html) + * 🦀 [Rust API docs for `Text`](https://docs.rs/rerun/latest/rerun/components/struct.Text.html) ## Used by diff --git a/docs/content/reference/types/components/text_log_level.md b/docs/content/reference/types/components/text_log_level.md index 18e42224e4bc..b6d2ac1da93c 100644 --- a/docs/content/reference/types/components/text_log_level.md +++ b/docs/content/reference/types/components/text_log_level.md @@ -25,7 +25,7 @@ utf8 ## API reference links * 🌊 [C++ API docs for `TextLogLevel`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1TextLogLevel.html) * 🐍 [Python API docs for `TextLogLevel`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.TextLogLevel) - * 🦀 [Rust API docs for `TextLogLevel`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.TextLogLevel.html) + * 🦀 [Rust API docs for `TextLogLevel`](https://docs.rs/rerun/latest/rerun/components/struct.TextLogLevel.html) ## Used by diff --git a/docs/content/reference/types/components/transform_mat3x3.md b/docs/content/reference/types/components/transform_mat3x3.md index e54a498a6f7d..439555ef8dee 100644 --- a/docs/content/reference/types/components/transform_mat3x3.md +++ b/docs/content/reference/types/components/transform_mat3x3.md @@ -29,7 +29,7 @@ FixedSizeList<9, float32> ## API reference links * 🌊 [C++ API docs for `TransformMat3x3`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1TransformMat3x3.html) * 🐍 [Python API docs for `TransformMat3x3`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.TransformMat3x3) - * 🦀 [Rust API docs for `TransformMat3x3`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.TransformMat3x3.html) + * 🦀 [Rust API docs for `TransformMat3x3`](https://docs.rs/rerun/latest/rerun/components/struct.TransformMat3x3.html) ## Used by diff --git a/docs/content/reference/types/components/transform_relation.md b/docs/content/reference/types/components/transform_relation.md index 1f549a12e154..6fcbe695e1d2 100644 --- a/docs/content/reference/types/components/transform_relation.md +++ b/docs/content/reference/types/components/transform_relation.md @@ -29,7 +29,7 @@ uint8 ## API reference links * 🌊 [C++ API docs for `TransformRelation`](https://ref.rerun.io/docs/cpp/stable/namespacererun_1_1components.html) * 🐍 [Python API docs for `TransformRelation`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.TransformRelation) - * 🦀 [Rust API docs for `TransformRelation`](https://ref.rerun.io/docs/rust/stable/rerun/components/enum.TransformRelation.html) + * 🦀 [Rust API docs for `TransformRelation`](https://docs.rs/rerun/latest/rerun/components/enum.TransformRelation.html) ## Used by diff --git a/docs/content/reference/types/components/translation3d.md b/docs/content/reference/types/components/translation3d.md index 5a94d3945a16..8908586e957e 100644 --- a/docs/content/reference/types/components/translation3d.md +++ b/docs/content/reference/types/components/translation3d.md @@ -17,7 +17,7 @@ FixedSizeList<3, float32> ## API reference links * 🌊 [C++ API docs for `Translation3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Translation3D.html) * 🐍 [Python API docs for `Translation3D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Translation3D) - * 🦀 [Rust API docs for `Translation3D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Translation3D.html) + * 🦀 [Rust API docs for `Translation3D`](https://docs.rs/rerun/latest/rerun/components/struct.Translation3D.html) ## Used by diff --git a/docs/content/reference/types/components/triangle_indices.md b/docs/content/reference/types/components/triangle_indices.md index 74c0d636d003..b21d06f21a9b 100644 --- a/docs/content/reference/types/components/triangle_indices.md +++ b/docs/content/reference/types/components/triangle_indices.md @@ -17,7 +17,7 @@ FixedSizeList<3, uint32> ## API reference links * 🌊 [C++ API docs for `TriangleIndices`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1TriangleIndices.html) * 🐍 [Python API docs for `TriangleIndices`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.TriangleIndices) - * 🦀 [Rust API docs for `TriangleIndices`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.TriangleIndices.html) + * 🦀 [Rust API docs for `TriangleIndices`](https://docs.rs/rerun/latest/rerun/components/struct.TriangleIndices.html) ## Used by diff --git a/docs/content/reference/types/components/value_range.md b/docs/content/reference/types/components/value_range.md index 67121c9a56ab..995b0413df41 100644 --- a/docs/content/reference/types/components/value_range.md +++ b/docs/content/reference/types/components/value_range.md @@ -17,7 +17,7 @@ FixedSizeList<2, float64> ## API reference links * 🌊 [C++ API docs for `ValueRange`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1ValueRange.html) * 🐍 [Python API docs for `ValueRange`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.ValueRange) - * 🦀 [Rust API docs for `ValueRange`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.ValueRange.html) + * 🦀 [Rust API docs for `ValueRange`](https://docs.rs/rerun/latest/rerun/components/struct.ValueRange.html) ## Used by diff --git a/docs/content/reference/types/components/vector2d.md b/docs/content/reference/types/components/vector2d.md index 9e0e6f72c734..52735fe24c57 100644 --- a/docs/content/reference/types/components/vector2d.md +++ b/docs/content/reference/types/components/vector2d.md @@ -17,7 +17,7 @@ FixedSizeList<2, float32> ## API reference links * 🌊 [C++ API docs for `Vector2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Vector2D.html) * 🐍 [Python API docs for `Vector2D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Vector2D) - * 🦀 [Rust API docs for `Vector2D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Vector2D.html) + * 🦀 [Rust API docs for `Vector2D`](https://docs.rs/rerun/latest/rerun/components/struct.Vector2D.html) ## Used by diff --git a/docs/content/reference/types/components/vector3d.md b/docs/content/reference/types/components/vector3d.md index 84ebc29e3fd9..47c53e7405c7 100644 --- a/docs/content/reference/types/components/vector3d.md +++ b/docs/content/reference/types/components/vector3d.md @@ -17,7 +17,7 @@ FixedSizeList<3, float32> ## API reference links * 🌊 [C++ API docs for `Vector3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1Vector3D.html) * 🐍 [Python API docs for `Vector3D`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.Vector3D) - * 🦀 [Rust API docs for `Vector3D`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.Vector3D.html) + * 🦀 [Rust API docs for `Vector3D`](https://docs.rs/rerun/latest/rerun/components/struct.Vector3D.html) ## Used by diff --git a/docs/content/reference/types/components/video_timestamp.md b/docs/content/reference/types/components/video_timestamp.md index ee1515158170..4e64bfdad8f7 100644 --- a/docs/content/reference/types/components/video_timestamp.md +++ b/docs/content/reference/types/components/video_timestamp.md @@ -17,7 +17,7 @@ int64 ## API reference links * 🌊 [C++ API docs for `VideoTimestamp`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1VideoTimestamp.html) * 🐍 [Python API docs for `VideoTimestamp`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.VideoTimestamp) - * 🦀 [Rust API docs for `VideoTimestamp`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.VideoTimestamp.html) + * 🦀 [Rust API docs for `VideoTimestamp`](https://docs.rs/rerun/latest/rerun/components/struct.VideoTimestamp.html) ## Used by diff --git a/docs/content/reference/types/components/view_coordinates.md b/docs/content/reference/types/components/view_coordinates.md index 2c9f9fcdbc1d..d12bec3e972c 100644 --- a/docs/content/reference/types/components/view_coordinates.md +++ b/docs/content/reference/types/components/view_coordinates.md @@ -34,7 +34,7 @@ FixedSizeList<3, uint8> ## API reference links * 🌊 [C++ API docs for `ViewCoordinates`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1components_1_1ViewCoordinates.html) * 🐍 [Python API docs for `ViewCoordinates`](https://ref.rerun.io/docs/python/stable/common/components#rerun.components.ViewCoordinates) - * 🦀 [Rust API docs for `ViewCoordinates`](https://ref.rerun.io/docs/rust/stable/rerun/components/struct.ViewCoordinates.html) + * 🦀 [Rust API docs for `ViewCoordinates`](https://docs.rs/rerun/latest/rerun/components/struct.ViewCoordinates.html) ## Used by diff --git a/docs/content/reference/types/datatypes/angle.md b/docs/content/reference/types/datatypes/angle.md index 83c96f0b7c32..794a9733ef6c 100644 --- a/docs/content/reference/types/datatypes/angle.md +++ b/docs/content/reference/types/datatypes/angle.md @@ -14,7 +14,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `Angle`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Angle.html) * 🐍 [Python API docs for `Angle`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Angle) - * 🦀 [Rust API docs for `Angle`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Angle.html) + * 🦀 [Rust API docs for `Angle`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Angle.html) ## Used by diff --git a/docs/content/reference/types/datatypes/annotation_info.md b/docs/content/reference/types/datatypes/annotation_info.md index 97514b527a46..c8e36d0b5dd5 100644 --- a/docs/content/reference/types/datatypes/annotation_info.md +++ b/docs/content/reference/types/datatypes/annotation_info.md @@ -37,7 +37,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `AnnotationInfo`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1AnnotationInfo.html) * 🐍 [Python API docs for `AnnotationInfo`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.AnnotationInfo) - * 🦀 [Rust API docs for `AnnotationInfo`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.AnnotationInfo.html) + * 🦀 [Rust API docs for `AnnotationInfo`](https://docs.rs/rerun/latest/rerun/datatypes/struct.AnnotationInfo.html) ## Used by diff --git a/docs/content/reference/types/datatypes/blob.md b/docs/content/reference/types/datatypes/blob.md index 9f1d935b518c..5d2f7a61692a 100644 --- a/docs/content/reference/types/datatypes/blob.md +++ b/docs/content/reference/types/datatypes/blob.md @@ -14,7 +14,7 @@ List ## API reference links * 🌊 [C++ API docs for `Blob`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Blob.html) * 🐍 [Python API docs for `Blob`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Blob) - * 🦀 [Rust API docs for `Blob`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Blob.html) + * 🦀 [Rust API docs for `Blob`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Blob.html) ## Used by diff --git a/docs/content/reference/types/datatypes/bool.md b/docs/content/reference/types/datatypes/bool.md index e8a82daa6893..70ede9bee361 100644 --- a/docs/content/reference/types/datatypes/bool.md +++ b/docs/content/reference/types/datatypes/bool.md @@ -14,7 +14,7 @@ boolean ## API reference links * 🌊 [C++ API docs for `Bool`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Bool.html) * 🐍 [Python API docs for `Bool`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Bool) - * 🦀 [Rust API docs for `Bool`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Bool.html) + * 🦀 [Rust API docs for `Bool`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Bool.html) ## Used by diff --git a/docs/content/reference/types/datatypes/channel_datatype.md b/docs/content/reference/types/datatypes/channel_datatype.md index 3e7ffd98ad71..4e720a27dccd 100644 --- a/docs/content/reference/types/datatypes/channel_datatype.md +++ b/docs/content/reference/types/datatypes/channel_datatype.md @@ -50,7 +50,7 @@ uint8 ## API reference links * 🌊 [C++ API docs for `ChannelDatatype`](https://ref.rerun.io/docs/cpp/stable/namespacererun_1_1datatypes.html) * 🐍 [Python API docs for `ChannelDatatype`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.ChannelDatatype) - * 🦀 [Rust API docs for `ChannelDatatype`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/enum.ChannelDatatype.html) + * 🦀 [Rust API docs for `ChannelDatatype`](https://docs.rs/rerun/latest/rerun/datatypes/enum.ChannelDatatype.html) ## Used by diff --git a/docs/content/reference/types/datatypes/class_description.md b/docs/content/reference/types/datatypes/class_description.md index 92ebe5d5bb43..d68ddd30b91c 100644 --- a/docs/content/reference/types/datatypes/class_description.md +++ b/docs/content/reference/types/datatypes/class_description.md @@ -58,7 +58,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `ClassDescription`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1ClassDescription.html) * 🐍 [Python API docs for `ClassDescription`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.ClassDescription) - * 🦀 [Rust API docs for `ClassDescription`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.ClassDescription.html) + * 🦀 [Rust API docs for `ClassDescription`](https://docs.rs/rerun/latest/rerun/datatypes/struct.ClassDescription.html) ## Used by diff --git a/docs/content/reference/types/datatypes/class_description_map_elem.md b/docs/content/reference/types/datatypes/class_description_map_elem.md index 4a445a0eca97..f8a2991f761c 100644 --- a/docs/content/reference/types/datatypes/class_description_map_elem.md +++ b/docs/content/reference/types/datatypes/class_description_map_elem.md @@ -45,7 +45,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `ClassDescriptionMapElem`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1ClassDescriptionMapElem.html) * 🐍 [Python API docs for `ClassDescriptionMapElem`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.ClassDescriptionMapElem) - * 🦀 [Rust API docs for `ClassDescriptionMapElem`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.ClassDescriptionMapElem.html) + * 🦀 [Rust API docs for `ClassDescriptionMapElem`](https://docs.rs/rerun/latest/rerun/datatypes/struct.ClassDescriptionMapElem.html) ## Used by diff --git a/docs/content/reference/types/datatypes/class_id.md b/docs/content/reference/types/datatypes/class_id.md index b552aa164441..abc013862484 100644 --- a/docs/content/reference/types/datatypes/class_id.md +++ b/docs/content/reference/types/datatypes/class_id.md @@ -14,7 +14,7 @@ uint16 ## API reference links * 🌊 [C++ API docs for `ClassId`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1ClassId.html) * 🐍 [Python API docs for `ClassId`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.ClassId) - * 🦀 [Rust API docs for `ClassId`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.ClassId.html) + * 🦀 [Rust API docs for `ClassId`](https://docs.rs/rerun/latest/rerun/datatypes/struct.ClassId.html) ## Used by diff --git a/docs/content/reference/types/datatypes/color_model.md b/docs/content/reference/types/datatypes/color_model.md index 170272408e0f..e08c745e5e9b 100644 --- a/docs/content/reference/types/datatypes/color_model.md +++ b/docs/content/reference/types/datatypes/color_model.md @@ -32,7 +32,7 @@ uint8 ## API reference links * 🌊 [C++ API docs for `ColorModel`](https://ref.rerun.io/docs/cpp/stable/namespacererun_1_1datatypes.html) * 🐍 [Python API docs for `ColorModel`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.ColorModel) - * 🦀 [Rust API docs for `ColorModel`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/enum.ColorModel.html) + * 🦀 [Rust API docs for `ColorModel`](https://docs.rs/rerun/latest/rerun/datatypes/enum.ColorModel.html) ## Used by diff --git a/docs/content/reference/types/datatypes/dvec2d.md b/docs/content/reference/types/datatypes/dvec2d.md index f2c6fe66ffe2..373478c9b7e6 100644 --- a/docs/content/reference/types/datatypes/dvec2d.md +++ b/docs/content/reference/types/datatypes/dvec2d.md @@ -14,7 +14,7 @@ FixedSizeList<2, float64> ## API reference links * 🌊 [C++ API docs for `DVec2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1DVec2D.html) * 🐍 [Python API docs for `DVec2D`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.DVec2D) - * 🦀 [Rust API docs for `DVec2D`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.DVec2D.html) + * 🦀 [Rust API docs for `DVec2D`](https://docs.rs/rerun/latest/rerun/datatypes/struct.DVec2D.html) ## Used by diff --git a/docs/content/reference/types/datatypes/entity_path.md b/docs/content/reference/types/datatypes/entity_path.md index dcfe3586a450..b345f5351444 100644 --- a/docs/content/reference/types/datatypes/entity_path.md +++ b/docs/content/reference/types/datatypes/entity_path.md @@ -14,7 +14,7 @@ utf8 ## API reference links * 🌊 [C++ API docs for `EntityPath`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1EntityPath.html) * 🐍 [Python API docs for `EntityPath`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.EntityPath) - * 🦀 [Rust API docs for `EntityPath`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.EntityPath.html) + * 🦀 [Rust API docs for `EntityPath`](https://docs.rs/rerun/latest/rerun/datatypes/struct.EntityPath.html) ## Used by diff --git a/docs/content/reference/types/datatypes/float32.md b/docs/content/reference/types/datatypes/float32.md index 713f4dcfe9e4..0f6f9561ccae 100644 --- a/docs/content/reference/types/datatypes/float32.md +++ b/docs/content/reference/types/datatypes/float32.md @@ -14,7 +14,7 @@ float32 ## API reference links * 🌊 [C++ API docs for `Float32`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Float32.html) * 🐍 [Python API docs for `Float32`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Float32) - * 🦀 [Rust API docs for `Float32`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Float32.html) + * 🦀 [Rust API docs for `Float32`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Float32.html) ## Used by diff --git a/docs/content/reference/types/datatypes/float64.md b/docs/content/reference/types/datatypes/float64.md index 3a596926c6e0..8c1ec4bff30d 100644 --- a/docs/content/reference/types/datatypes/float64.md +++ b/docs/content/reference/types/datatypes/float64.md @@ -14,7 +14,7 @@ float64 ## API reference links * 🌊 [C++ API docs for `Float64`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Float64.html) * 🐍 [Python API docs for `Float64`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Float64) - * 🦀 [Rust API docs for `Float64`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Float64.html) + * 🦀 [Rust API docs for `Float64`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Float64.html) ## Used by diff --git a/docs/content/reference/types/datatypes/image_format.md b/docs/content/reference/types/datatypes/image_format.md index 7bc2bc25989d..ab654918f9a3 100644 --- a/docs/content/reference/types/datatypes/image_format.md +++ b/docs/content/reference/types/datatypes/image_format.md @@ -52,7 +52,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `ImageFormat`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1ImageFormat.html) * 🐍 [Python API docs for `ImageFormat`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.ImageFormat) - * 🦀 [Rust API docs for `ImageFormat`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.ImageFormat.html) + * 🦀 [Rust API docs for `ImageFormat`](https://docs.rs/rerun/latest/rerun/datatypes/struct.ImageFormat.html) ## Used by diff --git a/docs/content/reference/types/datatypes/keypoint_id.md b/docs/content/reference/types/datatypes/keypoint_id.md index 1a1f4d322863..7b1e06738cd2 100644 --- a/docs/content/reference/types/datatypes/keypoint_id.md +++ b/docs/content/reference/types/datatypes/keypoint_id.md @@ -14,7 +14,7 @@ uint16 ## API reference links * 🌊 [C++ API docs for `KeypointId`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1KeypointId.html) * 🐍 [Python API docs for `KeypointId`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.KeypointId) - * 🦀 [Rust API docs for `KeypointId`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.KeypointId.html) + * 🦀 [Rust API docs for `KeypointId`](https://docs.rs/rerun/latest/rerun/datatypes/struct.KeypointId.html) ## Used by diff --git a/docs/content/reference/types/datatypes/keypoint_pair.md b/docs/content/reference/types/datatypes/keypoint_pair.md index 0ff715a4c67e..c466bac9b3bb 100644 --- a/docs/content/reference/types/datatypes/keypoint_pair.md +++ b/docs/content/reference/types/datatypes/keypoint_pair.md @@ -28,7 +28,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `KeypointPair`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1KeypointPair.html) * 🐍 [Python API docs for `KeypointPair`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.KeypointPair) - * 🦀 [Rust API docs for `KeypointPair`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.KeypointPair.html) + * 🦀 [Rust API docs for `KeypointPair`](https://docs.rs/rerun/latest/rerun/datatypes/struct.KeypointPair.html) ## Used by diff --git a/docs/content/reference/types/datatypes/mat3x3.md b/docs/content/reference/types/datatypes/mat3x3.md index b9f956638c85..47a3e2a6e007 100644 --- a/docs/content/reference/types/datatypes/mat3x3.md +++ b/docs/content/reference/types/datatypes/mat3x3.md @@ -23,7 +23,7 @@ FixedSizeList<9, float32> ## API reference links * 🌊 [C++ API docs for `Mat3x3`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Mat3x3.html) * 🐍 [Python API docs for `Mat3x3`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Mat3x3) - * 🦀 [Rust API docs for `Mat3x3`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Mat3x3.html) + * 🦀 [Rust API docs for `Mat3x3`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Mat3x3.html) ## Used by diff --git a/docs/content/reference/types/datatypes/mat4x4.md b/docs/content/reference/types/datatypes/mat4x4.md index 1cf6ee6b0d71..73efb6bee533 100644 --- a/docs/content/reference/types/datatypes/mat4x4.md +++ b/docs/content/reference/types/datatypes/mat4x4.md @@ -24,6 +24,6 @@ FixedSizeList<16, float32> ## API reference links * 🌊 [C++ API docs for `Mat4x4`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Mat4x4.html) * 🐍 [Python API docs for `Mat4x4`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Mat4x4) - * 🦀 [Rust API docs for `Mat4x4`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Mat4x4.html) + * 🦀 [Rust API docs for `Mat4x4`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Mat4x4.html) diff --git a/docs/content/reference/types/datatypes/pixel_format.md b/docs/content/reference/types/datatypes/pixel_format.md index e3b5e35417ef..187b03583fe0 100644 --- a/docs/content/reference/types/datatypes/pixel_format.md +++ b/docs/content/reference/types/datatypes/pixel_format.md @@ -105,7 +105,7 @@ uint8 ## API reference links * 🌊 [C++ API docs for `PixelFormat`](https://ref.rerun.io/docs/cpp/stable/namespacererun_1_1datatypes.html) * 🐍 [Python API docs for `PixelFormat`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.PixelFormat) - * 🦀 [Rust API docs for `PixelFormat`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/enum.PixelFormat.html) + * 🦀 [Rust API docs for `PixelFormat`](https://docs.rs/rerun/latest/rerun/datatypes/enum.PixelFormat.html) ## Used by diff --git a/docs/content/reference/types/datatypes/quaternion.md b/docs/content/reference/types/datatypes/quaternion.md index 397d454e81f8..7661b5f2579d 100644 --- a/docs/content/reference/types/datatypes/quaternion.md +++ b/docs/content/reference/types/datatypes/quaternion.md @@ -17,7 +17,7 @@ FixedSizeList<4, float32> ## API reference links * 🌊 [C++ API docs for `Quaternion`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Quaternion.html) * 🐍 [Python API docs for `Quaternion`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Quaternion) - * 🦀 [Rust API docs for `Quaternion`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Quaternion.html) + * 🦀 [Rust API docs for `Quaternion`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Quaternion.html) ## Used by diff --git a/docs/content/reference/types/datatypes/range1d.md b/docs/content/reference/types/datatypes/range1d.md index 6848440e6bf9..60421a00e8f8 100644 --- a/docs/content/reference/types/datatypes/range1d.md +++ b/docs/content/reference/types/datatypes/range1d.md @@ -14,7 +14,7 @@ FixedSizeList<2, float64> ## API reference links * 🌊 [C++ API docs for `Range1D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Range1D.html) * 🐍 [Python API docs for `Range1D`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Range1D) - * 🦀 [Rust API docs for `Range1D`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Range1D.html) + * 🦀 [Rust API docs for `Range1D`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Range1D.html) ## Used by diff --git a/docs/content/reference/types/datatypes/range2d.md b/docs/content/reference/types/datatypes/range2d.md index 4576d300856a..558c3a24a220 100644 --- a/docs/content/reference/types/datatypes/range2d.md +++ b/docs/content/reference/types/datatypes/range2d.md @@ -28,6 +28,6 @@ Struct { ## API reference links * 🌊 [C++ API docs for `Range2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Range2D.html) * 🐍 [Python API docs for `Range2D`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Range2D) - * 🦀 [Rust API docs for `Range2D`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Range2D.html) + * 🦀 [Rust API docs for `Range2D`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Range2D.html) diff --git a/docs/content/reference/types/datatypes/rgba32.md b/docs/content/reference/types/datatypes/rgba32.md index f34231248ab6..4b423d35ec30 100644 --- a/docs/content/reference/types/datatypes/rgba32.md +++ b/docs/content/reference/types/datatypes/rgba32.md @@ -17,7 +17,7 @@ uint32 ## API reference links * 🌊 [C++ API docs for `Rgba32`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Rgba32.html) * 🐍 [Python API docs for `Rgba32`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Rgba32) - * 🦀 [Rust API docs for `Rgba32`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Rgba32.html) + * 🦀 [Rust API docs for `Rgba32`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Rgba32.html) ## Used by diff --git a/docs/content/reference/types/datatypes/rotation_axis_angle.md b/docs/content/reference/types/datatypes/rotation_axis_angle.md index 54efca31cc11..e9a26b8086f2 100644 --- a/docs/content/reference/types/datatypes/rotation_axis_angle.md +++ b/docs/content/reference/types/datatypes/rotation_axis_angle.md @@ -32,7 +32,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `RotationAxisAngle`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1RotationAxisAngle.html) * 🐍 [Python API docs for `RotationAxisAngle`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.RotationAxisAngle) - * 🦀 [Rust API docs for `RotationAxisAngle`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.RotationAxisAngle.html) + * 🦀 [Rust API docs for `RotationAxisAngle`](https://docs.rs/rerun/latest/rerun/datatypes/struct.RotationAxisAngle.html) ## Used by diff --git a/docs/content/reference/types/datatypes/tensor_buffer.md b/docs/content/reference/types/datatypes/tensor_buffer.md index 1c702f3630ef..653f915c978f 100644 --- a/docs/content/reference/types/datatypes/tensor_buffer.md +++ b/docs/content/reference/types/datatypes/tensor_buffer.md @@ -85,7 +85,7 @@ DenseUnion { ## API reference links * 🌊 [C++ API docs for `TensorBuffer`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1TensorBuffer.html) * 🐍 [Python API docs for `TensorBuffer`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.TensorBuffer) - * 🦀 [Rust API docs for `TensorBuffer`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/enum.TensorBuffer.html) + * 🦀 [Rust API docs for `TensorBuffer`](https://docs.rs/rerun/latest/rerun/datatypes/enum.TensorBuffer.html) ## Used by diff --git a/docs/content/reference/types/datatypes/tensor_data.md b/docs/content/reference/types/datatypes/tensor_data.md index 06ab0878527a..caef70928282 100644 --- a/docs/content/reference/types/datatypes/tensor_data.md +++ b/docs/content/reference/types/datatypes/tensor_data.md @@ -51,7 +51,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `TensorData`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1TensorData.html) * 🐍 [Python API docs for `TensorData`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.TensorData) - * 🦀 [Rust API docs for `TensorData`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.TensorData.html) + * 🦀 [Rust API docs for `TensorData`](https://docs.rs/rerun/latest/rerun/datatypes/struct.TensorData.html) ## Used by diff --git a/docs/content/reference/types/datatypes/tensor_dimension.md b/docs/content/reference/types/datatypes/tensor_dimension.md index 21e9de59e8ac..4341e405ac10 100644 --- a/docs/content/reference/types/datatypes/tensor_dimension.md +++ b/docs/content/reference/types/datatypes/tensor_dimension.md @@ -28,7 +28,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `TensorDimension`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1TensorDimension.html) * 🐍 [Python API docs for `TensorDimension`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.TensorDimension) - * 🦀 [Rust API docs for `TensorDimension`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.TensorDimension.html) + * 🦀 [Rust API docs for `TensorDimension`](https://docs.rs/rerun/latest/rerun/datatypes/struct.TensorDimension.html) ## Used by diff --git a/docs/content/reference/types/datatypes/tensor_dimension_index_selection.md b/docs/content/reference/types/datatypes/tensor_dimension_index_selection.md index 5fd99052357c..1373e1455731 100644 --- a/docs/content/reference/types/datatypes/tensor_dimension_index_selection.md +++ b/docs/content/reference/types/datatypes/tensor_dimension_index_selection.md @@ -30,7 +30,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `TensorDimensionIndexSelection`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1TensorDimensionIndexSelection.html) * 🐍 [Python API docs for `TensorDimensionIndexSelection`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.TensorDimensionIndexSelection) - * 🦀 [Rust API docs for `TensorDimensionIndexSelection`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.TensorDimensionIndexSelection.html) + * 🦀 [Rust API docs for `TensorDimensionIndexSelection`](https://docs.rs/rerun/latest/rerun/datatypes/struct.TensorDimensionIndexSelection.html) ## Used by diff --git a/docs/content/reference/types/datatypes/tensor_dimension_selection.md b/docs/content/reference/types/datatypes/tensor_dimension_selection.md index 309a7e0c961a..94d97e242c17 100644 --- a/docs/content/reference/types/datatypes/tensor_dimension_selection.md +++ b/docs/content/reference/types/datatypes/tensor_dimension_selection.md @@ -28,7 +28,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `TensorDimensionSelection`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1TensorDimensionSelection.html) * 🐍 [Python API docs for `TensorDimensionSelection`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.TensorDimensionSelection) - * 🦀 [Rust API docs for `TensorDimensionSelection`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.TensorDimensionSelection.html) + * 🦀 [Rust API docs for `TensorDimensionSelection`](https://docs.rs/rerun/latest/rerun/datatypes/struct.TensorDimensionSelection.html) ## Used by diff --git a/docs/content/reference/types/datatypes/time_int.md b/docs/content/reference/types/datatypes/time_int.md index ce558d4274d6..c121bfaca6cc 100644 --- a/docs/content/reference/types/datatypes/time_int.md +++ b/docs/content/reference/types/datatypes/time_int.md @@ -14,7 +14,7 @@ int64 ## API reference links * 🌊 [C++ API docs for `TimeInt`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1TimeInt.html) * 🐍 [Python API docs for `TimeInt`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.TimeInt) - * 🦀 [Rust API docs for `TimeInt`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.TimeInt.html) + * 🦀 [Rust API docs for `TimeInt`](https://docs.rs/rerun/latest/rerun/datatypes/struct.TimeInt.html) ## Used by diff --git a/docs/content/reference/types/datatypes/time_range.md b/docs/content/reference/types/datatypes/time_range.md index 3215f17d1f56..a4b272616a4c 100644 --- a/docs/content/reference/types/datatypes/time_range.md +++ b/docs/content/reference/types/datatypes/time_range.md @@ -38,7 +38,7 @@ Struct { ## API reference links * 🌊 [C++ API docs for `TimeRange`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1TimeRange.html) * 🐍 [Python API docs for `TimeRange`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.TimeRange) - * 🦀 [Rust API docs for `TimeRange`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.TimeRange.html) + * 🦀 [Rust API docs for `TimeRange`](https://docs.rs/rerun/latest/rerun/datatypes/struct.TimeRange.html) ## Used by diff --git a/docs/content/reference/types/datatypes/time_range_boundary.md b/docs/content/reference/types/datatypes/time_range_boundary.md index 37587816c14c..e409fe485ab0 100644 --- a/docs/content/reference/types/datatypes/time_range_boundary.md +++ b/docs/content/reference/types/datatypes/time_range_boundary.md @@ -35,7 +35,7 @@ DenseUnion { ## API reference links * 🌊 [C++ API docs for `TimeRangeBoundary`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1TimeRangeBoundary.html) * 🐍 [Python API docs for `TimeRangeBoundary`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.TimeRangeBoundary) - * 🦀 [Rust API docs for `TimeRangeBoundary`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/enum.TimeRangeBoundary.html) + * 🦀 [Rust API docs for `TimeRangeBoundary`](https://docs.rs/rerun/latest/rerun/datatypes/enum.TimeRangeBoundary.html) ## Used by diff --git a/docs/content/reference/types/datatypes/uint16.md b/docs/content/reference/types/datatypes/uint16.md index 7eacf8d7f4e5..5609fed94b6f 100644 --- a/docs/content/reference/types/datatypes/uint16.md +++ b/docs/content/reference/types/datatypes/uint16.md @@ -14,6 +14,6 @@ uint16 ## API reference links * 🌊 [C++ API docs for `UInt16`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1UInt16.html) * 🐍 [Python API docs for `UInt16`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.UInt16) - * 🦀 [Rust API docs for `UInt16`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.UInt16.html) + * 🦀 [Rust API docs for `UInt16`](https://docs.rs/rerun/latest/rerun/datatypes/struct.UInt16.html) diff --git a/docs/content/reference/types/datatypes/uint32.md b/docs/content/reference/types/datatypes/uint32.md index e61dd0b78973..144d1ee0e9ac 100644 --- a/docs/content/reference/types/datatypes/uint32.md +++ b/docs/content/reference/types/datatypes/uint32.md @@ -14,6 +14,6 @@ uint32 ## API reference links * 🌊 [C++ API docs for `UInt32`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1UInt32.html) * 🐍 [Python API docs for `UInt32`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.UInt32) - * 🦀 [Rust API docs for `UInt32`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.UInt32.html) + * 🦀 [Rust API docs for `UInt32`](https://docs.rs/rerun/latest/rerun/datatypes/struct.UInt32.html) diff --git a/docs/content/reference/types/datatypes/uint64.md b/docs/content/reference/types/datatypes/uint64.md index 5e6a4cac7c8c..1c0025e56657 100644 --- a/docs/content/reference/types/datatypes/uint64.md +++ b/docs/content/reference/types/datatypes/uint64.md @@ -14,6 +14,6 @@ uint64 ## API reference links * 🌊 [C++ API docs for `UInt64`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1UInt64.html) * 🐍 [Python API docs for `UInt64`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.UInt64) - * 🦀 [Rust API docs for `UInt64`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.UInt64.html) + * 🦀 [Rust API docs for `UInt64`](https://docs.rs/rerun/latest/rerun/datatypes/struct.UInt64.html) diff --git a/docs/content/reference/types/datatypes/utf8.md b/docs/content/reference/types/datatypes/utf8.md index c001e5749dfd..7da350ef1499 100644 --- a/docs/content/reference/types/datatypes/utf8.md +++ b/docs/content/reference/types/datatypes/utf8.md @@ -14,7 +14,7 @@ utf8 ## API reference links * 🌊 [C++ API docs for `Utf8`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Utf8.html) * 🐍 [Python API docs for `Utf8`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Utf8) - * 🦀 [Rust API docs for `Utf8`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Utf8.html) + * 🦀 [Rust API docs for `Utf8`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Utf8.html) ## Used by diff --git a/docs/content/reference/types/datatypes/uuid.md b/docs/content/reference/types/datatypes/uuid.md index 9336d588a8b6..f709faedfc96 100644 --- a/docs/content/reference/types/datatypes/uuid.md +++ b/docs/content/reference/types/datatypes/uuid.md @@ -14,6 +14,6 @@ FixedSizeList<16, uint8> ## API reference links * 🌊 [C++ API docs for `Uuid`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Uuid.html) * 🐍 [Python API docs for `Uuid`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Uuid) - * 🦀 [Rust API docs for `Uuid`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Uuid.html) + * 🦀 [Rust API docs for `Uuid`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Uuid.html) diff --git a/docs/content/reference/types/datatypes/uvec2d.md b/docs/content/reference/types/datatypes/uvec2d.md index 5dacb4dff23e..6215cfb1ceb6 100644 --- a/docs/content/reference/types/datatypes/uvec2d.md +++ b/docs/content/reference/types/datatypes/uvec2d.md @@ -14,6 +14,6 @@ FixedSizeList<2, uint32> ## API reference links * 🌊 [C++ API docs for `UVec2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1UVec2D.html) * 🐍 [Python API docs for `UVec2D`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.UVec2D) - * 🦀 [Rust API docs for `UVec2D`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.UVec2D.html) + * 🦀 [Rust API docs for `UVec2D`](https://docs.rs/rerun/latest/rerun/datatypes/struct.UVec2D.html) diff --git a/docs/content/reference/types/datatypes/uvec3d.md b/docs/content/reference/types/datatypes/uvec3d.md index 20eed478f602..7f9fc18f0779 100644 --- a/docs/content/reference/types/datatypes/uvec3d.md +++ b/docs/content/reference/types/datatypes/uvec3d.md @@ -14,7 +14,7 @@ FixedSizeList<3, uint32> ## API reference links * 🌊 [C++ API docs for `UVec3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1UVec3D.html) * 🐍 [Python API docs for `UVec3D`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.UVec3D) - * 🦀 [Rust API docs for `UVec3D`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.UVec3D.html) + * 🦀 [Rust API docs for `UVec3D`](https://docs.rs/rerun/latest/rerun/datatypes/struct.UVec3D.html) ## Used by diff --git a/docs/content/reference/types/datatypes/uvec4d.md b/docs/content/reference/types/datatypes/uvec4d.md index 14b99ed30036..0f9f3b292534 100644 --- a/docs/content/reference/types/datatypes/uvec4d.md +++ b/docs/content/reference/types/datatypes/uvec4d.md @@ -14,6 +14,6 @@ FixedSizeList<4, uint32> ## API reference links * 🌊 [C++ API docs for `UVec4D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1UVec4D.html) * 🐍 [Python API docs for `UVec4D`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.UVec4D) - * 🦀 [Rust API docs for `UVec4D`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.UVec4D.html) + * 🦀 [Rust API docs for `UVec4D`](https://docs.rs/rerun/latest/rerun/datatypes/struct.UVec4D.html) diff --git a/docs/content/reference/types/datatypes/vec2d.md b/docs/content/reference/types/datatypes/vec2d.md index ace8cd750195..1c9be0557c86 100644 --- a/docs/content/reference/types/datatypes/vec2d.md +++ b/docs/content/reference/types/datatypes/vec2d.md @@ -14,7 +14,7 @@ FixedSizeList<2, float32> ## API reference links * 🌊 [C++ API docs for `Vec2D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Vec2D.html) * 🐍 [Python API docs for `Vec2D`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Vec2D) - * 🦀 [Rust API docs for `Vec2D`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Vec2D.html) + * 🦀 [Rust API docs for `Vec2D`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Vec2D.html) ## Used by diff --git a/docs/content/reference/types/datatypes/vec3d.md b/docs/content/reference/types/datatypes/vec3d.md index f7cf0b665a9c..6de9efa0e522 100644 --- a/docs/content/reference/types/datatypes/vec3d.md +++ b/docs/content/reference/types/datatypes/vec3d.md @@ -14,7 +14,7 @@ FixedSizeList<3, float32> ## API reference links * 🌊 [C++ API docs for `Vec3D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Vec3D.html) * 🐍 [Python API docs for `Vec3D`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Vec3D) - * 🦀 [Rust API docs for `Vec3D`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Vec3D.html) + * 🦀 [Rust API docs for `Vec3D`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Vec3D.html) ## Used by diff --git a/docs/content/reference/types/datatypes/vec4d.md b/docs/content/reference/types/datatypes/vec4d.md index 29cca0e39ed0..26b9f0789b0b 100644 --- a/docs/content/reference/types/datatypes/vec4d.md +++ b/docs/content/reference/types/datatypes/vec4d.md @@ -14,6 +14,6 @@ FixedSizeList<4, float32> ## API reference links * 🌊 [C++ API docs for `Vec4D`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1Vec4D.html) * 🐍 [Python API docs for `Vec4D`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.Vec4D) - * 🦀 [Rust API docs for `Vec4D`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.Vec4D.html) + * 🦀 [Rust API docs for `Vec4D`](https://docs.rs/rerun/latest/rerun/datatypes/struct.Vec4D.html) diff --git a/docs/content/reference/types/datatypes/video_timestamp.md b/docs/content/reference/types/datatypes/video_timestamp.md index 2ef3046aa4e4..a64a6c701f28 100644 --- a/docs/content/reference/types/datatypes/video_timestamp.md +++ b/docs/content/reference/types/datatypes/video_timestamp.md @@ -17,7 +17,7 @@ int64 ## API reference links * 🌊 [C++ API docs for `VideoTimestamp`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1VideoTimestamp.html) * 🐍 [Python API docs for `VideoTimestamp`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.VideoTimestamp) - * 🦀 [Rust API docs for `VideoTimestamp`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.VideoTimestamp.html) + * 🦀 [Rust API docs for `VideoTimestamp`](https://docs.rs/rerun/latest/rerun/datatypes/struct.VideoTimestamp.html) ## Used by diff --git a/docs/content/reference/types/datatypes/view_coordinates.md b/docs/content/reference/types/datatypes/view_coordinates.md index d9fffeb5a4b1..33157fdeeb0b 100644 --- a/docs/content/reference/types/datatypes/view_coordinates.md +++ b/docs/content/reference/types/datatypes/view_coordinates.md @@ -31,7 +31,7 @@ FixedSizeList<3, uint8> ## API reference links * 🌊 [C++ API docs for `ViewCoordinates`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1ViewCoordinates.html) * 🐍 [Python API docs for `ViewCoordinates`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.ViewCoordinates) - * 🦀 [Rust API docs for `ViewCoordinates`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.ViewCoordinates.html) + * 🦀 [Rust API docs for `ViewCoordinates`](https://docs.rs/rerun/latest/rerun/datatypes/struct.ViewCoordinates.html) ## Used by diff --git a/docs/content/reference/types/datatypes/visible_time_range.md b/docs/content/reference/types/datatypes/visible_time_range.md index b177e002158e..6ad2bc9c8cb4 100644 --- a/docs/content/reference/types/datatypes/visible_time_range.md +++ b/docs/content/reference/types/datatypes/visible_time_range.md @@ -41,6 +41,6 @@ Struct { ## API reference links * 🌊 [C++ API docs for `VisibleTimeRange`](https://ref.rerun.io/docs/cpp/stable/structrerun_1_1datatypes_1_1VisibleTimeRange.html) * 🐍 [Python API docs for `VisibleTimeRange`](https://ref.rerun.io/docs/python/stable/common/datatypes#rerun.datatypes.VisibleTimeRange) - * 🦀 [Rust API docs for `VisibleTimeRange`](https://ref.rerun.io/docs/rust/stable/rerun/datatypes/struct.VisibleTimeRange.html) + * 🦀 [Rust API docs for `VisibleTimeRange`](https://docs.rs/rerun/latest/rerun/datatypes/struct.VisibleTimeRange.html) diff --git a/examples/rust/external_data_loader/README.md b/examples/rust/external_data_loader/README.md index 32454e2f8d66..8e2988f3dded 100644 --- a/examples/rust/external_data_loader/README.md +++ b/examples/rust/external_data_loader/README.md @@ -19,6 +19,6 @@ This is an example executable data-loader plugin for the Rerun Viewer. It will log Rust source code files as markdown documents. To try it out, install it in your $PATH (`cargo install --path . -f`), then open a Rust source file with Rerun (`rerun file.rs`). -Consider using the [`send_columns`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStream.html#method.send_columns) API for data loaders that ingest time series data from a file. +Consider using the [`send_columns`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.send_columns) API for data loaders that ingest time series data from a file. This can be much more efficient that the stateful `log` API as it allows bundling component data over time into a single call consuming a continuous block of memory. diff --git a/examples/rust/revy/README.md b/examples/rust/revy/README.md index 15c3124c082d..bb883399ba39 100644 --- a/examples/rust/revy/README.md +++ b/examples/rust/revy/README.md @@ -86,4 +86,4 @@ For more information, check out the [Revy repository](https://github.com/rerun-i }) ``` This will start a Rerun Viewer in the background and stream the recording data to it.\ - Check out the [`RecordingStreamBuilder`](https://ref.rerun.io/docs/rust/stable/rerun/struct.RecordingStreamBuilder.html) docs for other options (saving to file, connecting to a remote viewer, etc). + Check out the [`RecordingStreamBuilder`](https://docs.rs/rerun/latest/rerun/struct.RecordingStreamBuilder.html) docs for other options (saving to file, connecting to a remote viewer, etc). From b85fa9f9363ed2c4b2c2ae489334cdabd0b662af Mon Sep 17 00:00:00 2001 From: rerun-bot Date: Thu, 21 Nov 2024 08:12:13 +0000 Subject: [PATCH 15/16] Bump versions to 0.20.1 --- Cargo.lock | 226 +++++++++--------- Cargo.toml | 128 +++++----- examples/rust/clock/Cargo.toml | 2 +- examples/rust/custom_data_loader/Cargo.toml | 2 +- examples/rust/custom_space_view/Cargo.toml | 2 +- .../rust/custom_store_subscriber/Cargo.toml | 2 +- examples/rust/dataframe_query/Cargo.toml | 2 +- examples/rust/dna/Cargo.toml | 2 +- examples/rust/extend_viewer_ui/Cargo.toml | 2 +- examples/rust/external_data_loader/Cargo.toml | 2 +- examples/rust/incremental_logging/Cargo.toml | 2 +- examples/rust/log_file/Cargo.toml | 2 +- examples/rust/minimal/Cargo.toml | 2 +- examples/rust/minimal_options/Cargo.toml | 2 +- examples/rust/minimal_serve/Cargo.toml | 2 +- examples/rust/objectron/Cargo.toml | 2 +- examples/rust/raw_mesh/Cargo.toml | 2 +- examples/rust/shared_recording/Cargo.toml | 2 +- examples/rust/spawn_viewer/Cargo.toml | 2 +- examples/rust/stdio/Cargo.toml | 2 +- examples/rust/template/Cargo.toml | 2 +- pixi.lock | 10 +- rerun_cpp/src/rerun/c/sdk_info.h | 2 +- rerun_js/web-viewer-react/README.md | 2 +- rerun_js/web-viewer-react/package.json | 4 +- rerun_js/web-viewer/README.md | 2 +- rerun_js/web-viewer/package.json | 2 +- rerun_notebook/pyproject.toml | 2 +- rerun_py/pyproject.toml | 2 +- rerun_py/rerun_sdk/rerun/__init__.py | 4 +- 30 files changed, 211 insertions(+), 211 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cc1763d67d1c..10e369b09fdf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1360,7 +1360,7 @@ dependencies = [ [[package]] name = "clock" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -1718,7 +1718,7 @@ checksum = "96a6ac251f4a2aca6b3f91340350eab87ae57c3f127ffeb585e92bd336717991" [[package]] name = "custom_data_loader" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "re_build_tools", "rerun", @@ -1726,7 +1726,7 @@ dependencies = [ [[package]] name = "custom_space_view" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "mimalloc", "re_crash_handler", @@ -1736,7 +1736,7 @@ dependencies = [ [[package]] name = "custom_store_subscriber" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "re_build_tools", "rerun", @@ -1790,7 +1790,7 @@ checksum = "5c297a1c74b71ae29df00c3e22dd9534821d60eb9af5a0192823fa2acea70c2a" [[package]] name = "dataframe_query" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "itertools 0.13.0", "rerun", @@ -1861,7 +1861,7 @@ dependencies = [ [[package]] name = "dna" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "itertools 0.13.0", "rand", @@ -2349,7 +2349,7 @@ dependencies = [ [[package]] name = "extend_viewer_ui" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "mimalloc", "re_crash_handler", @@ -3300,7 +3300,7 @@ dependencies = [ [[package]] name = "incremental_logging" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -3714,7 +3714,7 @@ dependencies = [ [[package]] name = "log_benchmark" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -3725,7 +3725,7 @@ dependencies = [ [[package]] name = "log_file" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -3903,14 +3903,14 @@ dependencies = [ [[package]] name = "minimal" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "rerun", ] [[package]] name = "minimal_options" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -3920,7 +3920,7 @@ dependencies = [ [[package]] name = "minimal_serve" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "rerun", ] @@ -4521,7 +4521,7 @@ dependencies = [ [[package]] name = "objectron" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -4747,7 +4747,7 @@ dependencies = [ [[package]] name = "plot_dashboard_stress" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -5240,7 +5240,7 @@ checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" [[package]] name = "raw_mesh" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "bytes", @@ -5283,7 +5283,7 @@ checksum = "3b42e27ef78c35d3998403c1d26f3efd9e135d3e5121b0a4845cc5cc27547f4f" [[package]] name = "re_analytics" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "crossbeam", "directories", @@ -5330,7 +5330,7 @@ dependencies = [ [[package]] name = "re_blueprint_tree" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "egui", "itertools 0.13.0", @@ -5349,14 +5349,14 @@ dependencies = [ [[package]] name = "re_build_info" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "serde", ] [[package]] name = "re_build_tools" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "cargo_metadata 0.18.1", @@ -5369,14 +5369,14 @@ dependencies = [ [[package]] name = "re_case" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "convert_case", ] [[package]] name = "re_chunk" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "ahash", "anyhow", @@ -5405,7 +5405,7 @@ dependencies = [ [[package]] name = "re_chunk_store" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "ahash", "anyhow", @@ -5436,7 +5436,7 @@ dependencies = [ [[package]] name = "re_chunk_store_ui" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "egui", "egui_extras", @@ -5451,7 +5451,7 @@ dependencies = [ [[package]] name = "re_component_ui" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "egui", "egui_extras", @@ -5468,7 +5468,7 @@ dependencies = [ [[package]] name = "re_context_menu" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "egui", "egui_tiles", @@ -5489,7 +5489,7 @@ dependencies = [ [[package]] name = "re_crash_handler" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "backtrace", "econtext", @@ -5502,7 +5502,7 @@ dependencies = [ [[package]] name = "re_data_loader" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "ahash", "anyhow", @@ -5531,7 +5531,7 @@ dependencies = [ [[package]] name = "re_data_source" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "itertools 0.13.0", @@ -5549,7 +5549,7 @@ dependencies = [ [[package]] name = "re_data_ui" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "ahash", "anyhow", @@ -5578,7 +5578,7 @@ dependencies = [ [[package]] name = "re_dataframe" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "itertools 0.13.0", @@ -5601,7 +5601,7 @@ dependencies = [ [[package]] name = "re_dev_tools" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "argh", @@ -5628,7 +5628,7 @@ dependencies = [ [[package]] name = "re_entity_db" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "ahash", "anyhow", @@ -5661,21 +5661,21 @@ dependencies = [ [[package]] name = "re_error" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", ] [[package]] name = "re_format" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "num-traits", ] [[package]] name = "re_format_arrow" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "comfy-table", "re_arrow2", @@ -5685,7 +5685,7 @@ dependencies = [ [[package]] name = "re_grpc_client" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "re_chunk", "re_error", @@ -5703,7 +5703,7 @@ dependencies = [ [[package]] name = "re_int_histogram" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "criterion", "insta", @@ -5714,7 +5714,7 @@ dependencies = [ [[package]] name = "re_log" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "env_logger", "js-sys", @@ -5727,7 +5727,7 @@ dependencies = [ [[package]] name = "re_log_encoding" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "criterion", "ehttp", @@ -5753,7 +5753,7 @@ dependencies = [ [[package]] name = "re_log_types" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "ahash", "anyhow", @@ -5802,7 +5802,7 @@ dependencies = [ [[package]] name = "re_memory" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "ahash", "backtrace", @@ -5837,7 +5837,7 @@ dependencies = [ [[package]] name = "re_protos" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "prost", "re_arrow2", @@ -5850,7 +5850,7 @@ dependencies = [ [[package]] name = "re_protos_builder" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "camino", "re_log", @@ -5859,7 +5859,7 @@ dependencies = [ [[package]] name = "re_query" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "ahash", "anyhow", @@ -5913,7 +5913,7 @@ dependencies = [ [[package]] name = "re_renderer" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "ahash", "anyhow", @@ -5966,7 +5966,7 @@ dependencies = [ [[package]] name = "re_renderer_examples" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "ahash", "anyhow", @@ -5990,7 +5990,7 @@ dependencies = [ [[package]] name = "re_sdk" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "ahash", "crossbeam", @@ -6024,7 +6024,7 @@ dependencies = [ [[package]] name = "re_sdk_comms" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "ahash", "crossbeam", @@ -6040,7 +6040,7 @@ dependencies = [ [[package]] name = "re_selection_panel" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "egui", "egui_tiles", @@ -6070,7 +6070,7 @@ dependencies = [ [[package]] name = "re_smart_channel" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "crossbeam", "parking_lot", @@ -6081,7 +6081,7 @@ dependencies = [ [[package]] name = "re_space_view" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "ahash", "bytemuck", @@ -6105,7 +6105,7 @@ dependencies = [ [[package]] name = "re_space_view_bar_chart" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "egui", "egui_plot", @@ -6123,7 +6123,7 @@ dependencies = [ [[package]] name = "re_space_view_dataframe" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "egui", @@ -6146,7 +6146,7 @@ dependencies = [ [[package]] name = "re_space_view_map" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "bytemuck", "egui", @@ -6170,7 +6170,7 @@ dependencies = [ [[package]] name = "re_space_view_spatial" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "ahash", "anyhow", @@ -6213,7 +6213,7 @@ dependencies = [ [[package]] name = "re_space_view_tensor" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "bytemuck", @@ -6237,7 +6237,7 @@ dependencies = [ [[package]] name = "re_space_view_text_document" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "egui", "egui_commonmark", @@ -6252,7 +6252,7 @@ dependencies = [ [[package]] name = "re_space_view_text_log" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "egui", "egui_extras", @@ -6272,7 +6272,7 @@ dependencies = [ [[package]] name = "re_space_view_time_series" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "egui", "egui_plot", @@ -6294,7 +6294,7 @@ dependencies = [ [[package]] name = "re_string_interner" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "ahash", "nohash-hasher", @@ -6306,7 +6306,7 @@ dependencies = [ [[package]] name = "re_time_panel" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "criterion", @@ -6331,7 +6331,7 @@ dependencies = [ [[package]] name = "re_tracing" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "puffin", "puffin_http", @@ -6342,7 +6342,7 @@ dependencies = [ [[package]] name = "re_tuid" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "criterion", "document-features", @@ -6354,7 +6354,7 @@ dependencies = [ [[package]] name = "re_types" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "array-init", @@ -6394,7 +6394,7 @@ dependencies = [ [[package]] name = "re_types_blueprint" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "once_cell", "re_arrow2", @@ -6405,7 +6405,7 @@ dependencies = [ [[package]] name = "re_types_builder" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "arrow", @@ -6433,7 +6433,7 @@ dependencies = [ [[package]] name = "re_types_core" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "backtrace", @@ -6456,7 +6456,7 @@ dependencies = [ [[package]] name = "re_ui" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "eframe", "egui", @@ -6480,7 +6480,7 @@ dependencies = [ [[package]] name = "re_video" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "bit-vec", "cfg_aliases 0.2.1", @@ -6507,7 +6507,7 @@ dependencies = [ [[package]] name = "re_viewer" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "ahash", "anyhow", @@ -6584,7 +6584,7 @@ dependencies = [ [[package]] name = "re_viewer_context" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "ahash", "anyhow", @@ -6638,7 +6638,7 @@ dependencies = [ [[package]] name = "re_viewport" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "ahash", "egui", @@ -6664,7 +6664,7 @@ dependencies = [ [[package]] name = "re_viewport_blueprint" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "ahash", "egui", @@ -6691,7 +6691,7 @@ dependencies = [ [[package]] name = "re_web_viewer_server" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "document-features", "re_analytics", @@ -6702,7 +6702,7 @@ dependencies = [ [[package]] name = "re_ws_comms" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "bincode", @@ -6899,7 +6899,7 @@ dependencies = [ [[package]] name = "rerun" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -6939,7 +6939,7 @@ dependencies = [ [[package]] name = "rerun-cli" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "document-features", "mimalloc", @@ -6954,7 +6954,7 @@ dependencies = [ [[package]] name = "rerun-loader-rust-file" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "argh", @@ -6963,7 +6963,7 @@ dependencies = [ [[package]] name = "rerun_c" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "ahash", "infer", @@ -6977,7 +6977,7 @@ dependencies = [ [[package]] name = "rerun_py" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "arrow", "crossbeam", @@ -7108,7 +7108,7 @@ dependencies = [ [[package]] name = "roundtrip_annotation_context" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -7118,7 +7118,7 @@ dependencies = [ [[package]] name = "roundtrip_arrows2d" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -7128,7 +7128,7 @@ dependencies = [ [[package]] name = "roundtrip_arrows3d" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -7138,7 +7138,7 @@ dependencies = [ [[package]] name = "roundtrip_boxes2d" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -7148,7 +7148,7 @@ dependencies = [ [[package]] name = "roundtrip_boxes3d" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -7158,7 +7158,7 @@ dependencies = [ [[package]] name = "roundtrip_depth_image" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -7169,7 +7169,7 @@ dependencies = [ [[package]] name = "roundtrip_disconnected_space" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -7179,7 +7179,7 @@ dependencies = [ [[package]] name = "roundtrip_image" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -7192,7 +7192,7 @@ dependencies = [ [[package]] name = "roundtrip_line_strips2d" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -7202,7 +7202,7 @@ dependencies = [ [[package]] name = "roundtrip_line_strips3d" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -7212,7 +7212,7 @@ dependencies = [ [[package]] name = "roundtrip_pinhole" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -7222,7 +7222,7 @@ dependencies = [ [[package]] name = "roundtrip_points2d" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -7232,7 +7232,7 @@ dependencies = [ [[package]] name = "roundtrip_points3d" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -7242,7 +7242,7 @@ dependencies = [ [[package]] name = "roundtrip_segmentation_image" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -7253,7 +7253,7 @@ dependencies = [ [[package]] name = "roundtrip_tensor" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -7264,7 +7264,7 @@ dependencies = [ [[package]] name = "roundtrip_text_document" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -7274,7 +7274,7 @@ dependencies = [ [[package]] name = "roundtrip_text_log" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -7284,7 +7284,7 @@ dependencies = [ [[package]] name = "roundtrip_transform3d" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -7294,7 +7294,7 @@ dependencies = [ [[package]] name = "roundtrip_view_coordinates" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -7304,7 +7304,7 @@ dependencies = [ [[package]] name = "roundtrip_visible_time_ranges" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -7320,7 +7320,7 @@ checksum = "3cd14fd5e3b777a7422cca79358c57a8f6e3a703d9ac187448d0daf220c2407f" [[package]] name = "run_wasm" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "cargo-run-wasm", "pico-args", @@ -7712,7 +7712,7 @@ dependencies = [ [[package]] name = "shared_recording" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "rerun", ] @@ -7891,7 +7891,7 @@ dependencies = [ [[package]] name = "snippets" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "itertools 0.13.0", "ndarray", @@ -7914,7 +7914,7 @@ dependencies = [ [[package]] name = "spawn_viewer" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "rerun", ] @@ -7965,7 +7965,7 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" [[package]] name = "stdio" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "rerun", ] @@ -8131,7 +8131,7 @@ dependencies = [ [[package]] name = "template" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "rerun", ] @@ -8147,7 +8147,7 @@ dependencies = [ [[package]] name = "test_api" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -8162,7 +8162,7 @@ dependencies = [ [[package]] name = "test_data_density_graph" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "rand", @@ -8172,7 +8172,7 @@ dependencies = [ [[package]] name = "test_image_memory" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "mimalloc", "re_format", @@ -8181,7 +8181,7 @@ dependencies = [ [[package]] name = "test_pinhole_projection" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", @@ -8192,7 +8192,7 @@ dependencies = [ [[package]] name = "test_send_columns" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "re_chunk", "rerun", @@ -8200,7 +8200,7 @@ dependencies = [ [[package]] name = "test_ui_wakeup" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index b675f5be3383..f7c2a85a99dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ include = ["../../LICENSE-APACHE", "../../LICENSE-MIT", "**/*.rs", "Cargo.toml"] license = "MIT OR Apache-2.0" repository = "https://github.com/rerun-io/rerun" rust-version = "1.79" -version = "0.20.1-rc.1" +version = "0.20.1" [workspace.dependencies] # When using alpha-release, always use exact version, e.g. `version = "=0.x.y-alpha.z" @@ -34,77 +34,77 @@ version = "0.20.1-rc.1" # re_log_types 0.3.0-alpha.0, NOT 0.3.0-alpha.4 even though it is newer and semver-compatible. # crates/build: -re_build_info = { path = "crates/build/re_build_info", version = "=0.20.1-rc.1", default-features = false } -re_build_tools = { path = "crates/build/re_build_tools", version = "=0.20.1-rc.1", default-features = false } -re_dev_tools = { path = "crates/build/re_dev_tools", version = "=0.20.1-rc.1", default-features = false } -re_protos_builder = { path = "crates/build/re_protos_builder", version = "=0.20.1-rc.1", default-features = false } -re_types_builder = { path = "crates/build/re_types_builder", version = "=0.20.1-rc.1", default-features = false } +re_build_info = { path = "crates/build/re_build_info", version = "0.20.1", default-features = false } +re_build_tools = { path = "crates/build/re_build_tools", version = "0.20.1", default-features = false } +re_dev_tools = { path = "crates/build/re_dev_tools", version = "0.20.1", default-features = false } +re_protos_builder = { path = "crates/build/re_protos_builder", version = "0.20.1", default-features = false } +re_types_builder = { path = "crates/build/re_types_builder", version = "0.20.1", default-features = false } # crates/store: -re_chunk = { path = "crates/store/re_chunk", version = "=0.20.1-rc.1", default-features = false } -re_chunk_store = { path = "crates/store/re_chunk_store", version = "=0.20.1-rc.1", default-features = false } -re_data_loader = { path = "crates/store/re_data_loader", version = "=0.20.1-rc.1", default-features = false } -re_data_source = { path = "crates/store/re_data_source", version = "=0.20.1-rc.1", default-features = false } -re_dataframe = { path = "crates/store/re_dataframe", version = "=0.20.1-rc.1", default-features = false } -re_entity_db = { path = "crates/store/re_entity_db", version = "=0.20.1-rc.1", default-features = false } -re_format_arrow = { path = "crates/store/re_format_arrow", version = "=0.20.1-rc.1", default-features = false } -re_grpc_client = { path = "crates/store/re_grpc_client", version = "=0.20.1-rc.1", default-features = false } -re_protos = { path = "crates/store/re_protos", version = "=0.20.1-rc.1", default-features = false } -re_log_encoding = { path = "crates/store/re_log_encoding", version = "=0.20.1-rc.1", default-features = false } -re_log_types = { path = "crates/store/re_log_types", version = "=0.20.1-rc.1", default-features = false } -re_query = { path = "crates/store/re_query", version = "=0.20.1-rc.1", default-features = false } -re_sdk_comms = { path = "crates/store/re_sdk_comms", version = "=0.20.1-rc.1", default-features = false } -re_types = { path = "crates/store/re_types", version = "=0.20.1-rc.1", default-features = false } -re_types_blueprint = { path = "crates/store/re_types_blueprint", version = "=0.20.1-rc.1", default-features = false } -re_types_core = { path = "crates/store/re_types_core", version = "=0.20.1-rc.1", default-features = false } -re_video = { path = "crates/store/re_video", version = "=0.20.1-rc.1", default-features = false } -re_ws_comms = { path = "crates/store/re_ws_comms", version = "=0.20.1-rc.1", default-features = false } +re_chunk = { path = "crates/store/re_chunk", version = "0.20.1", default-features = false } +re_chunk_store = { path = "crates/store/re_chunk_store", version = "0.20.1", default-features = false } +re_data_loader = { path = "crates/store/re_data_loader", version = "0.20.1", default-features = false } +re_data_source = { path = "crates/store/re_data_source", version = "0.20.1", default-features = false } +re_dataframe = { path = "crates/store/re_dataframe", version = "0.20.1", default-features = false } +re_entity_db = { path = "crates/store/re_entity_db", version = "0.20.1", default-features = false } +re_format_arrow = { path = "crates/store/re_format_arrow", version = "0.20.1", default-features = false } +re_grpc_client = { path = "crates/store/re_grpc_client", version = "0.20.1", default-features = false } +re_protos = { path = "crates/store/re_protos", version = "0.20.1", default-features = false } +re_log_encoding = { path = "crates/store/re_log_encoding", version = "0.20.1", default-features = false } +re_log_types = { path = "crates/store/re_log_types", version = "0.20.1", default-features = false } +re_query = { path = "crates/store/re_query", version = "0.20.1", default-features = false } +re_sdk_comms = { path = "crates/store/re_sdk_comms", version = "0.20.1", default-features = false } +re_types = { path = "crates/store/re_types", version = "0.20.1", default-features = false } +re_types_blueprint = { path = "crates/store/re_types_blueprint", version = "0.20.1", default-features = false } +re_types_core = { path = "crates/store/re_types_core", version = "0.20.1", default-features = false } +re_video = { path = "crates/store/re_video", version = "0.20.1", default-features = false } +re_ws_comms = { path = "crates/store/re_ws_comms", version = "0.20.1", default-features = false } # crates/top: -re_sdk = { path = "crates/top/re_sdk", version = "=0.20.1-rc.1", default-features = false } -rerun = { path = "crates/top/rerun", version = "=0.20.1-rc.1", default-features = false } -rerun_c = { path = "crates/top/rerun_c", version = "=0.20.1-rc.1", default-features = false } -rerun-cli = { path = "crates/top/rerun-cli", version = "=0.20.1-rc.1", default-features = false } +re_sdk = { path = "crates/top/re_sdk", version = "0.20.1", default-features = false } +rerun = { path = "crates/top/rerun", version = "0.20.1", default-features = false } +rerun_c = { path = "crates/top/rerun_c", version = "0.20.1", default-features = false } +rerun-cli = { path = "crates/top/rerun-cli", version = "0.20.1", default-features = false } # crates/utils: -re_analytics = { path = "crates/utils/re_analytics", version = "=0.20.1-rc.1", default-features = false } -re_case = { path = "crates/utils/re_case", version = "=0.20.1-rc.1", default-features = false } -re_crash_handler = { path = "crates/utils/re_crash_handler", version = "=0.20.1-rc.1", default-features = false } -re_error = { path = "crates/utils/re_error", version = "=0.20.1-rc.1", default-features = false } -re_format = { path = "crates/utils/re_format", version = "=0.20.1-rc.1", default-features = false } -re_int_histogram = { path = "crates/utils/re_int_histogram", version = "=0.20.1-rc.1", default-features = false } -re_log = { path = "crates/utils/re_log", version = "=0.20.1-rc.1", default-features = false } -re_memory = { path = "crates/utils/re_memory", version = "=0.20.1-rc.1", default-features = false } -re_smart_channel = { path = "crates/utils/re_smart_channel", version = "=0.20.1-rc.1", default-features = false } -re_string_interner = { path = "crates/utils/re_string_interner", version = "=0.20.1-rc.1", default-features = false } -re_tracing = { path = "crates/utils/re_tracing", version = "=0.20.1-rc.1", default-features = false } -re_tuid = { path = "crates/utils/re_tuid", version = "=0.20.1-rc.1", default-features = false } +re_analytics = { path = "crates/utils/re_analytics", version = "0.20.1", default-features = false } +re_case = { path = "crates/utils/re_case", version = "0.20.1", default-features = false } +re_crash_handler = { path = "crates/utils/re_crash_handler", version = "0.20.1", default-features = false } +re_error = { path = "crates/utils/re_error", version = "0.20.1", default-features = false } +re_format = { path = "crates/utils/re_format", version = "0.20.1", default-features = false } +re_int_histogram = { path = "crates/utils/re_int_histogram", version = "0.20.1", default-features = false } +re_log = { path = "crates/utils/re_log", version = "0.20.1", default-features = false } +re_memory = { path = "crates/utils/re_memory", version = "0.20.1", default-features = false } +re_smart_channel = { path = "crates/utils/re_smart_channel", version = "0.20.1", default-features = false } +re_string_interner = { path = "crates/utils/re_string_interner", version = "0.20.1", default-features = false } +re_tracing = { path = "crates/utils/re_tracing", version = "0.20.1", default-features = false } +re_tuid = { path = "crates/utils/re_tuid", version = "0.20.1", default-features = false } # crates/viewer: -re_blueprint_tree = { path = "crates/viewer/re_blueprint_tree", version = "=0.20.1-rc.1", default-features = false } -re_component_ui = { path = "crates/viewer/re_component_ui", version = "=0.20.1-rc.1", default-features = false } -re_context_menu = { path = "crates/viewer/re_context_menu", version = "=0.20.1-rc.1", default-features = false } -re_data_ui = { path = "crates/viewer/re_data_ui", version = "=0.20.1-rc.1", default-features = false } -re_chunk_store_ui = { path = "crates/viewer/re_chunk_store_ui", version = "=0.20.1-rc.1", default-features = false } -re_renderer = { path = "crates/viewer/re_renderer", version = "=0.20.1-rc.1", default-features = false } -re_renderer_examples = { path = "crates/viewer/re_renderer_examples", version = "=0.20.1-rc.1", default-features = false } -re_selection_panel = { path = "crates/viewer/re_selection_panel", version = "=0.20.1-rc.1", default-features = false } -re_space_view = { path = "crates/viewer/re_space_view", version = "=0.20.1-rc.1", default-features = false } -re_space_view_bar_chart = { path = "crates/viewer/re_space_view_bar_chart", version = "=0.20.1-rc.1", default-features = false } -re_space_view_spatial = { path = "crates/viewer/re_space_view_spatial", version = "=0.20.1-rc.1", default-features = false } -re_space_view_dataframe = { path = "crates/viewer/re_space_view_dataframe", version = "=0.20.1-rc.1", default-features = false } -re_space_view_map = { path = "crates/viewer/re_space_view_map", version = "=0.20.1-rc.1", default-features = false } -re_space_view_tensor = { path = "crates/viewer/re_space_view_tensor", version = "=0.20.1-rc.1", default-features = false } -re_space_view_text_document = { path = "crates/viewer/re_space_view_text_document", version = "=0.20.1-rc.1", default-features = false } -re_space_view_text_log = { path = "crates/viewer/re_space_view_text_log", version = "=0.20.1-rc.1", default-features = false } -re_space_view_time_series = { path = "crates/viewer/re_space_view_time_series", version = "=0.20.1-rc.1", default-features = false } -re_time_panel = { path = "crates/viewer/re_time_panel", version = "=0.20.1-rc.1", default-features = false } -re_ui = { path = "crates/viewer/re_ui", version = "=0.20.1-rc.1", default-features = false } -re_viewer = { path = "crates/viewer/re_viewer", version = "=0.20.1-rc.1", default-features = false } -re_viewer_context = { path = "crates/viewer/re_viewer_context", version = "=0.20.1-rc.1", default-features = false } -re_viewport = { path = "crates/viewer/re_viewport", version = "=0.20.1-rc.1", default-features = false } -re_viewport_blueprint = { path = "crates/viewer/re_viewport_blueprint", version = "=0.20.1-rc.1", default-features = false } -re_web_viewer_server = { path = "crates/viewer/re_web_viewer_server", version = "=0.20.1-rc.1", default-features = false } +re_blueprint_tree = { path = "crates/viewer/re_blueprint_tree", version = "0.20.1", default-features = false } +re_component_ui = { path = "crates/viewer/re_component_ui", version = "0.20.1", default-features = false } +re_context_menu = { path = "crates/viewer/re_context_menu", version = "0.20.1", default-features = false } +re_data_ui = { path = "crates/viewer/re_data_ui", version = "0.20.1", default-features = false } +re_chunk_store_ui = { path = "crates/viewer/re_chunk_store_ui", version = "0.20.1", default-features = false } +re_renderer = { path = "crates/viewer/re_renderer", version = "0.20.1", default-features = false } +re_renderer_examples = { path = "crates/viewer/re_renderer_examples", version = "0.20.1", default-features = false } +re_selection_panel = { path = "crates/viewer/re_selection_panel", version = "0.20.1", default-features = false } +re_space_view = { path = "crates/viewer/re_space_view", version = "0.20.1", default-features = false } +re_space_view_bar_chart = { path = "crates/viewer/re_space_view_bar_chart", version = "0.20.1", default-features = false } +re_space_view_spatial = { path = "crates/viewer/re_space_view_spatial", version = "0.20.1", default-features = false } +re_space_view_dataframe = { path = "crates/viewer/re_space_view_dataframe", version = "0.20.1", default-features = false } +re_space_view_map = { path = "crates/viewer/re_space_view_map", version = "0.20.1", default-features = false } +re_space_view_tensor = { path = "crates/viewer/re_space_view_tensor", version = "0.20.1", default-features = false } +re_space_view_text_document = { path = "crates/viewer/re_space_view_text_document", version = "0.20.1", default-features = false } +re_space_view_text_log = { path = "crates/viewer/re_space_view_text_log", version = "0.20.1", default-features = false } +re_space_view_time_series = { path = "crates/viewer/re_space_view_time_series", version = "0.20.1", default-features = false } +re_time_panel = { path = "crates/viewer/re_time_panel", version = "0.20.1", default-features = false } +re_ui = { path = "crates/viewer/re_ui", version = "0.20.1", default-features = false } +re_viewer = { path = "crates/viewer/re_viewer", version = "0.20.1", default-features = false } +re_viewer_context = { path = "crates/viewer/re_viewer_context", version = "0.20.1", default-features = false } +re_viewport = { path = "crates/viewer/re_viewport", version = "0.20.1", default-features = false } +re_viewport_blueprint = { path = "crates/viewer/re_viewport_blueprint", version = "0.20.1", default-features = false } +re_web_viewer_server = { path = "crates/viewer/re_web_viewer_server", version = "0.20.1", default-features = false } # Rerun crates in other repos: ewebsock = "0.8.0" diff --git a/examples/rust/clock/Cargo.toml b/examples/rust/clock/Cargo.toml index 9d3d4a02a6a1..9e82f9740507 100644 --- a/examples/rust/clock/Cargo.toml +++ b/examples/rust/clock/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clock" -version = "0.20.1-rc.1" +version = "0.20.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/custom_data_loader/Cargo.toml b/examples/rust/custom_data_loader/Cargo.toml index 39aaa99d8add..34cd6bd8b27e 100644 --- a/examples/rust/custom_data_loader/Cargo.toml +++ b/examples/rust/custom_data_loader/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "custom_data_loader" -version = "0.20.1-rc.1" +version = "0.20.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/custom_space_view/Cargo.toml b/examples/rust/custom_space_view/Cargo.toml index 758df6024383..fe847b9798dc 100644 --- a/examples/rust/custom_space_view/Cargo.toml +++ b/examples/rust/custom_space_view/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "custom_space_view" -version = "0.20.1-rc.1" +version = "0.20.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/custom_store_subscriber/Cargo.toml b/examples/rust/custom_store_subscriber/Cargo.toml index 18d9f5ccadc9..c6403dea8c5a 100644 --- a/examples/rust/custom_store_subscriber/Cargo.toml +++ b/examples/rust/custom_store_subscriber/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "custom_store_subscriber" -version = "0.20.1-rc.1" +version = "0.20.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/dataframe_query/Cargo.toml b/examples/rust/dataframe_query/Cargo.toml index 83965ade30c8..edb5ebea62f7 100644 --- a/examples/rust/dataframe_query/Cargo.toml +++ b/examples/rust/dataframe_query/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dataframe_query" -version = "0.20.1-rc.1" +version = "0.20.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/dna/Cargo.toml b/examples/rust/dna/Cargo.toml index a2e68f6ee2d3..39944692a555 100644 --- a/examples/rust/dna/Cargo.toml +++ b/examples/rust/dna/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dna" -version = "0.20.1-rc.1" +version = "0.20.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/extend_viewer_ui/Cargo.toml b/examples/rust/extend_viewer_ui/Cargo.toml index 9b8e637afb9c..e96523758e9a 100644 --- a/examples/rust/extend_viewer_ui/Cargo.toml +++ b/examples/rust/extend_viewer_ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "extend_viewer_ui" -version = "0.20.1-rc.1" +version = "0.20.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/external_data_loader/Cargo.toml b/examples/rust/external_data_loader/Cargo.toml index a6cd403c08c4..30b5a3d773de 100644 --- a/examples/rust/external_data_loader/Cargo.toml +++ b/examples/rust/external_data_loader/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rerun-loader-rust-file" -version = "0.20.1-rc.1" +version = "0.20.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/incremental_logging/Cargo.toml b/examples/rust/incremental_logging/Cargo.toml index 219100091934..51e5f2d0fb75 100644 --- a/examples/rust/incremental_logging/Cargo.toml +++ b/examples/rust/incremental_logging/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "incremental_logging" -version = "0.20.1-rc.1" +version = "0.20.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/log_file/Cargo.toml b/examples/rust/log_file/Cargo.toml index a1a127c539e6..8afe64b80cf4 100644 --- a/examples/rust/log_file/Cargo.toml +++ b/examples/rust/log_file/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "log_file" -version = "0.20.1-rc.1" +version = "0.20.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/minimal/Cargo.toml b/examples/rust/minimal/Cargo.toml index 68744f16c360..20012f1a8380 100644 --- a/examples/rust/minimal/Cargo.toml +++ b/examples/rust/minimal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minimal" -version = "0.20.1-rc.1" +version = "0.20.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/minimal_options/Cargo.toml b/examples/rust/minimal_options/Cargo.toml index 9deb4cf91295..d1b2f390cc9c 100644 --- a/examples/rust/minimal_options/Cargo.toml +++ b/examples/rust/minimal_options/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minimal_options" -version = "0.20.1-rc.1" +version = "0.20.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/minimal_serve/Cargo.toml b/examples/rust/minimal_serve/Cargo.toml index f57e9953c576..98d25c858a4b 100644 --- a/examples/rust/minimal_serve/Cargo.toml +++ b/examples/rust/minimal_serve/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minimal_serve" -version = "0.20.1-rc.1" +version = "0.20.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/objectron/Cargo.toml b/examples/rust/objectron/Cargo.toml index ef12a067e5a1..b981d1a0e299 100644 --- a/examples/rust/objectron/Cargo.toml +++ b/examples/rust/objectron/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "objectron" -version = "0.20.1-rc.1" +version = "0.20.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/raw_mesh/Cargo.toml b/examples/rust/raw_mesh/Cargo.toml index 4e288ca048cc..ecf6d0d7dc14 100644 --- a/examples/rust/raw_mesh/Cargo.toml +++ b/examples/rust/raw_mesh/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "raw_mesh" -version = "0.20.1-rc.1" +version = "0.20.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/shared_recording/Cargo.toml b/examples/rust/shared_recording/Cargo.toml index 4757b36bf0d3..b8b5f4cabfb4 100644 --- a/examples/rust/shared_recording/Cargo.toml +++ b/examples/rust/shared_recording/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shared_recording" -version = "0.20.1-rc.1" +version = "0.20.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/spawn_viewer/Cargo.toml b/examples/rust/spawn_viewer/Cargo.toml index 993f24218dbd..71f49f6d3eb8 100644 --- a/examples/rust/spawn_viewer/Cargo.toml +++ b/examples/rust/spawn_viewer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spawn_viewer" -version = "0.20.1-rc.1" +version = "0.20.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/stdio/Cargo.toml b/examples/rust/stdio/Cargo.toml index d31de7b8a986..7439ec00f863 100644 --- a/examples/rust/stdio/Cargo.toml +++ b/examples/rust/stdio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stdio" -version = "0.20.1-rc.1" +version = "0.20.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/template/Cargo.toml b/examples/rust/template/Cargo.toml index 9f6c10ed94ea..419dcd25672f 100644 --- a/examples/rust/template/Cargo.toml +++ b/examples/rust/template/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "template" -version = "0.20.1-rc.1" +version = "0.20.1" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/pixi.lock b/pixi.lock index b78b6ba8c19b..5e1ab9d47f82 100644 --- a/pixi.lock +++ b/pixi.lock @@ -35333,9 +35333,9 @@ packages: - watchfiles ; extra == 'dev' - kind: pypi name: rerun-notebook - version: 0.20.1rc1 + version: 0.20.1 path: rerun_notebook - sha256: 541116a264c4af104b402d3817ea0982a5dc939c9770d2132f1226a036628ea1 + sha256: 4c78b7726314edadb33cf833e908db74ba367473da5cb94e0b8f27a3ce7e6a51 requires_dist: - anywidget - jupyter-ui-poll @@ -35415,9 +35415,9 @@ packages: requires_python: '>=3.8,<3.13' - kind: pypi name: rerun-sdk - version: 0.20.1rc1 + version: 0.20.1 path: rerun_py - sha256: b50ec42c6a7dd56ce04057b9f4951199ed581438f383e5f13b3937fecf8d88e5 + sha256: c738b12ad20abd12008b1b1d6480b6501c80f4878ae50aaaf38f20e8341a2a7e requires_dist: - attrs>=23.1.0 - numpy>=1.23,<2 @@ -35425,7 +35425,7 @@ packages: - pyarrow>=14.0.2 - typing-extensions>=4.5 - pytest==7.1.2 ; extra == 'tests' - - rerun-notebook==0.20.1rc1 ; extra == 'notebook' + - rerun-notebook==0.20.1 ; extra == 'notebook' requires_python: '>=3.8' editable: true - kind: pypi diff --git a/rerun_cpp/src/rerun/c/sdk_info.h b/rerun_cpp/src/rerun/c/sdk_info.h index 71c766db7870..ef9e06d3d99e 100644 --- a/rerun_cpp/src/rerun/c/sdk_info.h +++ b/rerun_cpp/src/rerun/c/sdk_info.h @@ -2,7 +2,7 @@ /// /// This should match the string returned by `rr_version_string` (C) or `rerun::version_string` (C++). /// If not, the SDK's binary and the C header are out of sync. -#define RERUN_SDK_HEADER_VERSION "0.20.1-rc.1" +#define RERUN_SDK_HEADER_VERSION "0.20.1" /// Major version of the Rerun C SDK. #define RERUN_SDK_HEADER_VERSION_MAJOR 0 diff --git a/rerun_js/web-viewer-react/README.md b/rerun_js/web-viewer-react/README.md index fdd05971f25b..f11e52494416 100644 --- a/rerun_js/web-viewer-react/README.md +++ b/rerun_js/web-viewer-react/README.md @@ -35,7 +35,7 @@ export default function App() { ``` The `rrd` in the snippet above should be a URL pointing to either: -- A hosted `.rrd` file, such as +- A hosted `.rrd` file, such as - A WebSocket connection to the SDK opened via the [`serve`](https://www.rerun.io/docs/reference/sdk/operating-modes#serve) API If `rrd` is not set, the Viewer will display the same welcome screen as . diff --git a/rerun_js/web-viewer-react/package.json b/rerun_js/web-viewer-react/package.json index 6f3fadced07f..64b6dbe54e84 100644 --- a/rerun_js/web-viewer-react/package.json +++ b/rerun_js/web-viewer-react/package.json @@ -1,6 +1,6 @@ { "name": "@rerun-io/web-viewer-react", - "version": "0.20.1-rc.1", + "version": "0.20.1", "description": "Embed the Rerun web viewer in your React app", "licenses": [ { @@ -39,7 +39,7 @@ "tsconfig.json" ], "dependencies": { - "@rerun-io/web-viewer": "0.20.1-rc.1", + "@rerun-io/web-viewer": "0.20.1", "@types/react": "^18.2.33", "react": "^18.2.0" }, diff --git a/rerun_js/web-viewer/README.md b/rerun_js/web-viewer/README.md index 724f87098041..e8b0629c35d2 100644 --- a/rerun_js/web-viewer/README.md +++ b/rerun_js/web-viewer/README.md @@ -41,7 +41,7 @@ viewer.stop(); ``` The `rrd` in the snippet above should be a URL pointing to either: -- A hosted `.rrd` file, such as +- A hosted `.rrd` file, such as - A WebSocket connection to the SDK opened via the [`serve`](https://www.rerun.io/docs/reference/sdk/operating-modes#serve) API If `rrd` is not set, the Viewer will display the same welcome screen as . diff --git a/rerun_js/web-viewer/package.json b/rerun_js/web-viewer/package.json index aad40fc418f1..b0d24716e825 100644 --- a/rerun_js/web-viewer/package.json +++ b/rerun_js/web-viewer/package.json @@ -1,6 +1,6 @@ { "name": "@rerun-io/web-viewer", - "version": "0.20.1-rc.1", + "version": "0.20.1", "description": "Embed the Rerun web viewer in your app", "licenses": [ { diff --git a/rerun_notebook/pyproject.toml b/rerun_notebook/pyproject.toml index 3ab8966e5a8b..9021726c86c7 100644 --- a/rerun_notebook/pyproject.toml +++ b/rerun_notebook/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "hatchling.build" [project] name = "rerun-notebook" description = "Implementation helper for running rerun-sdk in notebooks" -version = "0.20.1-rc.1" +version = "0.20.1" dependencies = ["anywidget", "jupyter-ui-poll"] readme = "README.md" keywords = ["rerun", "notebook"] diff --git a/rerun_py/pyproject.toml b/rerun_py/pyproject.toml index 8eb8a38528c7..40eac13eb3a2 100644 --- a/rerun_py/pyproject.toml +++ b/rerun_py/pyproject.toml @@ -33,7 +33,7 @@ text = "MIT OR Apache-2.0" [project.optional-dependencies] tests = ["pytest==7.1.2"] -notebook = ["rerun-notebook==0.20.1-rc.1"] +notebook = ["rerun-notebook==0.20.1"] [project.urls] documentation = "https://www.rerun.io/docs" diff --git a/rerun_py/rerun_sdk/rerun/__init__.py b/rerun_py/rerun_sdk/rerun/__init__.py index 0ad86864e828..4eb24034034f 100644 --- a/rerun_py/rerun_sdk/rerun/__init__.py +++ b/rerun_py/rerun_sdk/rerun/__init__.py @@ -9,8 +9,8 @@ import numpy as np -__version__ = "0.20.1-rc.1" -__version_info__ = (0, 20, 1, "rc.1") +__version__ = "0.20.1" +__version_info__ = (0, 20, 1, None) if sys.version_info < (3, 9): warnings.warn( From f7ea356678212882f6ee8456cf70ae842aaf691c Mon Sep 17 00:00:00 2001 From: rerun-bot Date: Thu, 21 Nov 2024 09:56:43 +0000 Subject: [PATCH 16/16] Bump versions to 0.21.0-alpha.1+dev --- Cargo.lock | 226 +++++++++--------- Cargo.toml | 128 +++++----- examples/rust/clock/Cargo.toml | 2 +- examples/rust/custom_data_loader/Cargo.toml | 2 +- examples/rust/custom_space_view/Cargo.toml | 2 +- .../rust/custom_store_subscriber/Cargo.toml | 2 +- examples/rust/dataframe_query/Cargo.toml | 2 +- examples/rust/dna/Cargo.toml | 2 +- examples/rust/extend_viewer_ui/Cargo.toml | 2 +- examples/rust/external_data_loader/Cargo.toml | 2 +- examples/rust/incremental_logging/Cargo.toml | 2 +- examples/rust/log_file/Cargo.toml | 2 +- examples/rust/minimal/Cargo.toml | 2 +- examples/rust/minimal_options/Cargo.toml | 2 +- examples/rust/minimal_serve/Cargo.toml | 2 +- examples/rust/objectron/Cargo.toml | 2 +- examples/rust/raw_mesh/Cargo.toml | 2 +- examples/rust/shared_recording/Cargo.toml | 2 +- examples/rust/spawn_viewer/Cargo.toml | 2 +- examples/rust/stdio/Cargo.toml | 2 +- examples/rust/template/Cargo.toml | 2 +- pixi.lock | 10 +- rerun_cpp/src/rerun/c/sdk_info.h | 6 +- rerun_js/web-viewer-react/package.json | 4 +- rerun_js/web-viewer/package.json | 2 +- rerun_notebook/pyproject.toml | 2 +- rerun_py/pyproject.toml | 2 +- rerun_py/rerun_sdk/rerun/__init__.py | 4 +- 28 files changed, 211 insertions(+), 211 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 10e369b09fdf..6fb8f163e921 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1360,7 +1360,7 @@ dependencies = [ [[package]] name = "clock" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -1718,7 +1718,7 @@ checksum = "96a6ac251f4a2aca6b3f91340350eab87ae57c3f127ffeb585e92bd336717991" [[package]] name = "custom_data_loader" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "re_build_tools", "rerun", @@ -1726,7 +1726,7 @@ dependencies = [ [[package]] name = "custom_space_view" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "mimalloc", "re_crash_handler", @@ -1736,7 +1736,7 @@ dependencies = [ [[package]] name = "custom_store_subscriber" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "re_build_tools", "rerun", @@ -1790,7 +1790,7 @@ checksum = "5c297a1c74b71ae29df00c3e22dd9534821d60eb9af5a0192823fa2acea70c2a" [[package]] name = "dataframe_query" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "itertools 0.13.0", "rerun", @@ -1861,7 +1861,7 @@ dependencies = [ [[package]] name = "dna" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "itertools 0.13.0", "rand", @@ -2349,7 +2349,7 @@ dependencies = [ [[package]] name = "extend_viewer_ui" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "mimalloc", "re_crash_handler", @@ -3300,7 +3300,7 @@ dependencies = [ [[package]] name = "incremental_logging" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -3714,7 +3714,7 @@ dependencies = [ [[package]] name = "log_benchmark" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -3725,7 +3725,7 @@ dependencies = [ [[package]] name = "log_file" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -3903,14 +3903,14 @@ dependencies = [ [[package]] name = "minimal" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "rerun", ] [[package]] name = "minimal_options" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -3920,7 +3920,7 @@ dependencies = [ [[package]] name = "minimal_serve" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "rerun", ] @@ -4521,7 +4521,7 @@ dependencies = [ [[package]] name = "objectron" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -4747,7 +4747,7 @@ dependencies = [ [[package]] name = "plot_dashboard_stress" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -5240,7 +5240,7 @@ checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" [[package]] name = "raw_mesh" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "bytes", @@ -5283,7 +5283,7 @@ checksum = "3b42e27ef78c35d3998403c1d26f3efd9e135d3e5121b0a4845cc5cc27547f4f" [[package]] name = "re_analytics" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "crossbeam", "directories", @@ -5330,7 +5330,7 @@ dependencies = [ [[package]] name = "re_blueprint_tree" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "egui", "itertools 0.13.0", @@ -5349,14 +5349,14 @@ dependencies = [ [[package]] name = "re_build_info" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "serde", ] [[package]] name = "re_build_tools" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "cargo_metadata 0.18.1", @@ -5369,14 +5369,14 @@ dependencies = [ [[package]] name = "re_case" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "convert_case", ] [[package]] name = "re_chunk" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -5405,7 +5405,7 @@ dependencies = [ [[package]] name = "re_chunk_store" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -5436,7 +5436,7 @@ dependencies = [ [[package]] name = "re_chunk_store_ui" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "egui", "egui_extras", @@ -5451,7 +5451,7 @@ dependencies = [ [[package]] name = "re_component_ui" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "egui", "egui_extras", @@ -5468,7 +5468,7 @@ dependencies = [ [[package]] name = "re_context_menu" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "egui", "egui_tiles", @@ -5489,7 +5489,7 @@ dependencies = [ [[package]] name = "re_crash_handler" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "backtrace", "econtext", @@ -5502,7 +5502,7 @@ dependencies = [ [[package]] name = "re_data_loader" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -5531,7 +5531,7 @@ dependencies = [ [[package]] name = "re_data_source" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "itertools 0.13.0", @@ -5549,7 +5549,7 @@ dependencies = [ [[package]] name = "re_data_ui" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -5578,7 +5578,7 @@ dependencies = [ [[package]] name = "re_dataframe" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "itertools 0.13.0", @@ -5601,7 +5601,7 @@ dependencies = [ [[package]] name = "re_dev_tools" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "argh", @@ -5628,7 +5628,7 @@ dependencies = [ [[package]] name = "re_entity_db" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -5661,21 +5661,21 @@ dependencies = [ [[package]] name = "re_error" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", ] [[package]] name = "re_format" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "num-traits", ] [[package]] name = "re_format_arrow" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "comfy-table", "re_arrow2", @@ -5685,7 +5685,7 @@ dependencies = [ [[package]] name = "re_grpc_client" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "re_chunk", "re_error", @@ -5703,7 +5703,7 @@ dependencies = [ [[package]] name = "re_int_histogram" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "criterion", "insta", @@ -5714,7 +5714,7 @@ dependencies = [ [[package]] name = "re_log" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "env_logger", "js-sys", @@ -5727,7 +5727,7 @@ dependencies = [ [[package]] name = "re_log_encoding" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "criterion", "ehttp", @@ -5753,7 +5753,7 @@ dependencies = [ [[package]] name = "re_log_types" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -5802,7 +5802,7 @@ dependencies = [ [[package]] name = "re_memory" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "ahash", "backtrace", @@ -5837,7 +5837,7 @@ dependencies = [ [[package]] name = "re_protos" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "prost", "re_arrow2", @@ -5850,7 +5850,7 @@ dependencies = [ [[package]] name = "re_protos_builder" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "camino", "re_log", @@ -5859,7 +5859,7 @@ dependencies = [ [[package]] name = "re_query" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -5913,7 +5913,7 @@ dependencies = [ [[package]] name = "re_renderer" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -5966,7 +5966,7 @@ dependencies = [ [[package]] name = "re_renderer_examples" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -5990,7 +5990,7 @@ dependencies = [ [[package]] name = "re_sdk" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "ahash", "crossbeam", @@ -6024,7 +6024,7 @@ dependencies = [ [[package]] name = "re_sdk_comms" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "ahash", "crossbeam", @@ -6040,7 +6040,7 @@ dependencies = [ [[package]] name = "re_selection_panel" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "egui", "egui_tiles", @@ -6070,7 +6070,7 @@ dependencies = [ [[package]] name = "re_smart_channel" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "crossbeam", "parking_lot", @@ -6081,7 +6081,7 @@ dependencies = [ [[package]] name = "re_space_view" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "ahash", "bytemuck", @@ -6105,7 +6105,7 @@ dependencies = [ [[package]] name = "re_space_view_bar_chart" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "egui", "egui_plot", @@ -6123,7 +6123,7 @@ dependencies = [ [[package]] name = "re_space_view_dataframe" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "egui", @@ -6146,7 +6146,7 @@ dependencies = [ [[package]] name = "re_space_view_map" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "bytemuck", "egui", @@ -6170,7 +6170,7 @@ dependencies = [ [[package]] name = "re_space_view_spatial" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -6213,7 +6213,7 @@ dependencies = [ [[package]] name = "re_space_view_tensor" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "bytemuck", @@ -6237,7 +6237,7 @@ dependencies = [ [[package]] name = "re_space_view_text_document" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "egui", "egui_commonmark", @@ -6252,7 +6252,7 @@ dependencies = [ [[package]] name = "re_space_view_text_log" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "egui", "egui_extras", @@ -6272,7 +6272,7 @@ dependencies = [ [[package]] name = "re_space_view_time_series" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "egui", "egui_plot", @@ -6294,7 +6294,7 @@ dependencies = [ [[package]] name = "re_string_interner" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "ahash", "nohash-hasher", @@ -6306,7 +6306,7 @@ dependencies = [ [[package]] name = "re_time_panel" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "criterion", @@ -6331,7 +6331,7 @@ dependencies = [ [[package]] name = "re_tracing" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "puffin", "puffin_http", @@ -6342,7 +6342,7 @@ dependencies = [ [[package]] name = "re_tuid" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "criterion", "document-features", @@ -6354,7 +6354,7 @@ dependencies = [ [[package]] name = "re_types" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "array-init", @@ -6394,7 +6394,7 @@ dependencies = [ [[package]] name = "re_types_blueprint" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "once_cell", "re_arrow2", @@ -6405,7 +6405,7 @@ dependencies = [ [[package]] name = "re_types_builder" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "arrow", @@ -6433,7 +6433,7 @@ dependencies = [ [[package]] name = "re_types_core" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "backtrace", @@ -6456,7 +6456,7 @@ dependencies = [ [[package]] name = "re_ui" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "eframe", "egui", @@ -6480,7 +6480,7 @@ dependencies = [ [[package]] name = "re_video" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "bit-vec", "cfg_aliases 0.2.1", @@ -6507,7 +6507,7 @@ dependencies = [ [[package]] name = "re_viewer" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -6584,7 +6584,7 @@ dependencies = [ [[package]] name = "re_viewer_context" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "ahash", "anyhow", @@ -6638,7 +6638,7 @@ dependencies = [ [[package]] name = "re_viewport" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "ahash", "egui", @@ -6664,7 +6664,7 @@ dependencies = [ [[package]] name = "re_viewport_blueprint" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "ahash", "egui", @@ -6691,7 +6691,7 @@ dependencies = [ [[package]] name = "re_web_viewer_server" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "document-features", "re_analytics", @@ -6702,7 +6702,7 @@ dependencies = [ [[package]] name = "re_ws_comms" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "bincode", @@ -6899,7 +6899,7 @@ dependencies = [ [[package]] name = "rerun" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -6939,7 +6939,7 @@ dependencies = [ [[package]] name = "rerun-cli" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "document-features", "mimalloc", @@ -6954,7 +6954,7 @@ dependencies = [ [[package]] name = "rerun-loader-rust-file" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "argh", @@ -6963,7 +6963,7 @@ dependencies = [ [[package]] name = "rerun_c" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "ahash", "infer", @@ -6977,7 +6977,7 @@ dependencies = [ [[package]] name = "rerun_py" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "arrow", "crossbeam", @@ -7108,7 +7108,7 @@ dependencies = [ [[package]] name = "roundtrip_annotation_context" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7118,7 +7118,7 @@ dependencies = [ [[package]] name = "roundtrip_arrows2d" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7128,7 +7128,7 @@ dependencies = [ [[package]] name = "roundtrip_arrows3d" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7138,7 +7138,7 @@ dependencies = [ [[package]] name = "roundtrip_boxes2d" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7148,7 +7148,7 @@ dependencies = [ [[package]] name = "roundtrip_boxes3d" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7158,7 +7158,7 @@ dependencies = [ [[package]] name = "roundtrip_depth_image" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7169,7 +7169,7 @@ dependencies = [ [[package]] name = "roundtrip_disconnected_space" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7179,7 +7179,7 @@ dependencies = [ [[package]] name = "roundtrip_image" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7192,7 +7192,7 @@ dependencies = [ [[package]] name = "roundtrip_line_strips2d" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7202,7 +7202,7 @@ dependencies = [ [[package]] name = "roundtrip_line_strips3d" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7212,7 +7212,7 @@ dependencies = [ [[package]] name = "roundtrip_pinhole" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7222,7 +7222,7 @@ dependencies = [ [[package]] name = "roundtrip_points2d" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7232,7 +7232,7 @@ dependencies = [ [[package]] name = "roundtrip_points3d" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7242,7 +7242,7 @@ dependencies = [ [[package]] name = "roundtrip_segmentation_image" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7253,7 +7253,7 @@ dependencies = [ [[package]] name = "roundtrip_tensor" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7264,7 +7264,7 @@ dependencies = [ [[package]] name = "roundtrip_text_document" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7274,7 +7274,7 @@ dependencies = [ [[package]] name = "roundtrip_text_log" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7284,7 +7284,7 @@ dependencies = [ [[package]] name = "roundtrip_transform3d" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7294,7 +7294,7 @@ dependencies = [ [[package]] name = "roundtrip_view_coordinates" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7304,7 +7304,7 @@ dependencies = [ [[package]] name = "roundtrip_visible_time_ranges" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -7320,7 +7320,7 @@ checksum = "3cd14fd5e3b777a7422cca79358c57a8f6e3a703d9ac187448d0daf220c2407f" [[package]] name = "run_wasm" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "cargo-run-wasm", "pico-args", @@ -7712,7 +7712,7 @@ dependencies = [ [[package]] name = "shared_recording" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "rerun", ] @@ -7891,7 +7891,7 @@ dependencies = [ [[package]] name = "snippets" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "itertools 0.13.0", "ndarray", @@ -7914,7 +7914,7 @@ dependencies = [ [[package]] name = "spawn_viewer" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "rerun", ] @@ -7965,7 +7965,7 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" [[package]] name = "stdio" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "rerun", ] @@ -8131,7 +8131,7 @@ dependencies = [ [[package]] name = "template" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "rerun", ] @@ -8147,7 +8147,7 @@ dependencies = [ [[package]] name = "test_api" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -8162,7 +8162,7 @@ dependencies = [ [[package]] name = "test_data_density_graph" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "rand", @@ -8172,7 +8172,7 @@ dependencies = [ [[package]] name = "test_image_memory" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "mimalloc", "re_format", @@ -8181,7 +8181,7 @@ dependencies = [ [[package]] name = "test_pinhole_projection" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", @@ -8192,7 +8192,7 @@ dependencies = [ [[package]] name = "test_send_columns" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "re_chunk", "rerun", @@ -8200,7 +8200,7 @@ dependencies = [ [[package]] name = "test_ui_wakeup" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index f7c2a85a99dc..49cefadd3212 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ include = ["../../LICENSE-APACHE", "../../LICENSE-MIT", "**/*.rs", "Cargo.toml"] license = "MIT OR Apache-2.0" repository = "https://github.com/rerun-io/rerun" rust-version = "1.79" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" [workspace.dependencies] # When using alpha-release, always use exact version, e.g. `version = "=0.x.y-alpha.z" @@ -34,77 +34,77 @@ version = "0.20.1" # re_log_types 0.3.0-alpha.0, NOT 0.3.0-alpha.4 even though it is newer and semver-compatible. # crates/build: -re_build_info = { path = "crates/build/re_build_info", version = "0.20.1", default-features = false } -re_build_tools = { path = "crates/build/re_build_tools", version = "0.20.1", default-features = false } -re_dev_tools = { path = "crates/build/re_dev_tools", version = "0.20.1", default-features = false } -re_protos_builder = { path = "crates/build/re_protos_builder", version = "0.20.1", default-features = false } -re_types_builder = { path = "crates/build/re_types_builder", version = "0.20.1", default-features = false } +re_build_info = { path = "crates/build/re_build_info", version = "=0.21.0-alpha.1", default-features = false } +re_build_tools = { path = "crates/build/re_build_tools", version = "=0.21.0-alpha.1", default-features = false } +re_dev_tools = { path = "crates/build/re_dev_tools", version = "=0.21.0-alpha.1", default-features = false } +re_protos_builder = { path = "crates/build/re_protos_builder", version = "=0.21.0-alpha.1", default-features = false } +re_types_builder = { path = "crates/build/re_types_builder", version = "=0.21.0-alpha.1", default-features = false } # crates/store: -re_chunk = { path = "crates/store/re_chunk", version = "0.20.1", default-features = false } -re_chunk_store = { path = "crates/store/re_chunk_store", version = "0.20.1", default-features = false } -re_data_loader = { path = "crates/store/re_data_loader", version = "0.20.1", default-features = false } -re_data_source = { path = "crates/store/re_data_source", version = "0.20.1", default-features = false } -re_dataframe = { path = "crates/store/re_dataframe", version = "0.20.1", default-features = false } -re_entity_db = { path = "crates/store/re_entity_db", version = "0.20.1", default-features = false } -re_format_arrow = { path = "crates/store/re_format_arrow", version = "0.20.1", default-features = false } -re_grpc_client = { path = "crates/store/re_grpc_client", version = "0.20.1", default-features = false } -re_protos = { path = "crates/store/re_protos", version = "0.20.1", default-features = false } -re_log_encoding = { path = "crates/store/re_log_encoding", version = "0.20.1", default-features = false } -re_log_types = { path = "crates/store/re_log_types", version = "0.20.1", default-features = false } -re_query = { path = "crates/store/re_query", version = "0.20.1", default-features = false } -re_sdk_comms = { path = "crates/store/re_sdk_comms", version = "0.20.1", default-features = false } -re_types = { path = "crates/store/re_types", version = "0.20.1", default-features = false } -re_types_blueprint = { path = "crates/store/re_types_blueprint", version = "0.20.1", default-features = false } -re_types_core = { path = "crates/store/re_types_core", version = "0.20.1", default-features = false } -re_video = { path = "crates/store/re_video", version = "0.20.1", default-features = false } -re_ws_comms = { path = "crates/store/re_ws_comms", version = "0.20.1", default-features = false } +re_chunk = { path = "crates/store/re_chunk", version = "=0.21.0-alpha.1", default-features = false } +re_chunk_store = { path = "crates/store/re_chunk_store", version = "=0.21.0-alpha.1", default-features = false } +re_data_loader = { path = "crates/store/re_data_loader", version = "=0.21.0-alpha.1", default-features = false } +re_data_source = { path = "crates/store/re_data_source", version = "=0.21.0-alpha.1", default-features = false } +re_dataframe = { path = "crates/store/re_dataframe", version = "=0.21.0-alpha.1", default-features = false } +re_entity_db = { path = "crates/store/re_entity_db", version = "=0.21.0-alpha.1", default-features = false } +re_format_arrow = { path = "crates/store/re_format_arrow", version = "=0.21.0-alpha.1", default-features = false } +re_grpc_client = { path = "crates/store/re_grpc_client", version = "=0.21.0-alpha.1", default-features = false } +re_protos = { path = "crates/store/re_protos", version = "=0.21.0-alpha.1", default-features = false } +re_log_encoding = { path = "crates/store/re_log_encoding", version = "=0.21.0-alpha.1", default-features = false } +re_log_types = { path = "crates/store/re_log_types", version = "=0.21.0-alpha.1", default-features = false } +re_query = { path = "crates/store/re_query", version = "=0.21.0-alpha.1", default-features = false } +re_sdk_comms = { path = "crates/store/re_sdk_comms", version = "=0.21.0-alpha.1", default-features = false } +re_types = { path = "crates/store/re_types", version = "=0.21.0-alpha.1", default-features = false } +re_types_blueprint = { path = "crates/store/re_types_blueprint", version = "=0.21.0-alpha.1", default-features = false } +re_types_core = { path = "crates/store/re_types_core", version = "=0.21.0-alpha.1", default-features = false } +re_video = { path = "crates/store/re_video", version = "=0.21.0-alpha.1", default-features = false } +re_ws_comms = { path = "crates/store/re_ws_comms", version = "=0.21.0-alpha.1", default-features = false } # crates/top: -re_sdk = { path = "crates/top/re_sdk", version = "0.20.1", default-features = false } -rerun = { path = "crates/top/rerun", version = "0.20.1", default-features = false } -rerun_c = { path = "crates/top/rerun_c", version = "0.20.1", default-features = false } -rerun-cli = { path = "crates/top/rerun-cli", version = "0.20.1", default-features = false } +re_sdk = { path = "crates/top/re_sdk", version = "=0.21.0-alpha.1", default-features = false } +rerun = { path = "crates/top/rerun", version = "=0.21.0-alpha.1", default-features = false } +rerun_c = { path = "crates/top/rerun_c", version = "=0.21.0-alpha.1", default-features = false } +rerun-cli = { path = "crates/top/rerun-cli", version = "=0.21.0-alpha.1", default-features = false } # crates/utils: -re_analytics = { path = "crates/utils/re_analytics", version = "0.20.1", default-features = false } -re_case = { path = "crates/utils/re_case", version = "0.20.1", default-features = false } -re_crash_handler = { path = "crates/utils/re_crash_handler", version = "0.20.1", default-features = false } -re_error = { path = "crates/utils/re_error", version = "0.20.1", default-features = false } -re_format = { path = "crates/utils/re_format", version = "0.20.1", default-features = false } -re_int_histogram = { path = "crates/utils/re_int_histogram", version = "0.20.1", default-features = false } -re_log = { path = "crates/utils/re_log", version = "0.20.1", default-features = false } -re_memory = { path = "crates/utils/re_memory", version = "0.20.1", default-features = false } -re_smart_channel = { path = "crates/utils/re_smart_channel", version = "0.20.1", default-features = false } -re_string_interner = { path = "crates/utils/re_string_interner", version = "0.20.1", default-features = false } -re_tracing = { path = "crates/utils/re_tracing", version = "0.20.1", default-features = false } -re_tuid = { path = "crates/utils/re_tuid", version = "0.20.1", default-features = false } +re_analytics = { path = "crates/utils/re_analytics", version = "=0.21.0-alpha.1", default-features = false } +re_case = { path = "crates/utils/re_case", version = "=0.21.0-alpha.1", default-features = false } +re_crash_handler = { path = "crates/utils/re_crash_handler", version = "=0.21.0-alpha.1", default-features = false } +re_error = { path = "crates/utils/re_error", version = "=0.21.0-alpha.1", default-features = false } +re_format = { path = "crates/utils/re_format", version = "=0.21.0-alpha.1", default-features = false } +re_int_histogram = { path = "crates/utils/re_int_histogram", version = "=0.21.0-alpha.1", default-features = false } +re_log = { path = "crates/utils/re_log", version = "=0.21.0-alpha.1", default-features = false } +re_memory = { path = "crates/utils/re_memory", version = "=0.21.0-alpha.1", default-features = false } +re_smart_channel = { path = "crates/utils/re_smart_channel", version = "=0.21.0-alpha.1", default-features = false } +re_string_interner = { path = "crates/utils/re_string_interner", version = "=0.21.0-alpha.1", default-features = false } +re_tracing = { path = "crates/utils/re_tracing", version = "=0.21.0-alpha.1", default-features = false } +re_tuid = { path = "crates/utils/re_tuid", version = "=0.21.0-alpha.1", default-features = false } # crates/viewer: -re_blueprint_tree = { path = "crates/viewer/re_blueprint_tree", version = "0.20.1", default-features = false } -re_component_ui = { path = "crates/viewer/re_component_ui", version = "0.20.1", default-features = false } -re_context_menu = { path = "crates/viewer/re_context_menu", version = "0.20.1", default-features = false } -re_data_ui = { path = "crates/viewer/re_data_ui", version = "0.20.1", default-features = false } -re_chunk_store_ui = { path = "crates/viewer/re_chunk_store_ui", version = "0.20.1", default-features = false } -re_renderer = { path = "crates/viewer/re_renderer", version = "0.20.1", default-features = false } -re_renderer_examples = { path = "crates/viewer/re_renderer_examples", version = "0.20.1", default-features = false } -re_selection_panel = { path = "crates/viewer/re_selection_panel", version = "0.20.1", default-features = false } -re_space_view = { path = "crates/viewer/re_space_view", version = "0.20.1", default-features = false } -re_space_view_bar_chart = { path = "crates/viewer/re_space_view_bar_chart", version = "0.20.1", default-features = false } -re_space_view_spatial = { path = "crates/viewer/re_space_view_spatial", version = "0.20.1", default-features = false } -re_space_view_dataframe = { path = "crates/viewer/re_space_view_dataframe", version = "0.20.1", default-features = false } -re_space_view_map = { path = "crates/viewer/re_space_view_map", version = "0.20.1", default-features = false } -re_space_view_tensor = { path = "crates/viewer/re_space_view_tensor", version = "0.20.1", default-features = false } -re_space_view_text_document = { path = "crates/viewer/re_space_view_text_document", version = "0.20.1", default-features = false } -re_space_view_text_log = { path = "crates/viewer/re_space_view_text_log", version = "0.20.1", default-features = false } -re_space_view_time_series = { path = "crates/viewer/re_space_view_time_series", version = "0.20.1", default-features = false } -re_time_panel = { path = "crates/viewer/re_time_panel", version = "0.20.1", default-features = false } -re_ui = { path = "crates/viewer/re_ui", version = "0.20.1", default-features = false } -re_viewer = { path = "crates/viewer/re_viewer", version = "0.20.1", default-features = false } -re_viewer_context = { path = "crates/viewer/re_viewer_context", version = "0.20.1", default-features = false } -re_viewport = { path = "crates/viewer/re_viewport", version = "0.20.1", default-features = false } -re_viewport_blueprint = { path = "crates/viewer/re_viewport_blueprint", version = "0.20.1", default-features = false } -re_web_viewer_server = { path = "crates/viewer/re_web_viewer_server", version = "0.20.1", default-features = false } +re_blueprint_tree = { path = "crates/viewer/re_blueprint_tree", version = "=0.21.0-alpha.1", default-features = false } +re_component_ui = { path = "crates/viewer/re_component_ui", version = "=0.21.0-alpha.1", default-features = false } +re_context_menu = { path = "crates/viewer/re_context_menu", version = "=0.21.0-alpha.1", default-features = false } +re_data_ui = { path = "crates/viewer/re_data_ui", version = "=0.21.0-alpha.1", default-features = false } +re_chunk_store_ui = { path = "crates/viewer/re_chunk_store_ui", version = "=0.21.0-alpha.1", default-features = false } +re_renderer = { path = "crates/viewer/re_renderer", version = "=0.21.0-alpha.1", default-features = false } +re_renderer_examples = { path = "crates/viewer/re_renderer_examples", version = "=0.21.0-alpha.1", default-features = false } +re_selection_panel = { path = "crates/viewer/re_selection_panel", version = "=0.21.0-alpha.1", default-features = false } +re_space_view = { path = "crates/viewer/re_space_view", version = "=0.21.0-alpha.1", default-features = false } +re_space_view_bar_chart = { path = "crates/viewer/re_space_view_bar_chart", version = "=0.21.0-alpha.1", default-features = false } +re_space_view_spatial = { path = "crates/viewer/re_space_view_spatial", version = "=0.21.0-alpha.1", default-features = false } +re_space_view_dataframe = { path = "crates/viewer/re_space_view_dataframe", version = "=0.21.0-alpha.1", default-features = false } +re_space_view_map = { path = "crates/viewer/re_space_view_map", version = "=0.21.0-alpha.1", default-features = false } +re_space_view_tensor = { path = "crates/viewer/re_space_view_tensor", version = "=0.21.0-alpha.1", default-features = false } +re_space_view_text_document = { path = "crates/viewer/re_space_view_text_document", version = "=0.21.0-alpha.1", default-features = false } +re_space_view_text_log = { path = "crates/viewer/re_space_view_text_log", version = "=0.21.0-alpha.1", default-features = false } +re_space_view_time_series = { path = "crates/viewer/re_space_view_time_series", version = "=0.21.0-alpha.1", default-features = false } +re_time_panel = { path = "crates/viewer/re_time_panel", version = "=0.21.0-alpha.1", default-features = false } +re_ui = { path = "crates/viewer/re_ui", version = "=0.21.0-alpha.1", default-features = false } +re_viewer = { path = "crates/viewer/re_viewer", version = "=0.21.0-alpha.1", default-features = false } +re_viewer_context = { path = "crates/viewer/re_viewer_context", version = "=0.21.0-alpha.1", default-features = false } +re_viewport = { path = "crates/viewer/re_viewport", version = "=0.21.0-alpha.1", default-features = false } +re_viewport_blueprint = { path = "crates/viewer/re_viewport_blueprint", version = "=0.21.0-alpha.1", default-features = false } +re_web_viewer_server = { path = "crates/viewer/re_web_viewer_server", version = "=0.21.0-alpha.1", default-features = false } # Rerun crates in other repos: ewebsock = "0.8.0" diff --git a/examples/rust/clock/Cargo.toml b/examples/rust/clock/Cargo.toml index 9e82f9740507..f1991f89c492 100644 --- a/examples/rust/clock/Cargo.toml +++ b/examples/rust/clock/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clock" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/custom_data_loader/Cargo.toml b/examples/rust/custom_data_loader/Cargo.toml index 34cd6bd8b27e..10421d68dc72 100644 --- a/examples/rust/custom_data_loader/Cargo.toml +++ b/examples/rust/custom_data_loader/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "custom_data_loader" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/custom_space_view/Cargo.toml b/examples/rust/custom_space_view/Cargo.toml index fe847b9798dc..1e4540b089a2 100644 --- a/examples/rust/custom_space_view/Cargo.toml +++ b/examples/rust/custom_space_view/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "custom_space_view" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/custom_store_subscriber/Cargo.toml b/examples/rust/custom_store_subscriber/Cargo.toml index c6403dea8c5a..89d070d969e4 100644 --- a/examples/rust/custom_store_subscriber/Cargo.toml +++ b/examples/rust/custom_store_subscriber/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "custom_store_subscriber" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/dataframe_query/Cargo.toml b/examples/rust/dataframe_query/Cargo.toml index edb5ebea62f7..63ab96fb477f 100644 --- a/examples/rust/dataframe_query/Cargo.toml +++ b/examples/rust/dataframe_query/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dataframe_query" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/dna/Cargo.toml b/examples/rust/dna/Cargo.toml index 39944692a555..d109e1c72d19 100644 --- a/examples/rust/dna/Cargo.toml +++ b/examples/rust/dna/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dna" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/extend_viewer_ui/Cargo.toml b/examples/rust/extend_viewer_ui/Cargo.toml index e96523758e9a..dc1eae3e4d19 100644 --- a/examples/rust/extend_viewer_ui/Cargo.toml +++ b/examples/rust/extend_viewer_ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "extend_viewer_ui" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/external_data_loader/Cargo.toml b/examples/rust/external_data_loader/Cargo.toml index 30b5a3d773de..e73e2f7dafb9 100644 --- a/examples/rust/external_data_loader/Cargo.toml +++ b/examples/rust/external_data_loader/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rerun-loader-rust-file" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/incremental_logging/Cargo.toml b/examples/rust/incremental_logging/Cargo.toml index 51e5f2d0fb75..eb4a913e8eb6 100644 --- a/examples/rust/incremental_logging/Cargo.toml +++ b/examples/rust/incremental_logging/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "incremental_logging" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/log_file/Cargo.toml b/examples/rust/log_file/Cargo.toml index 8afe64b80cf4..b5437cd39483 100644 --- a/examples/rust/log_file/Cargo.toml +++ b/examples/rust/log_file/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "log_file" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/minimal/Cargo.toml b/examples/rust/minimal/Cargo.toml index 20012f1a8380..9c44f59d2acc 100644 --- a/examples/rust/minimal/Cargo.toml +++ b/examples/rust/minimal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minimal" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/minimal_options/Cargo.toml b/examples/rust/minimal_options/Cargo.toml index d1b2f390cc9c..ecb372e2a119 100644 --- a/examples/rust/minimal_options/Cargo.toml +++ b/examples/rust/minimal_options/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minimal_options" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/minimal_serve/Cargo.toml b/examples/rust/minimal_serve/Cargo.toml index 98d25c858a4b..8d98efd632cc 100644 --- a/examples/rust/minimal_serve/Cargo.toml +++ b/examples/rust/minimal_serve/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minimal_serve" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/objectron/Cargo.toml b/examples/rust/objectron/Cargo.toml index b981d1a0e299..1af19a7749f3 100644 --- a/examples/rust/objectron/Cargo.toml +++ b/examples/rust/objectron/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "objectron" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/raw_mesh/Cargo.toml b/examples/rust/raw_mesh/Cargo.toml index ecf6d0d7dc14..4f97e805b5e2 100644 --- a/examples/rust/raw_mesh/Cargo.toml +++ b/examples/rust/raw_mesh/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "raw_mesh" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/shared_recording/Cargo.toml b/examples/rust/shared_recording/Cargo.toml index b8b5f4cabfb4..93948b429713 100644 --- a/examples/rust/shared_recording/Cargo.toml +++ b/examples/rust/shared_recording/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shared_recording" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/spawn_viewer/Cargo.toml b/examples/rust/spawn_viewer/Cargo.toml index 71f49f6d3eb8..6f19ab8f8347 100644 --- a/examples/rust/spawn_viewer/Cargo.toml +++ b/examples/rust/spawn_viewer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spawn_viewer" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/stdio/Cargo.toml b/examples/rust/stdio/Cargo.toml index 7439ec00f863..fdf47d101cad 100644 --- a/examples/rust/stdio/Cargo.toml +++ b/examples/rust/stdio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stdio" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/examples/rust/template/Cargo.toml b/examples/rust/template/Cargo.toml index 419dcd25672f..7d8ac13966b8 100644 --- a/examples/rust/template/Cargo.toml +++ b/examples/rust/template/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "template" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" edition = "2021" rust-version = "1.79" license = "MIT OR Apache-2.0" diff --git a/pixi.lock b/pixi.lock index 5e1ab9d47f82..b98b86c602f1 100644 --- a/pixi.lock +++ b/pixi.lock @@ -35333,9 +35333,9 @@ packages: - watchfiles ; extra == 'dev' - kind: pypi name: rerun-notebook - version: 0.20.1 + version: 0.21.0a1+dev path: rerun_notebook - sha256: 4c78b7726314edadb33cf833e908db74ba367473da5cb94e0b8f27a3ce7e6a51 + sha256: 047bf251505a9b46f02e7f700fe4073247fa2c95f8dd36f6f2f628e0ade8c055 requires_dist: - anywidget - jupyter-ui-poll @@ -35415,9 +35415,9 @@ packages: requires_python: '>=3.8,<3.13' - kind: pypi name: rerun-sdk - version: 0.20.1 + version: 0.21.0a1+dev path: rerun_py - sha256: c738b12ad20abd12008b1b1d6480b6501c80f4878ae50aaaf38f20e8341a2a7e + sha256: 47c3d5402bdc07984228039a79f4be949d93fce1ec565e64bbc1ff00b3bd928f requires_dist: - attrs>=23.1.0 - numpy>=1.23,<2 @@ -35425,7 +35425,7 @@ packages: - pyarrow>=14.0.2 - typing-extensions>=4.5 - pytest==7.1.2 ; extra == 'tests' - - rerun-notebook==0.20.1 ; extra == 'notebook' + - rerun-notebook==0.21.0a1+dev ; extra == 'notebook' requires_python: '>=3.8' editable: true - kind: pypi diff --git a/rerun_cpp/src/rerun/c/sdk_info.h b/rerun_cpp/src/rerun/c/sdk_info.h index ef9e06d3d99e..d1e864f0498e 100644 --- a/rerun_cpp/src/rerun/c/sdk_info.h +++ b/rerun_cpp/src/rerun/c/sdk_info.h @@ -2,16 +2,16 @@ /// /// This should match the string returned by `rr_version_string` (C) or `rerun::version_string` (C++). /// If not, the SDK's binary and the C header are out of sync. -#define RERUN_SDK_HEADER_VERSION "0.20.1" +#define RERUN_SDK_HEADER_VERSION "0.21.0-alpha.1+dev" /// Major version of the Rerun C SDK. #define RERUN_SDK_HEADER_VERSION_MAJOR 0 /// Minor version of the Rerun C SDK. -#define RERUN_SDK_HEADER_VERSION_MINOR 20 +#define RERUN_SDK_HEADER_VERSION_MINOR 21 /// Patch version of the Rerun C SDK. -#define RERUN_SDK_HEADER_VERSION_PATCH 1 +#define RERUN_SDK_HEADER_VERSION_PATCH 0 /// Is the Rerun library version greater or equal to this? /// diff --git a/rerun_js/web-viewer-react/package.json b/rerun_js/web-viewer-react/package.json index 64b6dbe54e84..a3f9eb5734a1 100644 --- a/rerun_js/web-viewer-react/package.json +++ b/rerun_js/web-viewer-react/package.json @@ -1,6 +1,6 @@ { "name": "@rerun-io/web-viewer-react", - "version": "0.20.1", + "version": "0.21.0-alpha.1+dev", "description": "Embed the Rerun web viewer in your React app", "licenses": [ { @@ -39,7 +39,7 @@ "tsconfig.json" ], "dependencies": { - "@rerun-io/web-viewer": "0.20.1", + "@rerun-io/web-viewer": "0.21.0-alpha.1", "@types/react": "^18.2.33", "react": "^18.2.0" }, diff --git a/rerun_js/web-viewer/package.json b/rerun_js/web-viewer/package.json index b0d24716e825..4da306e5c0a6 100644 --- a/rerun_js/web-viewer/package.json +++ b/rerun_js/web-viewer/package.json @@ -1,6 +1,6 @@ { "name": "@rerun-io/web-viewer", - "version": "0.20.1", + "version": "0.21.0-alpha.1+dev", "description": "Embed the Rerun web viewer in your app", "licenses": [ { diff --git a/rerun_notebook/pyproject.toml b/rerun_notebook/pyproject.toml index 9021726c86c7..52105c2c8d55 100644 --- a/rerun_notebook/pyproject.toml +++ b/rerun_notebook/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "hatchling.build" [project] name = "rerun-notebook" description = "Implementation helper for running rerun-sdk in notebooks" -version = "0.20.1" +version = "0.21.0-alpha.1+dev" dependencies = ["anywidget", "jupyter-ui-poll"] readme = "README.md" keywords = ["rerun", "notebook"] diff --git a/rerun_py/pyproject.toml b/rerun_py/pyproject.toml index 40eac13eb3a2..875dd9c7d1b6 100644 --- a/rerun_py/pyproject.toml +++ b/rerun_py/pyproject.toml @@ -33,7 +33,7 @@ text = "MIT OR Apache-2.0" [project.optional-dependencies] tests = ["pytest==7.1.2"] -notebook = ["rerun-notebook==0.20.1"] +notebook = ["rerun-notebook==0.21.0-alpha.1+dev"] [project.urls] documentation = "https://www.rerun.io/docs" diff --git a/rerun_py/rerun_sdk/rerun/__init__.py b/rerun_py/rerun_sdk/rerun/__init__.py index 4eb24034034f..af0722816e44 100644 --- a/rerun_py/rerun_sdk/rerun/__init__.py +++ b/rerun_py/rerun_sdk/rerun/__init__.py @@ -9,8 +9,8 @@ import numpy as np -__version__ = "0.20.1" -__version_info__ = (0, 20, 1, None) +__version__ = "0.21.0-alpha.1+dev" +__version_info__ = (0, 21, 0, "alpha.1") if sys.version_info < (3, 9): warnings.warn(