Skip to content

Commit

Permalink
fix(serde): go back to serde 0.6 (#18)
Browse files Browse the repository at this point in the history
That way, google-apis-rs can compile once again.
If not done, yup-oauth ends up being compiled with
an older serde (the one of google-apis-rs, it seems), even
though its code was generated by a possibly newer serde.

Signed-off-by: Sebastian Thiel <sthiel@thoughtworks.com>
  • Loading branch information
Sebastian Thiel authored and Byron committed Apr 10, 2016
1 parent 9481e5c commit 2aa95c0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "yup-oauth2"
version = "0.5.5"
version = "0.5.6"
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
repository = "https://github.com/Byron/yup-oauth2"
description = "A partial oauth2 implementation, providing the 'device' authorization flow"
Expand All @@ -15,20 +15,20 @@ chrono = ">= 0.2"
log = ">= 0.3"
mime = ">= 0.1"
url = ">= 0.5"
hyper = ">= 0.7.0"
hyper = ">= 0.8.0"
itertools = ">= 0.4"
serde = ">= 0.6"
serde_json = ">= 0.6"
serde_macros = { version = ">= 0.6", optional = true }
serde = "0.6.0"
serde_json = "0.6.0"
serde_macros = { version = "0.6.0", optional = true }

[features]
default = ["with_syntex"]
nightly = ["serde_macros"]
with_syntex = ["serde_codegen", "syntex"]

[build-dependencies]
syntex = { version = ">= 0.2", optional = true }
serde_codegen = { version = ">= 0.6", optional = true }
syntex = { version = "=0.28.0", optional = true }
serde_codegen = { version = "=0.6.13", optional = true }

[dev-dependencies]
getopts = "0.2"
Expand Down
10 changes: 10 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="v0.5.6"></a>
### v0.5.6 (2016-04-10)


#### Bug Fixes

* **serde:** go back to serde 0.6 ([1f2f5b8f](https://github.com/Byron/yup-oauth2/commit/1f2f5b8f892ac280eb33a114b5e415f914454311))



<a name="v0.5.5"></a>
### v0.5.5 (2016-02-07)

Expand Down

0 comments on commit 2aa95c0

Please sign in to comment.