Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 20-Jan-2022 | - | ||||
src/ | H | 20-Jan-2022 | - | 298 | 224 | |
.cargo-checksum.json | H A D | 03-May-2022 | 89 | 1 | 1 | |
Cargo.toml | H A D | 20-Jan-2022 | 973 | 31 | 27 | |
README.md | H A D | 20-Jan-2022 | 455 | 12 | 8 |
README.md
1# RLS-data 2 3Data structures used by the RLS and the Rust compiler. 4 5These are used by the save-analysis functionality in the compiler 6(`rustc -Zsave-analysis`). In that use, the compiler translates info in its 7internal data structures to these data structures then serialises them as JSON. 8Clients (such as the RLS) can use this crate when deserialising. 9 10The data can also be passed directly from compiler to client if the compiler is 11used as a library. 12