https://github.com/rerun-io/rerun

Visualize streams of multimodal data. Free, fast, easy to use, and simple to integrate. Built in Rust.

https://github.com/rerun-io/rerun

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

computer-vision cpp multimodal python robotics rust visualization

Keywords from Contributors

conda transformers speaker-encoder optimism sequencers diffusion productivity distributed embedded autograd
Last synced: 5 months ago · JSON representation

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
computer-vision cpp multimodal python robotics rust visualization
Created almost 4 years ago · Last pushed 6 months ago
Metadata Files
Readme Changelog Contributing License Code of conduct Security

README.md

banner

PyPi crates.io MIT Apache Rerun Discord

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

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

Installing a pre-release Python SDK

  1. Download the correct .whl from GitHub Releases
  2. Run pip install rerun_sdk<…>.whl (replace <…> with the actual filename)
  3. Test it: rerun --version

Owner

  • Name: rerun.io
  • Login: rerun-io
  • Kind: organization
  • Email: inbound@rerun.io
  • Location: Sweden

Visualize streams of multimodal data. Fast, easy to use, and simple to integrate. Built in Rust using egui.

Committers

Last synced: 10 months ago

All Time
  • Total Commits: 5,864
  • Total Committers: 89
  • Avg Commits per committer: 65.888
  • Development Distribution Score (DDS): 0.72
Past Year
  • Commits: 2,097
  • Committers: 57
  • Avg Commits per committer: 36.789
  • Development Distribution Score (DDS): 0.796
Top Committers
Name Email 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...

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
🪳 bug (927) enhancement (653) ui (589) 👀 needs triage (407) 📺 re_viewer (400) 😤 annoying (385) 🧑‍💻 dev experience (267) 📖 documentation (210) 🏎️ Quick Issue (192) 🐍 Python API (179) 🟦 blueprint (165) 📉 performance (151) 🔺 re_renderer (124) ⛃ re_datastore (108) 🦟 regression (107) examples (106) 🕸️ web (104) user-request (101) 🔩 data model (92) 🐍 python API (88) :ship: CI (83) 🏹 arrow (81) codegen/idl (81) C/C++ SDK (79) 💬 discussion (74) 🎞️ video (71) 🍏 primitives (70) ⛴ release (68) 🎄 tracking issue (65) 💣 crash (64)
Pull Request Labels
exclude from changelog (4,440) include in changelog (2,398) ui (893) 🪳 bug (830) 🧑‍💻 dev experience (767) 📺 re_viewer (765) 📖 documentation (639) 🚜 refactor (626) :ship: CI (550) 🐍 Python API (423) dependencies (359) examples (354) ⛴ release (320) 📉 performance (316) 🔨 testing (262) enhancement (261) 🟦 blueprint (258) dataplatform (244) 🦟 regression (213) 🦀 Rust API (207) 🔍 re_query (189) do-not-merge (183) 🎞️ video (180) codegen/idl (179) 🏹 arrow (161) 🕸️ web (159) 🌊 C++ API (152) ⛃ re_datastore (146) 🔩 data model (145) 🔺 re_renderer (133)

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

  • Versions: 168
  • Dependent Packages: 9
  • Dependent Repositories: 5
  • Downloads: 418,493 Last month
Rankings
Dependent packages count: 1.4%
Downloads: 1.7%
Average: 3.2%
Dependent repos count: 6.6%
Maintainers (1)
Last synced: 6 months ago
proxy.golang.org: github.com/rerun-io/rerun
  • Versions: 10
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent packages count: 6.4%
Average: 6.7%
Dependent repos count: 6.9%
Last synced: 6 months ago
crates.io: re_log

Helpers for setting up and doing text logging in the Rerun crates.

  • Versions: 213
  • Dependent Packages: 41
  • Dependent Repositories: 1
  • Downloads: 907,767 Total
Rankings
Dependent packages count: 1.2%
Stargazers count: 2.1%
Forks count: 4.7%
Average: 7.0%
Downloads: 10.6%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_log_types

The basic building blocks of the Rerun data types and tables.

  • Versions: 203
  • Dependent Packages: 29
  • Dependent Repositories: 1
  • Downloads: 850,795 Total
Rankings
Dependent packages count: 1.7%
Stargazers count: 2.1%
Forks count: 4.7%
Average: 7.3%
Downloads: 11.6%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_tracing

Helpers for tracing/spans/flamegraphs and such.

  • Versions: 190
  • Dependent Packages: 33
  • Dependent Repositories: 1
  • Downloads: 862,661 Total
Rankings
Dependent packages count: 1.5%
Stargazers count: 2.1%
Forks count: 4.7%
Average: 7.4%
Downloads: 12.4%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_error

Helpers for handling errors.

  • Versions: 214
  • Dependent Packages: 15
  • Dependent Repositories: 1
  • Downloads: 887,064 Total
Rankings
Stargazers count: 2.1%
Dependent packages count: 3.0%
Forks count: 4.7%
Average: 7.5%
Downloads: 11.2%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_format

Miscellaneous tools to format and parse numbers, durations, etc.

  • Versions: 213
  • Dependent Packages: 15
  • Dependent Repositories: 1
  • Downloads: 864,483 Total
