mirror of https://github.com/rwf2/Rocket.git
Update dependencies in core to latest versions.
This updates: * rmp-serde to 1 * pretty_assertions to 1 * parking_lot to 0.12 * tokio-util to 0.7
This commit is contained in:
parent
0ba5aac53e
commit
6345d2b888
|
@ -27,6 +27,6 @@ glob = "0.3"
|
|||
[dev-dependencies]
|
||||
rocket = { version = "0.5.0-rc.1", path = "../lib", features = ["json", "msgpack"] }
|
||||
time = { version = "0.3", features = ["macros"] }
|
||||
pretty_assertions = "0.7"
|
||||
pretty_assertions = "1"
|
||||
version_check = "0.9"
|
||||
trybuild = "1.0"
|
||||
|
|
|
@ -30,7 +30,7 @@ uuid = ["uuid_", "rocket_http/uuid"]
|
|||
[dependencies]
|
||||
# Serialization dependencies.
|
||||
serde_json = { version = "1.0.26", optional = true }
|
||||
rmp-serde = { version = "0.15.0", optional = true }
|
||||
rmp-serde = { version = "1", optional = true }
|
||||
uuid_ = { package = "uuid", version = "0.8", optional = true, features = ["serde"] }
|
||||
|
||||
# Non-optional, core dependencies from here on out.
|
||||
|
@ -44,7 +44,7 @@ binascii = "0.1"
|
|||
atty = "0.2"
|
||||
ref-cast = "1.0"
|
||||
atomic = "0.5"
|
||||
parking_lot = "0.11"
|
||||
parking_lot = "0.12"
|
||||
ubyte = {version = "0.10", features = ["serde"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
figment = { version = "0.10.6", features = ["toml", "env"] }
|
||||
|
@ -73,7 +73,7 @@ version = "1.6.1"
|
|||
features = ["fs", "io-std", "io-util", "rt-multi-thread", "sync", "signal", "macros"]
|
||||
|
||||
[dependencies.tokio-util]
|
||||
version = "0.6"
|
||||
version = "0.7"
|
||||
default-features = false
|
||||
features = ["io"]
|
||||
|
||||
|
@ -86,4 +86,4 @@ version_check = "0.9.1"
|
|||
|
||||
[dev-dependencies]
|
||||
figment = { version = "0.10", features = ["test"] }
|
||||
pretty_assertions = "0.7"
|
||||
pretty_assertions = "1"
|
||||
|
|
|
@ -7,4 +7,4 @@ publish = false
|
|||
|
||||
[dependencies]
|
||||
rocket = { path = "../../core/lib" }
|
||||
parking_lot = "0.11"
|
||||
parking_lot = "0.12"
|
||||
|
|
|
@ -11,7 +11,7 @@ diesel = { version = "1.3", features = ["sqlite", "r2d2"] }
|
|||
diesel_migrations = "1.3"
|
||||
|
||||
[dev-dependencies]
|
||||
parking_lot = "0.11"
|
||||
parking_lot = "0.12"
|
||||
rand = "0.8"
|
||||
|
||||
[dependencies.rocket_sync_db_pools]
|
||||
|
|
Loading…
Reference in New Issue