Skip to content

Commit

Permalink
Relax minimal patch version for serde_derive
Browse files Browse the repository at this point in the history
A conflict with cbindgen exists which prevent restson to be used
with it. `cbindgen` [pins `serde_derive` to `1.0.58`](https://github.com/eqrion/cbindgen/blob/44e9b2112a06e46ddda6073e237d3a56df39c3e2/Cargo.toml#L24-L27)
due to mozilla/cbindgen#203
so depending on `^1.0.80` prevents using both crates together.

This patch simply relaxes the dependency on `serde_derive` to `1.0`,
which is API compatible with both `1.0.80` and `1.0.58`.

Closes spietika#14
  • Loading branch information
nbigaouette-eai authored Jan 13, 2019
1 parent 1007041 commit 1b83aa0
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 @@ -16,7 +16,7 @@ futures = "^0.1.25"
tokio-core = "^0.1.17"
serde = "^1.0.80"
serde_json = "^1.0.33"
serde_derive = "^1.0.80"
serde_derive = "1.0"
url = "^1.7.2"
log = "^0.4.6"
base64 = "^0.10.0"

0 comments on commit 1b83aa0

Please sign in to comment.