Rankings
Stargazers count: 2.1%
Dependent packages count: 3.2%
Forks count: 4.7%
Average: 7.6%
Downloads: 11.4%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_arrow_store

An in-memory time series database for Rerun log data, based on Apache Arrow

  • Versions: 57
  • Dependent Packages: 16
  • Dependent Repositories: 1
  • Downloads: 85,487 Total
Rankings
Stargazers count: 2.1%
Dependent packages count: 2.3%
Forks count: 4.7%
Average: 7.6%
Downloads: 12.4%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_types

The built-in Rerun data types, component types, and archetypes.

  • Versions: 177
  • Dependent Packages: 30
  • Dependent Repositories: 1
  • Downloads: 813,961 Total
Rankings
Dependent packages count: 1.7%
Stargazers count: 2.1%
Forks count: 4.7%
Average: 7.7%
Downloads: 13.5%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_renderer

A wgpu based renderer for all your visualization needs.

  • Versions: 202
  • Dependent Packages: 13
  • Dependent Repositories: 1
  • Downloads: 491,863 Total
Rankings
Stargazers count: 2.1%
Dependent packages count: 3.0%
Forks count: 4.7%
Average: 7.7%
Downloads: 12.3%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_data_store

An in-memory time series database for Rerun log data, based on Apache Arrow

  • Versions: 114
  • Dependent Packages: 19
  • Dependent Repositories: 1
  • Downloads: 409,418 Total
Rankings
Stargazers count: 2.1%
Dependent packages count: 2.8%
Forks count: 4.7%
Average: 7.7%
Downloads: 12.5%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_ui

Rerun GUI theme and helpers, built around egui

  • Versions: 184
  • Dependent Packages: 14
  • Dependent Repositories: 1
  • Downloads: 476,247 Total
Rankings
Stargazers count: 2.1%
Dependent packages count: 2.8%
Forks count: 4.7%
Average: 7.8%
Downloads: 12.7%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_build_tools

build.rs helpers for generating build info

  • Versions: 191
  • Dependent Packages: 11
  • Dependent Repositories: 1
  • Downloads: 852,662 Total
Rankings
Stargazers count: 2.1%
Dependent packages count: 3.5%
Forks count: 4.7%
Average: 7.8%
Downloads: 12.4%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_string_interner

Yet another string interning library

  • Versions: 214
  • Dependent Packages: 7
  • Dependent Repositories: 1
  • Downloads: 880,800 Total
Rankings
Stargazers count: 2.1%
Dependent packages count: 4.7%
Forks count: 4.7%
Average: 7.9%
Downloads: 11.4%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_smart_channel

A channel that keeps track of latency and queue length.

  • Versions: 205
  • Dependent Packages: 13
  • Dependent Repositories: 1
  • Downloads: 847,484 Total
Rankings
Stargazers count: 2.1%
Dependent packages count: 4.2%
Forks count: 4.7%
Average: 7.9%
Downloads: 11.9%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_build_info

Information about the build. Use together with re_build_tools

  • Versions: 204
  • Dependent Packages: 8
  • Dependent Repositories: 1
  • Downloads: 862,033 Total
Rankings
Stargazers count: 2.1%
Dependent packages count: 4.2%
Forks count: 4.7%
Average: 8.0%
Downloads: 12.4%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_query

High-level query APIs

  • Versions: 194
  • Dependent Packages: 14
  • Dependent Repositories: 1
  • Downloads: 790,091 Total
Rankings
Stargazers count: 2.1%
Dependent packages count: 3.8%
Forks count: 4.7%
Average: 8.0%
Downloads: 12.7%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_viewer_context

Rerun viewer state that is shared with the viewer's code components.

  • Versions: 158
  • Dependent Packages: 14
  • Dependent Repositories: 1
  • Downloads: 427,229 Total
Rankings
Stargazers count: 2.1%
Dependent packages count: 2.8%
Forks count: 4.7%
Average: 8.0%
Downloads: 13.8%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_log_encoding

Helpers for encoding and transporting Rerun log messages

  • Versions: 184
  • Dependent Packages: 8
  • Dependent Repositories: 1
  • Downloads: 824,210 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Dependent packages count: 5.4%
Average: 8.3%
Downloads: 13.0%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_data_ui

Provides ui elements for Rerun component data for the Rerun Viewer.

  • Versions: 156
  • Dependent Packages: 8
  • Dependent Repositories: 1
  • Downloads: 419,531 Total
Rankings
Stargazers count: 2.1%
Dependent packages count: 4.7%
Forks count: 4.7%
Average: 8.5%
Downloads: 14.4%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_components

The standard rerun data types, component types, and archetypes

  • Versions: 9
  • Dependent Packages: 16
  • Dependent Repositories: 1
  • Downloads: 21,805 Total
Rankings
Stargazers count: 2.1%
Dependent packages count: 2.3%
Forks count: 4.7%
Average: 8.7%
Dependent repos count: 16.5%
Downloads: 17.8%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_space_view

Types & utilities for defining space view classes and communicating with the viewport.

  • Versions: 117
  • Dependent Packages: 9
  • Dependent Repositories: 1
  • Downloads: 221,095 Total
Rankings
Stargazers count: 2.1%
Dependent packages count: 4.7%
Forks count: 4.7%
Average: 8.7%
Downloads: 15.8%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_memory

Run-time memory tracking and profiling.

  • Versions: 206
  • Dependent Packages: 5
  • Dependent Repositories: 1
  • Downloads: 837,191 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Dependent packages count: 7.4%
Average: 8.8%
Downloads: 13.4%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_analytics

Rerun's analytics SDK

  • Versions: 208
  • Dependent Packages: 4
  • Dependent Repositories: 1
  • Downloads: 470,359 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Dependent packages count: 7.4%
Average: 8.9%
Downloads: 13.6%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: rerun

Log images, point clouds, etc, and visualize them effortlessly

  • Versions: 166
  • Dependent Packages: 5
  • Dependent Repositories: 1
  • Downloads: 750,688 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Dependent packages count: 9.2%
Average: 9.3%
Downloads: 14.1%
Dependent repos count: 16.5%
Maintainers (2)
Last synced: 6 months ago
crates.io: re_tuid

128-bit Time-based Unique Identifier

  • Versions: 213
  • Dependent Packages: 4
  • Dependent Repositories: 1
  • Downloads: 860,917 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Average: 9.4%
Downloads: 11.4%
Dependent packages count: 12.2%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_sdk_comms

TCP communication between Rerun SDK and Rerun Server

  • Versions: 162
  • Dependent Packages: 2
  • Dependent Repositories: 1
  • Downloads: 712,582 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Average: 9.8%
Dependent packages count: 12.2%
Downloads: 13.6%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_tensor_ops

Helpers for using ndarray together with Rerun tensors

  • Versions: 54
  • Dependent Packages: 2
  • Dependent Repositories: 1
  • Downloads: 75,706 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Average: 9.9%
Dependent packages count: 12.2%
Downloads: 13.8%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_sdk

Rerun logging SDK

  • Versions: 190
  • Dependent Packages: 4
  • Dependent Repositories: 1
  • Downloads: 814,062 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Average: 9.9%
Dependent packages count: 12.2%
Downloads: 13.8%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_viewer

The Rerun viewer

  • Versions: 163
  • Dependent Packages: 2
  • Dependent Repositories: 1
  • Downloads: 424,055 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Average: 9.9%
Dependent packages count: 12.2%
Downloads: 14.2%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_web_viewer_server

Serves the Rerun web viewer (Wasm and HTML) over HTTP

  • Versions: 190
  • Dependent Packages: 2
  • Dependent Repositories: 1
  • Downloads: 538,635 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Average: 10.0%
Dependent packages count: 12.2%
Downloads: 14.4%
Dependent repos count: 16.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_space_view_time_series

A space view that shows plots over Rerun timelines.

  • Versions: 116
  • Dependent Packages: 2
  • Dependent Repositories: 1
  • Downloads: 215,157 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Average: 10.5%
Dependent packages count: 12.2%
Dependent repos count: 16.5%
Downloads: 16.9%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_int_histogram

A histogram with `i64` keys and `u32` counts, supporting both sparse and dense uses.

  • Versions: 210
  • Dependent Packages: 2
  • Dependent Repositories: 1
  • Downloads: 799,284 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Average: 10.8%
Downloads: 12.7%
Dependent repos count: 16.5%
Dependent packages count: 18.2%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_data_source

Handles loading of Rerun data

  • Versions: 164
  • Dependent Packages: 4
  • Dependent Repositories: 1
  • Downloads: 415,502 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Dependent packages count: 9.2%
Average: 11.0%
Dependent repos count: 16.5%
Downloads: 22.4%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_types_builder

Generates code for Rerun's SDKs from flatbuffers definitions.

  • Versions: 187
  • Dependent Packages: 1
  • Dependent Repositories: 1
  • Downloads: 775,260 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Average: 11.0%
Downloads: 13.4%
Dependent repos count: 16.5%
Dependent packages count: 18.2%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_types_core

The core traits and types that power Rerun's data model.

  • Versions: 160
  • Dependent Packages: 17
  • Dependent Repositories: 1
  • Downloads: 780,554 Total
Rankings
Stargazers count: 2.1%
Dependent packages count: 3.5%
Forks count: 4.7%
Average: 11.0%
Dependent repos count: 16.5%
Downloads: 28.2%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_build_web_viewer

Build the rerun web-viewer Wasm from source

  • Versions: 86
  • Dependent Packages: 1
  • Dependent Repositories: 1
  • Downloads: 112,935 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Average: 11.1%
Downloads: 14.2%
Dependent repos count: 16.5%
Dependent packages count: 18.2%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_crash_handler

Detect panics and signals, logging them and optionally sending them to analytics.

  • Versions: 185
  • Dependent Packages: 1
  • Dependent Repositories: 1
  • Downloads: 779,746 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Average: 11.4%
Downloads: 15.7%
Dependent repos count: 16.5%
Dependent packages count: 18.2%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_time_panel

The time panel of the Rerun Viewer, allowing to control the displayed timeline & time.

  • Versions: 146
  • Dependent Packages: 1
  • Dependent Repositories: 1
  • Downloads: 400,725 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Average: 11.7%
Dependent repos count: 16.5%
Downloads: 16.9%
Dependent packages count: 18.2%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_viewport

