5 releases

new 0.23.0-rc.3 Apr 17, 2025
0.23.0-alpha.2 Apr 10, 2025
0.23.0-alpha.1 Apr 7, 2025

#18 in #multimodal

Download history 161/week @ 2025-04-03 279/week @ 2025-04-10

440 downloads per month
Used in 3 crates (via re_redap_browser)

MIT/Apache

360KB
7.5K SLoC

Rerun uses its own URL scheme to access information across the network.

The following schemes are supported: rerun+http://, rerun+https:// and rerun://, which is an alias for rerun+https://. These schemes are then converted on the fly to either http:// or https://. Rerun uses gRPC-based protocols under the hood, which means that the paths (/catalog, /recording/12345, …) are mapped to gRPC services and methods on the fly.

In most cases locally running instances of Rerun will not have proper TLS configuration. In these cases, the `rerun+http://` scheme can be used. Naturally, this means that the underlying connection will not be encrypted.

The following are examples of valid Rerun URIs:

for uri in [
    // Access the dataplatform catalog.
    "rerun://rerun.io",
    "rerun://rerun.io:51234/catalog",
    "rerun+http://localhost:51234/catalog",
    "rerun+https://localhost:51234/catalog",

    // Proxy to send messages to another viewer.
    "rerun+http://localhost:51234/proxy",

    // Links to recording on the dataplatform (optionally with timestamp).
    "rerun://127.0.0.1:1234/dataset/1830B33B45B963E7774455beb91701ae/data?partition_id=pid&time_range=timeline@1.23s..72s",
] {
    assert!(uri.parse::<re_uri::RedapUri>().is_ok());
}


re_uri

Part of the rerun family of crates.

Latest version Documentation MIT Apache

Parsing and constructing Rerun URIs (rerun://, rerun+http://, …).

Dependencies

~26–36MB
~549K SLoC