diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 47b0e1e..db3a668 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -48,7 +48,7 @@ jobs: run: cargo test ${{ matrix.build-args }} --all - name: Clippy - run: cargo clippy -- -A unused-attributes -D warnings + run: cargo clippy -- -D warnings integration: name: Integration diff --git a/src/config.rs b/src/config.rs index 851e0f6..b844dda 100644 --- a/src/config.rs +++ b/src/config.rs @@ -17,7 +17,7 @@ pub const ELECTRS_VERSION: &str = env!("CARGO_PKG_VERSION"); const DEFAULT_SERVER_ADDRESS: [u8; 4] = [127, 0, 0, 1]; // by default, serve on IPv4 localhost mod internal { - #![allow(unused_imports)] + #![allow(unused_attributes, unused_imports)] include!(concat!(env!("OUT_DIR"), "/configure_me_config.rs")); }