Bumped crossbeam channel version

This commit is contained in:
Antoine Gersant 2020-12-07 23:33:37 -08:00
parent 0e52047417
commit e40121c4d0
2 changed files with 3 additions and 13 deletions

14
Cargo.lock generated
View file

@ -406,16 +406,6 @@ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
] ]
[[package]]
name = "crossbeam-channel"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87"
dependencies = [
"crossbeam-utils 0.7.2",
"maybe-uninit",
]
[[package]] [[package]]
name = "crossbeam-channel" name = "crossbeam-channel"
version = "0.5.0" version = "0.5.0"
@ -1805,7 +1795,7 @@ dependencies = [
"ape", "ape",
"base64 0.13.0", "base64 0.13.0",
"cookie 0.14.3", "cookie 0.14.3",
"crossbeam-channel 0.4.4", "crossbeam-channel",
"diesel", "diesel",
"diesel_migrations", "diesel_migrations",
"getopts", "getopts",
@ -2097,7 +2087,7 @@ version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a" checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a"
dependencies = [ dependencies = [
"crossbeam-channel 0.5.0", "crossbeam-channel",
"crossbeam-deque 0.8.0", "crossbeam-deque 0.8.0",
"crossbeam-utils 0.8.0", "crossbeam-utils 0.8.0",
"lazy_static", "lazy_static",

View file

@ -13,7 +13,7 @@ service-rocket = ["rocket", "rocket_contrib"]
anyhow = "1.0.35" anyhow = "1.0.35"
ape = "0.3.0" ape = "0.3.0"
base64 = "0.13" base64 = "0.13"
crossbeam-channel = "0.4" crossbeam-channel = "0.5"
diesel_migrations = { version = "1.4", features = ["sqlite"] } diesel_migrations = { version = "1.4", features = ["sqlite"] }
getopts = "0.2.15" getopts = "0.2.15"
id3 = "0.5.1" id3 = "0.5.1"