The central viewport panel of the Rerun viewer.

  • Versions: 147
  • Dependent Packages: 2
  • Dependent Repositories: 1
  • Downloads: 402,455 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Average: 11.7%
Dependent repos count: 16.5%
Downloads: 16.9%
Dependent packages count: 18.2%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_space_view_tensor

A space view dedicated to visualizing tensors with arbitrary dimensionality.

  • Versions: 113
  • Dependent Packages: 1
  • Dependent Repositories: 1
  • Downloads: 211,861 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Average: 11.7%
Dependent repos count: 16.5%
Downloads: 16.9%
Dependent packages count: 18.2%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_space_view_bar_chart

A space view that shows a single bar chart.

  • Versions: 115
  • Dependent Packages: 1
  • Dependent Repositories: 1
  • Downloads: 213,823 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Average: 11.7%
Dependent repos count: 16.5%
Downloads: 17.0%
Dependent packages count: 18.2%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_space_view_spatial

Space Views that show entities in a 2D or 3D spatial relationship.

  • Versions: 112
  • Dependent Packages: 1
  • Dependent Repositories: 1
  • Downloads: 210,479 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Average: 11.7%
Dependent repos count: 16.5%
Downloads: 17.1%
Dependent packages count: 18.2%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_space_view_text_box

A simple Space View that shows a single text box.

  • Versions: 7
  • Dependent Packages: 1
  • Dependent Repositories: 1
  • Downloads: 17,862 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Average: 12.3%
Dependent repos count: 16.5%
Dependent packages count: 18.2%
Downloads: 20.2%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_space_view_text

A Space View that shows text entries in a table and scrolls with the active time.

  • Versions: 7
  • Dependent Packages: 1
  • Dependent Repositories: 1
  • Downloads: 17,962 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Average: 12.4%
Dependent repos count: 16.5%
Dependent packages count: 18.2%
Downloads: 20.4%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_space_view_text_log

A space view that shows text entries in a table and scrolls with the active time.

  • Versions: 108
  • Dependent Packages: 1
  • Dependent Repositories: 1
  • Downloads: 197,136 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Average: 14.1%
Dependent repos count: 16.5%
Dependent packages count: 18.2%
Downloads: 29.3%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_space_view_text_document

A simple space view that shows a single text box.

  • Versions: 108
  • Dependent Packages: 1
  • Dependent Repositories: 1
  • Downloads: 197,651 Total
Rankings
Stargazers count: 2.1%
Forks count: 4.7%
Average: 14.2%
Dependent repos count: 16.5%
Dependent packages count: 18.2%
Downloads: 29.4%
Maintainers (1)
Last synced: 6 months ago
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
  • Versions: 161
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Downloads: 6,317 Last month
Rankings
Stargazers count: 1.6%
Forks count: 2.7%
Average: 23.5%
Dependent repos count: 37.1%
Dependent packages count: 52.8%
Maintainers (2)
Last synced: 6 months ago
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
  • Versions: 155
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,137 Last month
Rankings
Stargazers count: 1.6%
Forks count: 2.6%
Average: 23.6%
Dependent repos count: 37.1%
Dependent packages count: 52.9%
Maintainers (2)
Last synced: 6 months ago
crates.io: re_web_server

Serves the Rerun web viewer (Wasm and HTML) over HTTP

  • Versions: 8
  • Dependent Packages: 2
  • Dependent Repositories: 0
  • Downloads: 11,155 Total
Rankings
Stargazers count: 4.4%
Forks count: 8.2%
Dependent packages count: 11.4%
Average: 24.9%
Dependent repos count: 29.3%
Downloads: 71.3%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_mcap_ros2

Deserialization of a subset of ROS2 messages.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 231 Total
Rankings
Stargazers count: 1.2%
Forks count: 2.2%
Dependent repos count: 20.5%
Dependent packages count: 27.1%
Average: 29.1%
Downloads: 94.6%
Maintainers (1)
Last synced: 6 months ago
crates.io: afo3c4hnlo78d_publish_test_a

Publish test A

  • Versions: 6
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Downloads: 4,886 Total
Rankings
Stargazers count: 2.6%
Forks count: 5.5%
Average: 29.8%
Dependent repos count: 30.4%
Dependent packages count: 31.7%
Downloads: 78.7%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_dataframe_ui

Rich table widget over DataFusion.

  • Versions: 24
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 64,161 Total
Rankings
Stargazers count: 1.3%
Forks count: 2.4%
Dependent repos count: 22.1%
Dependent packages count: 29.2%
Average: 30.0%
Downloads: 94.8%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_redap_browser

The UI and communication to implement the in-viewer redap server browser.

  • Versions: 25
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 64,888 Total
Rankings
Stargazers count: 1.3%
Forks count: 2.3%
Dependent repos count: 22.3%
Dependent packages count: 29.5%
Average: 30.2%
Downloads: 95.6%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_uri

Parsing and constructing Rerun URIs

  • Versions: 33
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 104,798 Total
Rankings
Stargazers count: 1.3%
Forks count: 2.3%
Dependent repos count: 22.3%
Dependent packages count: 29.5%
Average: 30.2%
Downloads: 95.6%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_build_build_info

