(iron) Update to iron 0.6

* Allow both iron 0.5 and 0.6
* Allow both urlencoded 0.5 and 0.6
This commit is contained in:
Matrix 2018-02-05 15:40:54 +08:00 committed by theduke
parent 10538eca8b
commit d9677b38df
2 changed files with 12 additions and 7 deletions

View file

@ -0,0 +1,5 @@
## [0.2.0] - 2018-02-08
### Changed
* Changed dependency of iron

View file

@ -1,6 +1,6 @@
[package]
name = "juniper_iron"
version = "0.1.1"
version = "0.2.0"
authors = [
"Magnus Hallin <mhallin@fastmail.com>",
"Christoph Herzog <chris@theduke.at>",
@ -15,14 +15,14 @@ serde = { version = "1.0.2" }
serde_json = { version = "1.0.2" }
juniper = { version = "0.9.2", path = "../juniper" }
urlencoded = { version = "0.5.0" }
iron = "0.5.1"
urlencoded = { version = ">= 0.5, < 0.7" }
iron = ">= 0.5, < 0.7"
[dev-dependencies]
iron-test = "^0.5.0"
router = "^0.5.0"
mount = "^0.3.0"
logger = "^0.3.0"
iron-test = "0.6"
router = "0.6"
mount = "0.4"
logger = "0.4"
[dev-dependencies.juniper]
version = "0.9.2"