File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed
Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -41,17 +41,17 @@ miri_optimizations = []
4141mutex = []
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 "
4646fxhash = " 0.2.1"
47- libc = " 0.2.72 "
47+ libc = " 0.2.79 "
4848zstd = { 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 "
5151parking_lot = " 0.11.0"
5252color-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 ]
5757fs2 = " 0.4.3"
@@ -61,7 +61,7 @@ rand = "0.7.3"
6161rand_chacha = " 0.2.2"
6262rand_distr = " 0.3.0"
6363quickcheck = " 0.9.2"
64- log = " 0.4.8 "
64+ log = " 0.4.11 "
6565env_logger = " 0.8.1"
6666zerocopy = " 0.3.0"
6767byteorder = " 1.3.4"
Original file line number Diff line number Diff line change 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,
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
You can’t perform that action at this time.
0 commit comments