build.rs helpers for generating build info

  • Versions: 13
  • Dependent Packages: 6
  • Dependent Repositories: 0
  • Downloads: 16,953 Total
Rankings
Stargazers count: 4.1%
Forks count: 7.9%
Dependent repos count: 29.3%
Average: 30.2%
Dependent packages count: 33.8%
Downloads: 76.0%
Maintainers (1)
Last synced: 6 months ago
crates.io: afo3c4hnlo78d_publish_test_b

Publish test B

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,687 Total
Rankings
Stargazers count: 2.6%
Forks count: 5.5%
Dependent repos count: 30.4%
Dependent packages count: 31.7%
Average: 33.0%
Downloads: 94.7%
Maintainers (1)
Last synced: 6 months ago
crates.io: rerun-cli

Log images, point clouds, etc, and visualize them effortlessly

  • Versions: 140
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 150,960 Total
Rankings
Stargazers count: 3.2%
Forks count: 6.6%
Dependent repos count: 28.6%
Dependent packages count: 33.4%
Average: 33.6%
Downloads: 96.3%
Maintainers (1)
Last synced: 6 months ago
crates.io: rerun_c

Rerun C SDK

  • Versions: 165
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 181,727 Total
Rankings
Stargazers count: 2.9%
Forks count: 6.1%
Dependent repos count: 27.9%
Dependent packages count: 32.4%
Average: 33.7%
Downloads: 99.2%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_global_context

Rerun state that is shared with most top-level crates.

  • Versions: 7
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 8,164 Total
Rankings
Dependent repos count: 20.9%
Dependent packages count: 27.7%
Average: 47.8%
Downloads: 94.7%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_perf_telemetry

In and out of process performance profiling utilities for Rerun & Redap

  • Versions: 13
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,806 Total
Rankings
Dependent repos count: 20.9%
Dependent packages count: 27.7%
Average: 47.8%
Downloads: 94.7%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_span

An integer range that always has a non-negative length

  • Versions: 14
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 13,782 Total
Rankings
Dependent repos count: 21.1%
Dependent packages count: 27.9%
Average: 47.9%
Downloads: 94.7%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_auth

Authentication helpers for Rerun

  • Versions: 17
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 14,025 Total
Rankings
Dependent repos count: 21.4%
Dependent packages count: 28.4%
Average: 48.2%
Downloads: 94.8%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_datafusion

High-level query APIs

  • Versions: 30
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 16,813 Total
Rankings
Dependent repos count: 22.3%
Dependent packages count: 29.5%
Average: 49.1%
Downloads: 95.6%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_sorbet

Rerun arrow metadata definitions

  • Versions: 37
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 229,647 Total
Rankings
Dependent repos count: 23.3%
Dependent packages count: 30.9%
Average: 49.8%
Downloads: 95.3%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_byte_size

Calculate the heap-allocated size of values at runtime.

  • Versions: 44
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 233,780 Total
Rankings
Dependent repos count: 23.3%
Dependent packages count: 30.9%
Average: 49.8%
Downloads: 95.3%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_arrow_util

Helpers for working with arrow.

  • Versions: 42
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 231,029 Total
Rankings
Dependent repos count: 23.3%
Dependent packages count: 30.9%
Average: 49.8%
Downloads: 95.3%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_grpc_server

gRCP server for the Rerun Data Platform gRPC protocol

  • Versions: 36
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 103,575 Total
Rankings
Dependent repos count: 23.3%
Dependent packages count: 30.9%
Average: 49.8%
Downloads: 95.3%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_capabilities

Capability tokens for the Rerun code base.

  • Versions: 48
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 225,953 Total
Rankings
Dependent repos count: 24.0%
Dependent packages count: 31.9%
Average: 50.4%
Downloads: 95.4%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_view_tensor

A view dedicated to visualizing tensors with arbitrary dimensionality.

  • Versions: 33
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 186,504 Total
Rankings
Dependent repos count: 24.0%
Dependent packages count: 31.9%
Average: 50.4%
Downloads: 95.4%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_view_text_document

A simple view that shows a single text box.

  • Versions: 33
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 186,506 Total
Rankings
Dependent repos count: 24.0%
Dependent packages count: 31.9%
Average: 50.4%
Downloads: 95.4%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_view_map

A view that shows a map.

  • Versions: 33
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 185,137 Total
Rankings
Dependent repos count: 24.0%
Dependent packages count: 31.9%
Average: 50.4%
Downloads: 95.4%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_view_graph

A view that shows a graph (node-link diagram).

  • Versions: 32
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 186,207 Total
Rankings
Dependent repos count: 24.0%
Dependent packages count: 31.9%
Average: 50.4%
Downloads: 95.4%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_view_text_log

A view that shows text entries in a table and scrolls with the active time.

  • Versions: 33
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 186,317 Total
Rankings
Dependent repos count: 24.0%
Dependent packages count: 31.9%
Average: 50.4%
Downloads: 95.4%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_view_spatial

Views that show entities in a 2D or 3D spatial relationship.

  • Versions: 32
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 186,285 Total
Rankings
Dependent repos count: 24.0%
Dependent packages count: 31.9%
Average: 50.4%
Downloads: 95.4%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_view_time_series

