mirror of
https://github.com/romanz/electrs.git
synced 2026-08-13 12:32:52 +02:00
Disable warning on configure_me_config.rs
This commit is contained in:
parent
9d95b13cd9
commit
b562e8c255
2 changed files with 2 additions and 2 deletions
2
.github/workflows/rust.yml
vendored
2
.github/workflows/rust.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue