diff options
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | servo-tidy.toml | 5 |
2 files changed, 6 insertions, 1 deletions
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", |