-
Notifications
You must be signed in to change notification settings - Fork 366
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add individual README.md:s for each crate
- Loading branch information
Showing
8 changed files
with
45 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Library for communication between server and viewer | ||
WebSocket communication library (encoding, decoding, client, server) between server and viewer. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
In-memory storage of log data, indexed for fast fast queries. Used by `re_viewer`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
The different types that make up the rerun log format. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Yet another string interning library. | ||
|
||
The main thing that makes this library different is that | ||
`InternedString` stores the hash of the string, which makes | ||
using it in lookups is really fast, especially when using `nohash_hasher::IntMap`. | ||
|
||
The hash is assumed to be perfect, which means this library accepts the risk of hash collisions! | ||
|
||
The interned strings are never freed, so don't intern too many things. | ||
|
||
|
||
## TODO | ||
This is a utility library and should probably be moved to own repository and be made open soruce.. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
The Rerun viewer. | ||
|
||
This is the main crate with all the GUI. | ||
|
||
This is both a library and a binary. Can be compiled both natively for desktop, and as WASM for web. | ||
|
||
Talks to the server over WebSockets (using `re_comms`). | ||
|
||
`cargo run --release -p re_viewer -- --help` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Serves the rerun web viewer (`re_viewer` as WASM and HTML) over HTTP. |