We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 36f4cdd + 829f49a commit ca1fa3aCopy full SHA for ca1fa3a
.github/workflows/ci.yml
@@ -12,13 +12,12 @@ jobs:
12
test:
13
name: test
14
runs-on: ubuntu-latest
15
-
+ env: {"RUSTFLAGS": "-D warnings"}
16
strategy:
17
matrix:
18
target:
19
- x86_64-unknown-linux-gnu
20
- i686-unknown-linux-musl
21
22
steps:
23
- uses: actions/checkout@v4
24
- uses: dtolnay/rust-toolchain@master
src/lib.rs
@@ -46,9 +46,8 @@
46
//! This crate is guaranteed to compile on latest stable Rust. It *might* compile on older
47
//! versions but that may change in any new patch release.
48
49
-#![deny(missing_docs)]
50
-#![deny(warnings)]
51
#![warn(
+ missing_docs,
52
clippy::use_self,
53
clippy::doc_markdown,
54
clippy::ptr_as_ptr,
0 commit comments