Skip to content

Commit

Permalink
chore(version-up): v0.5.3
Browse files Browse the repository at this point in the history
Versions were chosen to allow for maximum flexibility
for users of this library, even if this breaks at compile time
thanks to incompatibilities in dependencies.

Rather that, than cargo claiming that it cannot use
a certain version.

Of course, once everything is >= 1.0, one can change to
standard semver compatiblity.
  • Loading branch information
Byron committed Dec 24, 2015
1 parent 850ddbf commit 59bbde3
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "yup-oauth2"
version = "0.5.2"
version = "0.5.3"
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 @@ -11,27 +11,27 @@ license = "MIT"
build = "src/build.rs"

[dependencies]
chrono = "*"
time = "*"
log = "*"
mime = "*"
url = "*"
hyper = ">= 0.5.0"
itertools = "*"
serde = ">= 0.5.0"
serde_json = "*"
serde_macros = { version = "*", optional = true }
chrono = ">= 0.2"
time = ">= 0.1"
log = ">= 0.3"
mime = ">= 0.1"
url = ">= 0.5"
hyper = ">= 0.7.0"
itertools = ">= 0.4"
serde = ">= 0.6"
serde_json = ">= 0.6"
serde_macros = { version = ">= 0.6", optional = true }

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

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

[dev-dependencies]
getopts = "*"
open = "*"
yup-hyper-mock = ">= 1.0.0"
getopts = "0.2"
open = "1.1"
yup-hyper-mock = "1.3.0"

0 comments on commit 59bbde3

Please sign in to comment.