A view that shows plots over Rerun timelines.

  • Versions: 33
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 186,328 Total
Rankings
Dependent repos count: 24.0%
Dependent packages count: 31.9%
Average: 50.4%
Downloads: 95.4%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_view_bar_chart

A view that shows a single bar chart.

  • Versions: 32
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 186,263 Total
Rankings
Dependent repos count: 24.0%
Dependent packages count: 31.9%
Average: 50.4%
Downloads: 95.4%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_view_dataframe

A view that shows the data contained in entities in a table.

  • Versions: 32
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 186,211 Total
Rankings
Dependent repos count: 24.0%
Dependent packages count: 31.9%
Average: 50.4%
Downloads: 95.4%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_protos_builder

Code generation for Rerun's Protobuf and gRPC definitions.

  • Versions: 53
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 21,806 Total
Rankings
Dependent repos count: 24.5%
Dependent packages count: 32.5%
Average: 51.0%
Downloads: 95.9%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_protos

Rerun remote gRPC/protobuf API types

  • Versions: 55
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 272,181 Total
Rankings
Dependent repos count: 24.6%
Dependent packages count: 32.6%
Average: 51.1%
Downloads: 96.1%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_grpc_client

gRPC client for the Rerun Data Platform gRPC protocol

  • Versions: 53
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 117,598 Total
Rankings
Dependent repos count: 24.6%
Dependent packages count: 32.6%
Average: 51.1%
Downloads: 96.1%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_space_view_map

A space view that shows a map.

  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 15,383 Total
Rankings
Dependent repos count: 24.6%
Dependent packages count: 32.6%
Average: 51.1%
Downloads: 96.1%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_chunk_store_ui

Display the contents of chunk stores.

  • Versions: 58
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 224,382 Total
Rankings
Dependent repos count: 25.0%
Dependent packages count: 33.2%
Average: 51.5%
Downloads: 96.1%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_video

Rerun video processing utilities.

  • Versions: 75
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 327,698 Total
Rankings
Dependent repos count: 25.0%
Dependent packages count: 33.2%
Average: 51.5%
Downloads: 96.1%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_dataframe

High-level query APIs

  • Versions: 68
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 255,617 Total
Rankings
Dependent repos count: 25.0%
Dependent packages count: 33.2%
Average: 51.5%
Downloads: 96.1%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_component_ui

Provides ui editors for Rerun component data for registration with the Rerun Viewer component ui registry.

  • Versions: 61
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 254,640 Total
Rankings
Dependent repos count: 25.7%
Dependent packages count: 34.1%
Average: 52.2%
Downloads: 96.7%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_format_arrow

Format arrow data.

  • Versions: 109
  • Dependent Packages: 2
  • Dependent Repositories: 0
  • Downloads: 475,992 Total
Rankings
Dependent repos count: 27.7%
Dependent packages count: 32.6%
Average: 52.3%
Downloads: 96.6%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_types_blueprint

The core traits and types that power Rerun's Blueprint sub-system.

  • Versions: 62
  • Dependent Packages: 3
  • Dependent Repositories: 0
  • Downloads: 123,452 Total
Rankings
Dependent repos count: 27.7%
Dependent packages count: 32.6%
Average: 52.3%
Downloads: 96.6%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_data_loader

Handles loading of Rerun data from file using data loader plugins

  • Versions: 102
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Downloads: 353,514 Total
Rankings
Dependent repos count: 27.7%
Dependent packages count: 32.6%
Average: 52.3%
Downloads: 96.6%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_chunk_store

A storage engine for Rerun's Chunks

  • Versions: 81
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 378,598 Total
Rankings
Dependent repos count: 26.0%
Dependent packages count: 34.5%
Average: 52.4%
Downloads: 96.7%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_edit_ui

Provides ui editors for Rerun component data for registration with the Rerun Viewer component ui registry.

  • Versions: 14
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 26,018 Total
Rankings
Dependent repos count: 26.8%
Dependent packages count: 35.5%
Average: 52.9%
Downloads: 96.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_case

Case conversions, the way Rerun likes them

  • Versions: 102
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 456,418 Total
Rankings
Dependent repos count: 27.1%
Dependent packages count: 35.9%
Average: 53.1%
Downloads: 96.3%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_chunk

A chunk of Rerun data, encoded using Arrow. Used for logging, transport, storage and compute.

  • Versions: 94
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 450,750 Total
Rankings
Dependent repos count: 27.1%
Dependent packages count: 35.9%
Average: 53.1%
Downloads: 96.4%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_blueprint_tree

The UI for the blueprint tree in the left panel.

  • Versions: 74
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 280,752 Total
Rankings
Dependent repos count: 27.3%
Dependent packages count: 36.3%
Average: 53.4%
Downloads: 96.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_viewport_blueprint

The data model describing the layout of the viewport.

  • Versions: 75
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 286,031 Total
Rankings
Dependent repos count: 27.3%
Dependent packages count: 36.3%
Average: 53.4%
Downloads: 96.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_selection_panel

The UI for the selection panel.

  • Versions: 75
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 281,097 Total
Rankings
Dependent repos count: 27.3%
Dependent packages count: 36.3%
Average: 53.4%
Downloads: 96.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_context_menu

