https://github.com/rerun-io/rerun
Visualize streams of multimodal data. Free, fast, easy to use, and simple to integrate. Built in Rust.
Science Score: 36.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
2 of 89 committers (2.2%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (12.0%) to scientific vocabulary
Keywords
Keywords from Contributors
Repository
Visualize streams of multimodal data. Free, fast, easy to use, and simple to integrate. Built in Rust.
Basic Info
- Host: GitHub
- Owner: rerun-io
- License: apache-2.0
- Language: Rust
- Default Branch: main
- Homepage: https://rerun.io/
- Size: 165 MB
Statistics
- Stars: 9,180
- Watchers: 70
- Forks: 521
- Open Issues: 1,350
- Releases: 0
Topics
Metadata Files
README.md
Time-aware multimodal data stack and visualizations
Rerun is building the multimodal data stack to model, ingest, store, query and view robotics-style data. It's used in areas like robotics, spatial and embodied AI, generative media, industrial processing, simulation, security, and health.
Rerun is easy to use! Use the Rerun SDK (available for C++, Python and Rust) to log data like images, tensors, point clouds, and text. Logs are streamed to the Rerun Viewer for live visualization or to file for later use. You can also query the logged data through our dataframe API.
Get started in minutes – no account needed.
A short taste
```py import rerun as rr # pip install rerun-sdk
rr.init("rerunexampleapp")
rr.spawn() # Spawn a child process with a viewer and connect
rr.save("recording.rrd") # Stream all logs to disk
rr.connect_grpc() # Connect to a remote viewer
Associate subsequent data with 42 on the “frame” timeline
rr.set_time("frame", sequence=42)
Log colored 3D points to the entity at path/to/points
rr.log("path/to/points", rr.Points3D(positions, colors=colors)) … ```
Getting started
Installing the Rerun Viewer binary
To stream log data over the network or load our .rrd data files you also need the rerun binary.
It can be installed with pip install rerun-sdk or with cargo install rerun-cli --locked --features nasm (see note below).
Note that only the Python SDK comes bundled with the Viewer whereas C++ & Rust always rely on a separate install.
Note: the nasm Cargo feature requires the nasm CLI to be installed and available in your path.
Alternatively, you may skip enabling this feature, but this may result in inferior video decoding performance.
You should now be able to run rerun --help in any terminal.
Documentation
- 📚 High-level docs
- ⏃ Loggable Types
- ⚙️ Examples
- 📖 Code snippets
- 🌊 C++ API docs
- 🐍 Python API docs
- 🦀 Rust API docs
- ⁉️ Troubleshooting
Status
We are in active development. There are many features we want to add, and the API is still evolving. Expect breaking changes!
Some shortcomings: * The viewer slows down when there are too many entities * We don't support transparency yet * The data you want to visualize must fit in RAM - See https://www.rerun.io/docs/howto/limit-ram for how to bound memory use. - We plan on having a disk-based data store some time in the future. * Multi-million point clouds can be slow
What is Rerun for?
Rerun is built to help you understand and improve complex processes that include rich multimodal data, like 2D, 3D, text, time series, tensors, etc. It is used in many industries, including robotics, simulation, computer vision, or anything that involves a lot of sensors or other signals that evolve over time.
Example use case
Say you're building a vacuum cleaning robot and it keeps running into walls. Why is it doing that? You need some tool to debug it, but a normal debugger isn't gonna be helpful. Similarly, just logging text won't be very helpful either. The robot may log "Going through doorway" but that won't explain why it thinks the wall is a door.
What you need is a visual and temporal debugger, that can log all the different representations of the world the robots holds in its little head, such as:
- RGB camera feed
- depth images
- lidar scan
- segmentation image (how the robot interprets what it sees)
- its 3D map of the apartment
- all the objects the robot has detected (or thinks it has detected), as 3D shapes in the 3D map
- its confidence in its prediction
- etc
You also want to see how all these streams of data evolve over time so you can go back and pinpoint exactly what went wrong, when and why.
Maybe it turns out that a glare from the sun hit one of the sensors in the wrong way, confusing the segmentation network leading to bad object detection. Or maybe it was a bug in the lidar scanning code. Or maybe the robot thought it was somewhere else in the apartment, because its odometry was broken. Or it could be one of a thousand other things. Rerun will help you find out!
But seeing the world from the point of the view of the robot is not just for debugging - it will also give you ideas on how to improve the algorithms, new test cases to set up, or datasets to collect. It will also let you explain the brains of the robot to your colleagues, boss, and customers. And so on. Seeing is believing, and an image is worth a thousand words, and multimodal temporal logging is worth a thousand images :)
While seeing and understanding your data is core to making progress in robotics, there is one more thing: You can also use the data you collected for visualization to create new datasets for training and evaluating the models and algorithms that run on your robot. Rerun provides query APIs to make it easy to extract clean datasets from your recording for exactly that purpose.
Of course, Rerun is useful for much more than just robots. Any time you have any form of sensors, or 2D or 3D state evolving over time, Rerun is a great tool.
Business model
Rerun uses an open-core model. Everything in this repository will stay open source and free (both as in beer and as in freedom).
We are also building a commercial data platform. Right now that is only available for a few select design partners. Click here if you're interested.
The Rerun open source project targets the needs of individual developers. The commercial product targets the needs specific to teams that build and run computer vision and robotics products.
How to cite Rerun
When using Rerun in your research, please cite it to acknowledge its contribution to your work. This can be done by including a reference to Rerun in the software or methods section of your paper.
Suggested citation format:
bibtex
@software{RerunSDK,
title = {Rerun: A Visualization SDK for Multimodal Data},
author = {{Rerun Development Team}},
url = {https://www.rerun.io},
version = {insert version number},
date = {insert date of usage},
year = {2024},
publisher = {{Rerun Technologies AB}},
address = {Online},
note = {Available from https://www.rerun.io/ and https://github.com/rerun-io/rerun}
}
Please replace "insert version number" with the version of Rerun you used and "insert date of usage" with the date(s) you used the tool in your research. This citation format helps ensure that Rerun's development team receives appropriate credit for their work and facilitates the tool's discovery by other researchers.
Development
ARCHITECTURE.mdCODE_OF_CONDUCT.mdCODE_STYLE.mdCONTRIBUTING.mdBUILD.mdrerun_py/README.md- instructions for Python SDKrerun_cpp/README.md- instructions for C++ SDK
Installing a pre-release Python SDK
- Download the correct
.whlfrom GitHub Releases - Run
pip install rerun_sdk<…>.whl(replace<…>with the actual filename) - Test it:
rerun --version
Owner
- Name: rerun.io
- Login: rerun-io
- Kind: organization
- Email: inbound@rerun.io
- Location: Sweden
- Website: www.rerun.io
- Twitter: rerundotio
- Repositories: 109
- Profile: https://github.com/rerun-io
Visualize streams of multimodal data. Fast, easy to use, and simple to integrate. Built in Rust using egui.
Committers
Last synced: 10 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Emil Ernerfeldt | e****t@g****m | 1,644 |
| Andreas Reich | a****s@r****o | 1,147 |
| Clement Rey | c****t@g****m | 907 |
| Jeremy Leibs | j****y@r****o | 685 |
| Antoine Beyeler | 4****9 | 552 |
| Jan Procházka | 1****k | 318 |
| Jochen Görtler | g****r | 101 |
| Nikolaus West | n****o@g****o | 77 |
| John Hughes | j****n@r****o | 61 |
| rerun-bot | 1****t | 59 |
| Zeljko Mihaljcic | 7****o | 55 |
| Gijs de Jong | 1****e | 40 |
| Lucas Meurer | l****6@g****m | 27 |
| Kevin Reid | k****d@s****g | 22 |
| Leonard Bruns | r****9@g****m | 18 |
| Alexander Berntsson | a****n@g****m | 12 |
| Andrea Reale | 1****e | 11 |
| Pablo Vela | p****0@g****m | 10 |
| Silvio Traversaro | s****o@t****t | 7 |
| Andreas Naoum | 4****m | 7 |
| Marten Bjork | m****n@m****m | 5 |
| Birger Moëll | b****l@g****m | 5 |
| Artur J | 1****m | 5 |
| Tim Saucer | t****r@g****m | 4 |
| h3mosphere | 1****e | 4 |
| Pierre Moulon @ Meta | 7****s | 4 |
| Roman Golovanov | 1****v | 3 |
| @brody4hire - C. Jonathan Brody | b****e@b****m | 2 |
| Abhishek Kashyap | a****p@g****m | 2 |
| Billy O'Neal | b****n@m****m | 2 |
| and 59 more... | ||
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 3,307
- Total pull requests: 7,669
- Average time to close issues: 3 months
- Average time to close pull requests: 3 days
- Total issue authors: 277
- Total pull request authors: 129
- Average comments per issue: 1.07
- Average comments per pull request: 1.29
- Merged pull requests: 6,231
- Bot issues: 5
- Bot pull requests: 1
Past Year
- Issues: 1,233
- Pull requests: 3,869
- Average time to close issues: 13 days
- Average time to close pull requests: 2 days
- Issue authors: 178
- Pull request authors: 82
- Average comments per issue: 0.74
- Average comments per pull request: 1.69
- Merged pull requests: 3,021
- Bot issues: 5
- Bot pull requests: 0
Top Authors
Issue Authors
- jleibs (520)
- emilk (454)
- teh-cmc (429)
- abey79 (417)
- Wumpf (410)
- nikolausWest (128)
- roym899 (112)
- grtlr (101)
- jprochazk (101)
- Andrberts (30)
- martenbjork (25)
- kpreid (22)
- oxkitsune (22)
- ntjohnson1 (20)
- henrythomas (19)
Pull Request Authors
- emilk (1,630)
- Wumpf (1,434)
- teh-cmc (1,065)
- abey79 (982)
- jleibs (621)
- jprochazk (505)
- grtlr (353)
- rerun-bot (186)
- zehiko (110)
- oxkitsune (107)
- lucasmerlin (93)
- nikolausWest (61)
- timsaucer (54)
- kpreid (39)
- andrea-reale (33)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 100
-
Total downloads:
- cargo 33,417,176 total
- npm 10,454 last-month
- pypi 418,493 last-month
-
Total dependent packages: 447
(may contain duplicates) -
Total dependent repositories: 50
(may contain duplicates) - Total versions: 9,971
- Total maintainers: 6
pypi.org: rerun-sdk
The Rerun Logging SDK
- Documentation: https://rerun-sdk.readthedocs.io/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
proxy.golang.org: github.com/rerun-io/rerun
- Documentation: https://pkg.go.dev/github.com/rerun-io/rerun#section-documentation
- License: apache-2.0
-
Latest release: v0.5.1
published almost 3 years ago
Rankings
crates.io: re_log
Helpers for setting up and doing text logging in the Rerun crates.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_log/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_log_types
The basic building blocks of the Rerun data types and tables.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_log_types/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_tracing
Helpers for tracing/spans/flamegraphs and such.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_tracing/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_error
Helpers for handling errors.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_error/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_format
Miscellaneous tools to format and parse numbers, durations, etc.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_format/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_arrow_store
An in-memory time series database for Rerun log data, based on Apache Arrow
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_arrow_store/
- License: MIT OR Apache-2.0
-
Latest release: 0.11.0
published about 2 years ago
Rankings
Maintainers (1)
crates.io: re_types
The built-in Rerun data types, component types, and archetypes.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_types/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_renderer
A wgpu based renderer for all your visualization needs.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_renderer/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_data_store
An in-memory time series database for Rerun log data, based on Apache Arrow
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_data_store/
- License: MIT OR Apache-2.0
-
Latest release: 0.17.0
published over 1 year ago
Rankings
Maintainers (1)
crates.io: re_ui
Rerun GUI theme and helpers, built around egui
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_ui/
- License: (MIT OR Apache-2.0) AND OFL-1.1
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_build_tools
build.rs helpers for generating build info
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_build_tools/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_string_interner
Yet another string interning library
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_string_interner/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_smart_channel
A channel that keeps track of latency and queue length.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_smart_channel/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_build_info
Information about the build. Use together with re_build_tools
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_build_info/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_query
High-level query APIs
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_query/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_viewer_context
Rerun viewer state that is shared with the viewer's code components.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_viewer_context/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_log_encoding
Helpers for encoding and transporting Rerun log messages
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_log_encoding/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_data_ui
Provides ui elements for Rerun component data for the Rerun Viewer.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_data_ui/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_components
The standard rerun data types, component types, and archetypes
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_components/
- License: MIT OR Apache-2.0
-
Latest release: 0.8.2
published over 2 years ago
Rankings
Maintainers (1)
crates.io: re_space_view
Types & utilities for defining space view classes and communicating with the viewport.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_space_view/
- License: MIT OR Apache-2.0
-
Latest release: 0.20.3
published about 1 year ago
Rankings
Maintainers (1)
crates.io: re_memory
Run-time memory tracking and profiling.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_memory/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_analytics
Rerun's analytics SDK
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_analytics/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: rerun
Log images, point clouds, etc, and visualize them effortlessly
- Homepage: https://rerun.io
- Documentation: https://docs.rs/rerun/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
crates.io: re_tuid
128-bit Time-based Unique Identifier
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_tuid/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_sdk_comms
TCP communication between Rerun SDK and Rerun Server
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_sdk_comms/
- License: MIT OR Apache-2.0
-
Latest release: 0.22.1
published about 1 year ago
Rankings
Maintainers (1)
crates.io: re_tensor_ops
Helpers for using ndarray together with Rerun tensors
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_tensor_ops/
- License: MIT OR Apache-2.0
-
Latest release: 0.11.0
published about 2 years ago
Rankings
Maintainers (1)
crates.io: re_sdk
Rerun logging SDK
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_sdk/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_viewer
The Rerun viewer
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_viewer/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_web_viewer_server
Serves the Rerun web viewer (Wasm and HTML) over HTTP
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_web_viewer_server/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_space_view_time_series
A space view that shows plots over Rerun timelines.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_space_view_time_series/
- License: MIT OR Apache-2.0
-
Latest release: 0.20.3
published about 1 year ago
Rankings
Maintainers (1)
crates.io: re_int_histogram
A histogram with `i64` keys and `u32` counts, supporting both sparse and dense uses.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_int_histogram/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_data_source
Handles loading of Rerun data
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_data_source/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_types_builder
Generates code for Rerun's SDKs from flatbuffers definitions.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_types_builder/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_types_core
The core traits and types that power Rerun's data model.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_types_core/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_build_web_viewer
Build the rerun web-viewer Wasm from source
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_build_web_viewer/
- License: MIT OR Apache-2.0
-
Latest release: 0.15.1
published almost 2 years ago
Rankings
Maintainers (1)
crates.io: re_crash_handler
Detect panics and signals, logging them and optionally sending them to analytics.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_crash_handler/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_time_panel
The time panel of the Rerun Viewer, allowing to control the displayed timeline & time.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_time_panel/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_viewport
The central viewport panel of the Rerun viewer.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_viewport/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_space_view_tensor
A space view dedicated to visualizing tensors with arbitrary dimensionality.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_space_view_tensor/
- License: MIT OR Apache-2.0
-
Latest release: 0.20.3
published about 1 year ago
Rankings
Maintainers (1)
crates.io: re_space_view_bar_chart
A space view that shows a single bar chart.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_space_view_bar_chart/
- License: MIT OR Apache-2.0
-
Latest release: 0.20.3
published about 1 year ago
Rankings
Maintainers (1)
crates.io: re_space_view_spatial
Space Views that show entities in a 2D or 3D spatial relationship.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_space_view_spatial/
- License: MIT OR Apache-2.0
-
Latest release: 0.20.3
published about 1 year ago
Rankings
Maintainers (1)
crates.io: re_space_view_text_box
A simple Space View that shows a single text box.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_space_view_text_box/
- License: MIT OR Apache-2.0
-
Latest release: 0.8.2
published over 2 years ago
Rankings
Maintainers (1)
crates.io: re_space_view_text
A Space View that shows text entries in a table and scrolls with the active time.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_space_view_text/
- License: MIT OR Apache-2.0
-
Latest release: 0.8.2
published over 2 years ago
Rankings
Maintainers (1)
crates.io: re_space_view_text_log
A space view that shows text entries in a table and scrolls with the active time.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_space_view_text_log/
- License: MIT OR Apache-2.0
-
Latest release: 0.20.3
published about 1 year ago
Rankings
Maintainers (1)
crates.io: re_space_view_text_document
A simple space view that shows a single text box.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_space_view_text_document/
- License: MIT OR Apache-2.0
-
Latest release: 0.20.3
published about 1 year ago
Rankings
Maintainers (1)
npmjs.org: @rerun-io/web-viewer
Embed the Rerun web viewer in your app
- Homepage: https://rerun.io
- License: MIT
-
Latest release: 0.24.1
published 7 months ago
Rankings
npmjs.org: @rerun-io/web-viewer-react
Embed the Rerun web viewer in your React app
- Homepage: https://rerun.io
- License: MIT
-
Latest release: 0.24.1
published 7 months ago
Rankings
crates.io: re_web_server
Serves the Rerun web viewer (Wasm and HTML) over HTTP
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_web_server/
- License: MIT OR Apache-2.0
-
Latest release: 0.2.0
published about 3 years ago
Rankings
Maintainers (1)
crates.io: re_mcap_ros2
Deserialization of a subset of ROS2 messages.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_mcap_ros2/
- License: MIT OR Apache-2.0
-
Latest release: 0.25.0-alpha.1
published 6 months ago
Rankings
Maintainers (1)
crates.io: afo3c4hnlo78d_publish_test_a
Publish test A
- Homepage: https://rerun.io
- Documentation: https://docs.rs/afo3c4hnlo78d_publish_test_a/
- License: MIT OR Apache-2.0
- Status: removed
-
Latest release: 0.0.1-alpha.7
published over 2 years ago
Rankings
Maintainers (1)
crates.io: re_dataframe_ui
Rich table widget over DataFusion.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_dataframe_ui/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_redap_browser
The UI and communication to implement the in-viewer redap server browser.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_redap_browser/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_uri
Parsing and constructing Rerun URIs
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_uri/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_build_build_info
build.rs helpers for generating build info
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_build_build_info/
- License: MIT OR Apache-2.0
-
Latest release: 0.7.0
published over 2 years ago
Rankings
Maintainers (1)
crates.io: afo3c4hnlo78d_publish_test_b
Publish test B
- Homepage: https://rerun.io
- Documentation: https://docs.rs/afo3c4hnlo78d_publish_test_b/
- License: MIT OR Apache-2.0
- Status: removed
-
Latest release: 0.0.1-alpha.7
published over 2 years ago
Rankings
Maintainers (1)
crates.io: rerun-cli
Log images, point clouds, etc, and visualize them effortlessly
- Homepage: https://rerun.io
- Documentation: https://docs.rs/rerun-cli/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: rerun_c
Rerun C SDK
- Homepage: https://rerun.io
- Documentation: https://docs.rs/rerun_c/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_global_context
Rerun state that is shared with most top-level crates.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_global_context/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_perf_telemetry
In and out of process performance profiling utilities for Rerun & Redap
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_perf_telemetry/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_span
An integer range that always has a non-negative length
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_span/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_auth
Authentication helpers for Rerun
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_auth/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_datafusion
High-level query APIs
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_datafusion/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_sorbet
Rerun arrow metadata definitions
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_sorbet/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_byte_size
Calculate the heap-allocated size of values at runtime.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_byte_size/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_arrow_util
Helpers for working with arrow.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_arrow_util/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_grpc_server
gRCP server for the Rerun Data Platform gRPC protocol
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_grpc_server/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_capabilities
Capability tokens for the Rerun code base.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_capabilities/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_view_tensor
A view dedicated to visualizing tensors with arbitrary dimensionality.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_view_tensor/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_view_text_document
A simple view that shows a single text box.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_view_text_document/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_view_map
A view that shows a map.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_view_map/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_view_graph
A view that shows a graph (node-link diagram).
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_view_graph/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_view_text_log
A view that shows text entries in a table and scrolls with the active time.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_view_text_log/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_view_spatial
Views that show entities in a 2D or 3D spatial relationship.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_view_spatial/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_view_time_series
A view that shows plots over Rerun timelines.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_view_time_series/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_view_bar_chart
A view that shows a single bar chart.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_view_bar_chart/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_view_dataframe
A view that shows the data contained in entities in a table.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_view_dataframe/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_protos_builder
Code generation for Rerun's Protobuf and gRPC definitions.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_protos_builder/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_protos
Rerun remote gRPC/protobuf API types
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_protos/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_grpc_client
gRPC client for the Rerun Data Platform gRPC protocol
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_grpc_client/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_space_view_map
A space view that shows a map.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_space_view_map/
- License: MIT OR Apache-2.0
-
Latest release: 0.20.3
published about 1 year ago
Rankings
Maintainers (1)
crates.io: re_chunk_store_ui
Display the contents of chunk stores.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_chunk_store_ui/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_video
Rerun video processing utilities.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_video/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_dataframe
High-level query APIs
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_dataframe/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_component_ui
Provides ui editors for Rerun component data for registration with the Rerun Viewer component ui registry.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_component_ui/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_format_arrow
Format arrow data.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_format_arrow/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_types_blueprint
The core traits and types that power Rerun's Blueprint sub-system.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_types_blueprint/
- License: MIT OR Apache-2.0
-
Latest release: 0.20.3
published about 1 year ago
Rankings
Maintainers (1)
crates.io: re_data_loader
Handles loading of Rerun data from file using data loader plugins
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_data_loader/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_chunk_store
A storage engine for Rerun's Chunks
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_chunk_store/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_edit_ui
Provides ui editors for Rerun component data for registration with the Rerun Viewer component ui registry.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_edit_ui/
- License: MIT OR Apache-2.0
-
Latest release: 0.18.0
published over 1 year ago
Rankings
Maintainers (1)
crates.io: re_case
Case conversions, the way Rerun likes them
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_case/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_chunk
A chunk of Rerun data, encoded using Arrow. Used for logging, transport, storage and compute.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_chunk/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_blueprint_tree
The UI for the blueprint tree in the left panel.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_blueprint_tree/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_viewport_blueprint
The data model describing the layout of the viewport.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_viewport_blueprint/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_selection_panel
The UI for the selection panel.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_selection_panel/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_context_menu
Support crate for context menu and actions.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_context_menu/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
crates.io: re_space_view_dataframe
A space view that shows the data contained in entities in a table.
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_space_view_dataframe/
- License: MIT OR Apache-2.0
-
Latest release: 0.20.3
published about 1 year ago
Rankings
Maintainers (1)
crates.io: re_query_cache
Caching datastructures for re_query
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_query_cache/
- License: MIT OR Apache-2.0
-
Latest release: 0.15.1
published almost 2 years ago
Rankings
Maintainers (1)
crates.io: re_entity_db
In-memory storage of Rerun entities
- Homepage: https://rerun.io
- Documentation: https://docs.rs/re_entity_db/
- License: MIT OR Apache-2.0
-
Latest release: 0.24.1
published 7 months ago
Rankings
Maintainers (1)
Dependencies
- mheap/github-action-required-labels v3 composite
- 583 dependencies
- rerun-sdk *
- numpy *
- rerun-sdk *
- betterproto *
- numpy *
- requests *
- rerun-sdk *
- scipy *
- numpy *
- rerun-sdk *
- numpy *
- requests ==2.28.1
- rerun-sdk *
- trimesh ==3.15.2
- deprecated *
- numpy >=1.23
- pyarrow ==10.0.1
- maturin >=0.14,<0.15
- pytest *
- semver >=2.13,<2.14
- wheel >=0.38,<0.39
- mike *
- mkdocs *
- mkdocs-gen-files *
- mkdocs-literate-nav *
- mkdocs-material *
- mkdocs-material-extensions *
- mkdocs-redirects *
- mkdocstrings *
- mkdocstrings-python *
- black ==22.8.0
- blackdoc ==0.3.6
- flake8 ==5.0.4
- flake8-bugbear ==22.8.23
- flake8-comprehensions ==3.10.0
- flake8-docstrings ==1.6.0
- flake8-simplify ==0.19.3
- flake8-tidy-imports ==4.8.0
- isort ==5.10.1
- mypy ==0.971
- numpy ==1.23
- pip-check-reqs ==2.4.3
- pyupgrade ==2.37.3
- types-Deprecated ==1.2.9
- types-requests ==2.28.10
- numpy *
- rerun-sdk *
- numpy *
- rerun-sdk *
- numpy *
- rerun-sdk *
- scipy *
- numpy *
- rerun-sdk *
- tracing-subscriber 0.3 development
- crossbeam 0.8
- once_cell 1.17
- serde 1
- serde_json 1
- sha2 0.10
- time 0.3
- uuid 1.1
- criterion 0.4 development
- mimalloc 0.1 development
- rand 0.8 development
- ahash 0.8
- chrono 0.4
- document-features 0.2
- indent 0.1
- itertools 0.10
- nohash-hasher 0.2
- parking_lot 0.12
- static_assertions 1.1
- criterion 0.4 development
- mimalloc 0.1 development
- rand 0.8 development
- ahash 0.8
- anyhow 1.0
- document-features 0.2
- itertools 0.10
- nohash-hasher 0.2
- once_cell 1.15.0
- ordered-float 3.2
- serde 1
- thiserror 1.0
- criterion 0.4 development
- insta 1.23 development
- mimalloc 0.1 development
- smallvec 1.10
- static_assertions 1.1
- criterion 0.4 development
- mimalloc 0.1 development
- serde_test 1 development
- ahash 0.8
- array-init 2.1.0
- bytemuck 1.11
- chrono 0.4
- document-features 0.2
- fixed 1.17
- nohash-hasher 0.2
- num-derive 0.3
- num-traits 0.2
- rand 0.8
- rmp-serde 1
- serde 1
- serde_bytes 0.11
- typenum 1.15
- uuid 1.1
- criterion 0.4 development
- itertools 0.10 development
- mimalloc 0.1 development
- chrono 0.4
- document-features 0.2
- indent 0.1
- itertools 0.10
- nohash-hasher 0.2
- image 0.24 development
- instant 0.1 development
- log 0.4 development
- pollster 0.3 development
- rand 0.8 development
- tracing 0.1 development
- unindent 0.1 development
- winit 0.28.1 development
- zip 0.6 development
- ahash 0.8
- bitflags 1.3
- bytemuck 1.12
- clean-path 0.2
- document-features 0.2
- itertools 0.10
- memoffset 0.8
- ordered-float 3.2
- parking_lot 0.12
- serde 1
- slotmap 1.0.6
- smallvec 1.10
- static_assertions 1.1
- tobj 3.2
- type-map 0.5
- ndarray-rand 0.14 development
- rand 0.8 development
- crossbeam 0.8
- document-features 0.2
- nohash-hasher 0.2
- once_cell 1.12
- webbrowser 0.8
- criterion 0.4 development
- document-features 0.2
- once_cell 1.16
- serde 1
- image 0.24
- parking_lot 0.12
- serde 1
- serde_json 1
- strum 0.24
- strum_macros 0.24
- sublime_fuzzy 0.7
- ubuntu 20.04 build
- GitPython ==3.1.37
- PyGithub ==1.59.0
- colorama ==0.4.6
- requests >=2.31,<3
- semver >=2.13,<2.14
- tomlkit ==0.11.8
- index.mjs node18 javascript
- Swatinem/rust-cache v2 composite
- google-github-actions/auth v1 composite
- rerun-io/sccache-action v0.7.0 composite
- actions/checkout v4 composite
- actions/setup-python v2 composite
- actions/github-script v6 composite
- actions/checkout v4 composite
- jprochazk/linkinator-action main composite
- streetsidesoftware/cspell-action v2 composite
- PyO3/maturin-action v1 composite
- actions/checkout v4 composite
- google-github-actions/auth v1 composite
- google-github-actions/setup-gcloud v1 composite
- ncipollo/release-action v1.12.0 composite
- Swatinem/rust-cache v2 composite
- actions/checkout v4 composite
- dev-drprasad/delete-tag-and-release v0.2.1 composite
- dtolnay/rust-toolchain master composite
- ncipollo/release-action v1.12.0 composite
- actions/checkout v4 composite
- actions/setup-python v2 composite
- peter-evans/create-pull-request v5.0.2 composite
- ./.github/actions/setup-rust * composite
- actions/checkout v4 composite
- benchmark-action/github-action-benchmark v1 composite
- google-github-actions/setup-gcloud v1 composite
- google-github-actions/upload-cloud-storage v1 composite
- ./.github/actions/setup-rust * composite
- actions-rs/cargo v1 composite
- actions/checkout v4 composite
- actions/download-artifact v3 composite
- google-github-actions/upload-cloud-storage v1 composite
- PyO3/maturin-action v1 composite
- actions/checkout v4 composite
- google-github-actions/auth v1 composite
- google-github-actions/setup-gcloud v1 composite
- ./.github/actions/setup-rust * composite
- PyO3/maturin-action v1 composite
- actions/cache v3 composite
- actions/checkout v4 composite
- actions/setup-python v4 composite
- actions/upload-artifact v3 composite
- engineerd/configurator v0.0.9 composite
- ./.github/actions/setup-rust * composite
- actions-rs/cargo v1 composite
- actions/checkout v4 composite
- google-github-actions/auth v1 composite
- google-github-actions/upload-cloud-storage v1 composite
- ./.github/actions/setup-rust * composite
- actions-rs/cargo v1 composite
- actions/checkout v4 composite
- actions/upload-artifact v3 composite
- actions/checkout v4 composite
- actions/download-artifact v3 composite
- actions/upload-artifact v3 composite
- ./.github/actions/setup-rust * composite
- actions-rs/cargo v1 composite
- actions/checkout v4 composite
- actions/setup-python v4 composite
- crate-ci/typos master composite
- extractions/setup-just v1 composite
- jidicula/clang-format-action v4.11.0 composite
- taiki-e/install-action v2 composite
- ./.github/actions/deploy-vercel * composite
- ./.github/actions/setup-rust * composite
- actions-rs/cargo v1 composite
- actions/checkout v4 composite
- actions/setup-node v3 composite
- actions/setup-python v4 composite
- actions/checkout v4 composite
- actions/setup-python v2 composite
- google-github-actions/auth v1 composite
- google-github-actions/setup-gcloud v1 composite
- actions/checkout v4 composite
- actions/setup-python v2 composite
- google-github-actions/auth v1 composite
- google-github-actions/setup-gcloud v1 composite
- actions-rs/cargo v1 composite
- actions/checkout v4 composite
- actions/checkout v4 composite
- actions/download-artifact v3 composite
- google-github-actions/auth v1 composite
- google-github-actions/upload-cloud-storage v1 composite
- actions/checkout v4 composite
- actions/download-artifact v3 composite
- benchmark-action/github-action-benchmark v1 composite
- google-github-actions/auth v1 composite
- google-github-actions/setup-gcloud v1 composite
- google-github-actions/upload-cloud-storage v1 composite
- mshick/add-pr-comment v2.8.1 composite
- actions/checkout v4 composite
- actions/setup-python v2 composite
- actions/checkout v4 composite
- actions/download-artifact v3 composite
- google-github-actions/auth v1 composite
- google-github-actions/upload-cloud-storage v1 composite
- actions/checkout v4 composite
- actions/download-artifact v3 composite
- google-github-actions/auth v1 composite
- google-github-actions/upload-cloud-storage v1 composite
- actions/checkout v4 composite
- actions/download-artifact v3 composite
- google-github-actions/auth v1 composite
- google-github-actions/upload-cloud-storage v1 composite
- criterion 0.5 development
- serde_test 1 development
- lz4_flex 0.10
- rmp-serde 1
- similar-asserts 1.4.2 development
- array-init 2.1
- backtrace 0.3
- bytemuck 1.11
- document-features 0.2
- serde 1
- uuid 1.1
- zune-core 0.2
- zune-jpeg 0.3