Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nrc/rust-dxr
Rust indexing in DXR
https://github.com/nrc/rust-dxr
Last synced: 11 days ago
JSON representation
Rust indexing in DXR
- Host: GitHub
- URL: https://github.com/nrc/rust-dxr
- Owner: nrc
- Created: 2015-01-10T00:25:03.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-10T00:33:16.000Z (almost 10 years ago)
- Last Synced: 2024-10-28T20:47:04.500Z (about 2 months ago)
- Size: 129 KB
- Stars: 8
- Watchers: 4
- Forks: 0
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rust-dxr
[DXR](https://github.com/mozilla/dxr) is a static analysis tool for indexing and
cross-referencing programs. [Rust](https://github.com/rust-lang/rust) is a
programming language. This repository is for tracking the implementation of
Rust indexing in DXR. The current status is that there is no particular
support. Rust programs are syntax highlighted and searchable. There was in the
past a fairly complete implementation, but that is out of date. I (@nick29581)
have been porting that to the new DXR plugin API. See issues for more details.Note that there will not be a lot of code in this repo, it is mainly to have one
place for issue tracking. The code is in two places - in DXR, and in the Rust
compiler. The old version of the DXR stuff can be found
[here](https://github.com/nick29581/dxr/tree/rust2/dxr/plugins/rust) (note that
that is fairly out of date). The compiler stuff can be found (mostly) in
[librustc_trans/save](https://github.com/rust-lang/rust/tree/master/src/librustc_trans/save).