Support crate for context menu and actions.

  • Versions: 75
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 281,862 Total
Rankings
Dependent repos count: 27.3%
Dependent packages count: 36.3%
Average: 53.4%
Downloads: 96.5%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_space_view_dataframe

A space view that shows the data contained in entities in a table.

  • Versions: 85
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Downloads: 165,973 Total
Rankings
Dependent repos count: 30.2%
Dependent packages count: 35.6%
Average: 54.2%
Downloads: 96.8%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_query_cache

Caching datastructures for re_query

  • Versions: 37
  • Dependent Packages: 6
  • Dependent Repositories: 0
  • Downloads: 276,918 Total
Rankings
Dependent repos count: 30.2%
Dependent packages count: 35.6%
Average: 54.2%
Downloads: 96.8%
Maintainers (1)
Last synced: 6 months ago
crates.io: re_entity_db

In-memory storage of Rerun entities

  • Versions: 138
  • Dependent Packages: 14
  • Dependent Repositories: 0
  • Downloads: 704,445 Total
Rankings
Dependent repos count: 30.2%
Dependent packages count: 35.6%
Average: 54.2%
Downloads: 96.8%
Maintainers (1)
Last synced: 6 months ago

Dependencies

.github/workflows/labels.yml actions
  • mheap/github-action-required-labels v3 composite
Cargo.lock cargo
  • 583 dependencies
examples/python/multiprocessing/requirements.txt pypi
  • rerun-sdk *
examples/python/multithreading/requirements.txt pypi
  • numpy *
  • rerun-sdk *
examples/python/objectron/requirements.txt pypi
  • betterproto *
  • numpy *
  • requests *
  • rerun-sdk *
  • scipy *
examples/python/plots/requirements.txt pypi
  • numpy *
  • rerun-sdk *
examples/python/raw_mesh/requirements.txt pypi
  • numpy *
  • requests ==2.28.1
  • rerun-sdk *
  • trimesh ==3.15.2
rerun_py/pyproject.toml pypi
  • deprecated *
  • numpy >=1.23
  • pyarrow ==10.0.1
rerun_py/requirements-build.txt pypi
  • maturin >=0.14,<0.15
  • pytest *
  • semver >=2.13,<2.14
  • wheel >=0.38,<0.39
rerun_py/requirements-doc.txt pypi
  • mike *
  • mkdocs *
  • mkdocs-gen-files *
  • mkdocs-literate-nav *
  • mkdocs-material *
  • mkdocs-material-extensions *
  • mkdocs-redirects *
  • mkdocstrings *
  • mkdocstrings-python *
rerun_py/requirements-lint.txt pypi
  • 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
examples/python/car/requirements.txt pypi
  • numpy *
  • rerun-sdk *
examples/python/clock/requirements.txt pypi
  • numpy *
  • rerun-sdk *
examples/python/dna/requirements.txt pypi
  • numpy *
  • rerun-sdk *
  • scipy *
examples/python/minimal/requirements.txt pypi
  • numpy *
  • rerun-sdk *
crates/re_analytics/Cargo.toml cargo
  • 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
crates/re_arrow_store/Cargo.toml cargo
  • 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
crates/re_data_store/Cargo.toml cargo
  • 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
crates/re_int_histogram/Cargo.toml cargo
  • criterion 0.4 development
  • insta 1.23 development
  • mimalloc 0.1 development
  • smallvec 1.10
  • static_assertions 1.1
crates/re_log_types/Cargo.toml cargo
  • 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
crates/re_query/Cargo.toml cargo
  • 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
crates/re_renderer/Cargo.toml cargo
  • 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
crates/re_sdk/Cargo.toml cargo
  • 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
crates/re_tuid/Cargo.toml cargo
  • criterion 0.4 development
  • document-features 0.2
  • once_cell 1.16
  • serde 1
crates/re_ui/Cargo.toml cargo
  • image 0.24
  • parking_lot 0.12
  • serde 1
  • serde_json 1
  • strum 0.24
  • strum_macros 0.24
  • sublime_fuzzy 0.7
ci_docker/Dockerfile docker
  • ubuntu 20.04 build
scripts/ci/requirements-crates.txt pypi
  • 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
.github/actions/deploy-vercel/action.yml actions
  • index.mjs node18 javascript
.github/actions/setup-rust/action.yml actions
  • Swatinem/rust-cache v2 composite
  • google-github-actions/auth v1 composite
  • rerun-io/sccache-action v0.7.0 composite
.github/workflows/checkboxes.yml actions
  • actions/checkout v4 composite
  • actions/setup-python v2 composite
.github/workflows/clear_cache.yml actions
  • actions/github-script v6 composite
.github/workflows/documentation.yaml actions
  • actions/checkout v4 composite
  • jprochazk/linkinator-action main composite
  • streetsidesoftware/cspell-action v2 composite
.github/workflows/manual_adhoc_web.yml actions
.github/workflows/manual_build_release.yml actions
.github/workflows/manual_build_wheels_for_pr.yml actions
.github/workflows/manual_dispatch.yml actions
.github/workflows/manual_release.yml actions
  • 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
.github/workflows/manual_run_bench.yml actions
.github/workflows/on_pull_request.yml actions
.github/workflows/on_push_main.yml actions
  • 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
