bkchr / proc-macro-crate

`$crate` in procedural macros.
Apache License 2.0
65 stars 17 forks source link

Fix incorrect dependency #5

Closed aticu closed 4 years ago

aticu commented 4 years ago

toml version 0.5.0 incorrectly specified serde version 1.0.0 as one of its dependencies, even though it does not work with with serde version 1.0.0. This was fixed and released in version 0.5.2.

This commit updates the toml dependency to version 0.5.2. Now proc-macro-crate builds fine with the cargo flag -Z minimal-versions.

bkchr commented 4 years ago

Ty