diff options
author | Hajime Fukuda <hajime.fukuda@me.com> | 2018-01-05 20:16:06 +0900 |
---|---|---|
committer | Hajime Fukuda <hajime.fukuda@me.com> | 2018-01-05 20:16:06 +0900 |
commit | dbea8955b7e8ccae35abeb4178d74ba0f038be04 (patch) | |
tree | 64db0cd25be6c29575eb398a38eb50477f54be08 | |
parent | 44713cef07b4a7d6050fe6b040f3d22f89631544 (diff) | |
download | askama-dbea8955b7e8ccae35abeb4178d74ba0f038be04.tar.gz askama-dbea8955b7e8ccae35abeb4178d74ba0f038be04.tar.bz2 askama-dbea8955b7e8ccae35abeb4178d74ba0f038be04.zip |
relax the version specification
Diffstat (limited to '')
-rw-r--r-- | askama/Cargo.toml | 2 | ||||
-rw-r--r-- | testing/Cargo.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/askama/Cargo.toml b/askama/Cargo.toml index 4bc949a..ca63e5c 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -24,7 +24,7 @@ with-rocket = ["rocket", "askama_derive/rocket"] [dependencies] askama_derive = { path = "../askama_derive", version = "0.5.0" } askama_shared = { version = "0.5.0", path = "../askama_shared" } -iron = { version = "0.5", optional = true } +iron = { version = ">= 0.5", optional = true } rocket = { version = "0.3", optional = true } [package.metadata.docs.rs] diff --git a/testing/Cargo.toml b/testing/Cargo.toml index 8badd13..323635a 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -11,7 +11,7 @@ nightly = ["rocket", "rocket_codegen", "askama/with-rocket"] [dependencies] askama = { path = "../askama", version = "*", features = ["with-iron", "serde-json"] } -iron = "0.5" +iron = "0.6" rocket = { version = "0.3", optional = true } rocket_codegen = { version = "0.3", optional = true } serde_json = "1.0" |