Disable warning on configure_me_config.rs

This commit is contained in:
Roman Zeyde 2025-12-28 10:37:50 +01:00
parent 9d95b13cd9
commit b562e8c255
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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"));
}