Skip to content

Commit 4fa10b6

Browse files
committed
Bump deps
1 parent 27a9333 commit 4fa10b6

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,17 @@ miri_optimizations = []
4141
mutex = []
4242

4343
[dependencies]
44-
crossbeam-epoch = "0.8.2"
45-
crossbeam-utils = "0.7.2"
44+
crossbeam-epoch = "0.9.0"
45+
crossbeam-utils = "0.8.0"
4646
fxhash = "0.2.1"
47-
libc = "0.2.72"
47+
libc = "0.2.79"
4848
zstd = { version = "0.5.3", optional = true }
49-
crc32fast = "1.2.0"
50-
log = "0.4.8"
49+
crc32fast = "1.2.1"
50+
log = "0.4.11"
5151
parking_lot = "0.11.0"
5252
color-backtrace = { version = "0.4.2", optional = true }
53-
rio = { version = "0.9.3", optional = true }
54-
backtrace = { version = "0.3.50", optional = true }
53+
rio = { version = "0.9.4", optional = true }
54+
backtrace = { version = "0.3.53", optional = true }
5555

5656
[target.'cfg(any(target_os = "linux", target_os = "macos", target_os="windows"))'.dependencies]
5757
fs2 = "0.4.3"
@@ -61,7 +61,7 @@ rand = "0.7.3"
6161
rand_chacha = "0.2.2"
6262
rand_distr = "0.3.0"
6363
quickcheck = "0.9.2"
64-
log = "0.4.8"
64+
log = "0.4.11"
6565
env_logger = "0.8.1"
6666
zerocopy = "0.3.0"
6767
byteorder = "1.3.4"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@
129129
// clippy::missing_const_for_fn,
130130
// clippy::missing_docs_in_private_items,
131131
clippy::module_name_repetitions,
132-
clippy::multiple_crate_versions,
133132
clippy::multiple_inherent_impl,
134133
clippy::mut_mut,
135134
clippy::needless_borrow,
@@ -155,6 +154,7 @@
155154
// clippy::wildcard_enum_match_arm,
156155
clippy::wrong_pub_self_convention,
157156
)]
157+
#![warn(clippy::multiple_crate_versions)]
158158
#![allow(clippy::mem_replace_with_default)] // Not using std::mem::take() due to MSRV of 1.37 (intro'd in 1.40)
159159
#![allow(clippy::match_like_matches_macro)] // Not using std::matches! due to MSRV of 1.37 (intro'd in 1.42)
160160

0 commit comments

Comments
 (0)