aboutsummaryrefslogtreecommitdiff
path: root/crates/proc_macro_srv/src/dylib.rs
Commit message (Collapse)AuthorAgeFilesLines
* Refactor TokenStream to hold Vec<TokenTree> instead of tt::SubtreeKevin Mehall2021-03-061-3/+3
| | | | | | | | | | `TokenStream` assumes that its subtree's delimeter is `None`, and this should be encoded in the type system instead of having a delimiter field that is mostly ignored. `tt::Subtree` is just `pub delimiter: Option<Delimiter>, pub token_trees: Vec<TokenTree>`, so a Subtree that is statically guaranteed not to have a delimiter is just Vec<TokenTree>.
* libloading 0.7kjeremy2021-02-111-2/+2
| | | | See https://docs.rs/libloading/0.7.0/libloading/changelog/r0_7_0/index.html
* Use non-deprecated memmap2 cratekjeremy2021-02-021-1/+1
| | | | | | | `cargo audit` complains that `memmap` is unmaintained so switch to RazrFalcon's maintained version. Removes yet another edge on winapi
* Add force_show_panics flagEdwin Cheng2020-12-271-0/+3
|
* Replace goblin crate with objectLaurențiu Nicola2020-12-131-38/+27
|
* Rename ra_proc_macro -> proc_macro_apiAleksey Kladov2020-08-131-1/+1
|
* Rename ra_proc_macro_srv -> proc_macro_srvPavan Kumar Sunkara2020-08-131-0/+224