.github/workflows/release.yml actions
  • actions/checkout v4 composite
  • actions/setup-python v2 composite
  • peter-evans/create-pull-request v5.0.2 composite
.github/workflows/reusable_bench.yml actions
  • ./.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/workflows/reusable_build_and_publish_web.yml actions
  • ./.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
.github/workflows/reusable_build_and_publish_wheels.yml actions
  • PyO3/maturin-action v1 composite
  • actions/checkout v4 composite
  • google-github-actions/auth v1 composite
  • google-github-actions/setup-gcloud v1 composite
.github/workflows/reusable_build_and_test_wheels.yml actions
  • ./.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/workflows/reusable_build_and_upload_rerun_c.yml actions
  • ./.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/workflows/reusable_build_web.yml actions
  • ./.github/actions/setup-rust * composite
  • actions-rs/cargo v1 composite
  • actions/checkout v4 composite
  • actions/upload-artifact v3 composite
.github/workflows/reusable_build_web_demo.yml actions
  • actions/checkout v4 composite
  • actions/download-artifact v3 composite
  • actions/upload-artifact v3 composite
.github/workflows/reusable_checks.yml actions
  • ./.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/workflows/reusable_deploy_docs.yml actions
  • ./.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
.github/workflows/reusable_pip_index.yml actions
  • actions/checkout v4 composite
  • actions/setup-python v2 composite
  • google-github-actions/auth v1 composite
  • google-github-actions/setup-gcloud v1 composite
.github/workflows/reusable_pr_summary.yml actions
  • actions/checkout v4 composite
  • actions/setup-python v2 composite
  • google-github-actions/auth v1 composite
  • google-github-actions/setup-gcloud v1 composite
.github/workflows/reusable_release_crates.yml actions
  • actions-rs/cargo v1 composite
  • actions/checkout v4 composite
.github/workflows/reusable_run_notebook.yml actions
  • actions/checkout v4 composite
  • actions/download-artifact v3 composite
  • google-github-actions/auth v1 composite
  • google-github-actions/upload-cloud-storage v1 composite
.github/workflows/reusable_track_size.yml actions
  • 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
.github/workflows/reusable_update_pr_body.yml actions
  • actions/checkout v4 composite
  • actions/setup-python v2 composite
.github/workflows/reusable_upload_web.yml actions
  • actions/checkout v4 composite
  • actions/download-artifact v3 composite
  • google-github-actions/auth v1 composite
  • google-github-actions/upload-cloud-storage v1 composite
.github/workflows/reusable_upload_web_demo.yml actions
  • actions/checkout v4 composite
  • actions/download-artifact v3 composite
  • google-github-actions/auth v1 composite
  • google-github-actions/upload-cloud-storage v1 composite
.github/workflows/reusable_upload_wheels.yml actions
  • actions/checkout v4 composite
  • actions/download-artifact v3 composite
  • google-github-actions/auth v1 composite
  • google-github-actions/upload-cloud-storage v1 composite
Cargo.toml cargo
crates/re_build_info/Cargo.toml cargo
crates/re_build_tools/Cargo.toml cargo
crates/re_build_web_viewer/Cargo.toml cargo
crates/re_crash_handler/Cargo.toml cargo
crates/re_data_source/Cargo.toml cargo
crates/re_data_ui/Cargo.toml cargo
crates/re_error/Cargo.toml cargo
crates/re_format/Cargo.toml cargo
crates/re_log/Cargo.toml cargo
crates/re_log_encoding/Cargo.toml cargo
  • criterion 0.5 development
  • serde_test 1 development
  • lz4_flex 0.10
  • rmp-serde 1
crates/re_memory/Cargo.toml cargo
crates/re_sdk_comms/Cargo.toml cargo
crates/re_smart_channel/Cargo.toml cargo
crates/re_space_view/Cargo.toml cargo
crates/re_space_view_bar_chart/Cargo.toml cargo
crates/re_space_view_spatial/Cargo.toml cargo
crates/re_space_view_tensor/Cargo.toml cargo
crates/re_space_view_text_document/Cargo.toml cargo
crates/re_space_view_text_log/Cargo.toml cargo
crates/re_space_view_time_series/Cargo.toml cargo
crates/re_string_interner/Cargo.toml cargo
crates/re_tensor_ops/Cargo.toml cargo
crates/re_time_panel/Cargo.toml cargo
crates/re_tracing/Cargo.toml cargo
crates/re_types/Cargo.toml cargo
  • 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
crates/re_types_builder/Cargo.toml cargo
crates/re_viewer/Cargo.toml cargo
crates/re_viewer_context/Cargo.toml cargo
crates/re_viewport/Cargo.toml cargo
crates/re_web_viewer_server/Cargo.toml cargo
crates/re_ws_comms/Cargo.toml cargo
crates/rerun/Cargo.toml cargo
crates/rerun-cli/Cargo.toml cargo
crates/rerun_c/Cargo.toml cargo
docs/code-examples/Cargo.toml cargo
examples/rust/clock/Cargo.toml cargo
examples/rust/custom_space_view/Cargo.toml cargo
examples/rust/dna/Cargo.toml cargo
examples/rust/extend_viewer_ui/Cargo.toml cargo
examples/rust/minimal/Cargo.toml cargo