From 7a09477d648aa55cee096acd9519b3b59e810db9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20Jim=C3=A9nez=20Moreno?= Date: Tue, 11 Sep 2018 11:49:35 +0200 Subject: [PATCH] Add tidy exceptions for crossbeam-* --- Cargo.lock | 2 +- servo-tidy.toml | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 17643a08e57..ee14093c660 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1677,7 +1677,7 @@ dependencies = [ "fnv 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 3.0.2 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/servo-tidy.toml b/servo-tidy.toml index 01a43ffd9c0..2645cf31588 100644 --- a/servo-tidy.toml +++ b/servo-tidy.toml @@ -14,6 +14,7 @@ lint-scripts = [ # which are packages allowed to use the blocked package. [blocked-packages] rand = [ + "crossbeam-channel", "deque", "gaol", "hashglobe", # only uses in tests @@ -39,6 +40,10 @@ num = [ # Ignored packages with duplicated versions packages = [ "bitflags", + "crossbeam-epoch", + "crossbeam-utils", + #TODO: remove ipc-channel when #21325 lands + "ipc-channel", "log", "rand", "winapi",