Skip to content

Commit 2e43bd5

Browse files
committed
Allow warnings for CI
I want to include the minimum amount of changes to minimize the diff with 0.7.17 this is a backport after all, 0.7 is not officially maintained anymore
1 parent 08a06f5 commit 2e43bd5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![deny(warnings)]
1+
//#![deny(warnings)]
22

33
use std::{env, error::Error};
44

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
#![deny(missing_docs)]
7272
#![deny(rust_2018_compatibility)]
7373
#![deny(rust_2018_idioms)]
74-
#![deny(warnings)]
74+
// #![deny(warnings)]
7575

7676
pub use binary_heap::BinaryHeap;
7777
pub use deque::Deque;

tests/tsan.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![deny(rust_2018_compatibility)]
22
#![deny(rust_2018_idioms)]
3-
#![deny(warnings)]
3+
//#![deny(warnings)]
44

55
use std::thread;
66

0 commit comments

Comments
 (0)