mirror of https://github.com/rwf2/Rocket.git
Update dependencies.
* 'memchr' to 2.0 * 'base64' to 0.9 * 'smallvec' to 0.6 * 'lazy_static' to 1.0 Update example dependencies. * 'rand' to 0.4 * 'parking_lot' to 0.5
This commit is contained in:
parent
1b77376162
commit
65baa83fb4
|
@ -6,4 +6,4 @@ workspace = "../../"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rocket = { path = "../../lib" }
|
rocket = { path = "../../lib" }
|
||||||
rocket_codegen = { path = "../../codegen" }
|
rocket_codegen = { path = "../../codegen" }
|
||||||
rand = "0.3"
|
rand = "0.4"
|
||||||
|
|
|
@ -16,8 +16,8 @@ r2d2-diesel = "1.0"
|
||||||
dotenv = "0.10"
|
dotenv = "0.10"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
parking_lot = {version = "0.4", features = ["nightly"]}
|
parking_lot = {version = "0.5", features = ["nightly"]}
|
||||||
rand = "0.3"
|
rand = "0.4"
|
||||||
|
|
||||||
[dependencies.rocket_contrib]
|
[dependencies.rocket_contrib]
|
||||||
path = "../../contrib"
|
path = "../../contrib"
|
||||||
|
|
|
@ -7,7 +7,7 @@ workspace = "../../"
|
||||||
rocket = { path = "../../lib" }
|
rocket = { path = "../../lib" }
|
||||||
rocket_codegen = { path = "../../codegen" }
|
rocket_codegen = { path = "../../codegen" }
|
||||||
uuid = "^0.5"
|
uuid = "^0.5"
|
||||||
lazy_static = "^0.2"
|
lazy_static = "1.0"
|
||||||
|
|
||||||
[dependencies.rocket_contrib]
|
[dependencies.rocket_contrib]
|
||||||
default-features = false
|
default-features = false
|
||||||
|
|
|
@ -25,9 +25,9 @@ toml = "0.4.2"
|
||||||
num_cpus = "1.0"
|
num_cpus = "1.0"
|
||||||
state = "0.3.1"
|
state = "0.3.1"
|
||||||
time = "0.1"
|
time = "0.1"
|
||||||
memchr = "1"
|
memchr = "2"
|
||||||
base64 = "0.7"
|
base64 = "0.9"
|
||||||
smallvec = "0.4"
|
smallvec = "0.6"
|
||||||
pear = "0.0.12"
|
pear = "0.0.12"
|
||||||
pear_codegen = "0.0.12"
|
pear_codegen = "0.0.12"
|
||||||
rustls = { version = "0.11.0", optional = true }
|
rustls = { version = "0.11.0", optional = true }
|
||||||
|
@ -42,7 +42,7 @@ rev = "a15b37a"
|
||||||
features = ["percent-encode", "secure"]
|
features = ["percent-encode", "secure"]
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
lazy_static = "0.2"
|
lazy_static = "1.0"
|
||||||
rocket_codegen = { version = "0.4.0-dev", path = "../codegen" }
|
rocket_codegen = { version = "0.4.0-dev", path = "../codegen" }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
|
|
Loading…
Reference in New Issue