Skip to content

Commit 343fe58

Browse files
committed
Remove #[deny(warnings)] but enforce on CI
1 parent 45a5293 commit 343fe58

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
language: rust
22

3+
env:
4+
global:
5+
- RUSTFLAGS="-D warnings"
6+
37
matrix:
48
include:
59
# MSRV

panic/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@
6464
//! When this feature is disabled `dcc::write` is implemented using FFI calls into an external
6565
//! assembly file and compiling this crate works on stable and beta.
6666
67-
6867
#![deny(missing_docs)]
6968
#![deny(warnings)]
7069
#![no_std]

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@
7474
7575
#![cfg_attr(feature = "inline-asm", feature(llvm_asm))]
7676
#![deny(missing_docs)]
77-
#![deny(warnings)]
7877
#![no_std]
7978

8079
use core::fmt;

0 commit comments

Comments
 (0)