Skip to content

Commit

Permalink
Fix incorrect dependency
Browse files Browse the repository at this point in the history
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](toml-rs/toml-rs#311) 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`](rust-lang/cargo#5657).
  • Loading branch information
aticu committed Jul 14, 2020
1 parent 8d060cc commit 57a07ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Replacement for crate (macro_rules keyword) in proc-macros
readme = "./README.md"

[dependencies]
toml = "0.5.0"
toml = "0.5.2"

[dev-dependencies]
quote = "1.0.7"
Expand Down

0 comments on commit 57a07ae

Please sign in to comment.