aboutsummaryrefslogtreecommitdiff
path: root/crates/proc_macro_srv
Commit message (Collapse)AuthorAgeFilesLines
* Use non-deprecated memmap2 cratekjeremy2021-02-022-2/+2
| | | | | | | `cargo audit` complains that `memmap` is unmaintained so switch to RazrFalcon's maintained version. Removes yet another edge on winapi
* cargo updatekjeremy2021-01-181-4/+4
| | | | Update test_serialize_proc_macro for new serde version
* Swap assert_eq_text\!(expected, actual)yugo-horie2021-01-162-5/+5
|
* Unfreeze cargo_metadatakjeremy2021-01-111-1/+1
| | | | It now pulls in a newer version of semver-parser.
* Fixed typos in code commentsVincent Esche2021-01-092-2/+2
|
* Replace last usages of difference with dissimilarJesse Bakker2021-01-061-1/+0
|
* Fix spacing in proc-macro tokens to_stringEdwin Cheng2020-12-311-7/+36
|
* Pass crate environment to proc macrosJonas Schievink2020-12-271-2/+18
|
* Merge #7047bors[bot]2020-12-274-8/+44
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7047: Add force_show_panics flag for proc-macro bridge r=jonas-schievink a=edwin0cheng https://github.com/rust-lang/rust/pull/75082 and https://github.com/rust-lang/rust/pull/76292 added a new flag in `proc_macro::Bridge` such that the ABI was changed. These ABI changing are the reason of some weird panics which caused #6880 and maybe related to the panic mentioned in #6820. These changes are landed on rust stable 1.48 so I think it is okay to apply it now. fixes #6880 r @jonas-schievink Co-authored-by: Edwin Cheng <[email protected]>
| * Add force_show_panics flagEdwin Cheng2020-12-274-8/+44
| |
* | Disable unaligned feature for the object crateLaurențiu Nicola2020-12-231-1/+1
|/
* Replace goblin crate with objectLaurențiu Nicola2020-12-132-39/+28
|
* Avoid nesting Subtrees when parsing TokenStreamJonas Schievink2020-12-091-2/+1
|
* Better error when a proc macro panicsJonas Schievink2020-12-081-1/+2
|
* Pin cargo_metadatakjeremy2020-11-251-1/+1
|
* Deny unreachable-pubAleksey Kladov2020-11-021-0/+1
| | | | | | | | It's very useful when `pub` is equivalent to "this is crate's public API", let's enforce this! Ideally, we should enforce it for local `cargo test`, and only during CI, but that needs https://github.com/rust-lang/cargo/issues/5034.
* Update cratesJeremy Kolb2020-10-201-1/+1
| | | | This brings in a number of new dependencies though.
* Add track_env_var to the proc macro serverLaurențiu Nicola2020-10-085-0/+39
|
* Add description for crates that will be publishedPavan Kumar Sunkara2020-08-241-0/+1
|
* Add version to deps in cargo.tomlPavan Kumar Sunkara2020-08-241-4/+4
|
* Add a proc_macro_test crateJonas Schievink2020-08-143-3/+18
| | | | This exports all 3 kinds of proc macros and is useful for testing
* Rename ra_proc_macro -> proc_macro_apiAleksey Kladov2020-08-135-6/+6
|
* Rename ra_mbe -> mbeAleksey Kladov2020-08-132-2/+2
|
* MinorAleksey Kladov2020-08-131-3/+5
|
* Rename ra_proc_macro_srv -> proc_macro_srvPavan Kumar Sunkara2020-08-1318-0/+4305