fix(clippy): Silence future-incompat warnings until we upgrade Abscissa (#6024)
* Silence future-incompat warnings until we upgrade Abscissa * Add missing cargo and clippy configs to workflow triggers
This commit is contained in:
parent
c92f7b0150
commit
dd90f79b48
|
@ -1,5 +1,11 @@
|
||||||
# Zebra cargo configuration
|
# Zebra cargo configuration
|
||||||
|
|
||||||
|
# Disabled until we upgrade to abscissa 0.7 or later:
|
||||||
|
# https://github.com/ZcashFoundation/zebra/issues/5502
|
||||||
|
# https://doc.rust-lang.org/cargo/reference/future-incompat-report.html
|
||||||
|
[future-incompat-report]
|
||||||
|
frequency = "never"
|
||||||
|
|
||||||
# Flags that apply to all Zebra crates and configurations
|
# Flags that apply to all Zebra crates and configurations
|
||||||
[target.'cfg(all())']
|
[target.'cfg(all())']
|
||||||
rustflags = [
|
rustflags = [
|
||||||
|
|
|
@ -19,11 +19,14 @@ on:
|
||||||
# production code and test code
|
# production code and test code
|
||||||
- '**/*.rs'
|
- '**/*.rs'
|
||||||
# hard-coded checkpoints
|
# hard-coded checkpoints
|
||||||
# TODO: skip proptest regressions
|
# TODO: skip proptest regressions?
|
||||||
- '**/*.txt'
|
- '**/*.txt'
|
||||||
|
# test data snapshots
|
||||||
|
- '**/*.snap'
|
||||||
# dependencies
|
# dependencies
|
||||||
- '**/Cargo.toml'
|
- '**/Cargo.toml'
|
||||||
- '**/Cargo.lock'
|
- '**/Cargo.lock'
|
||||||
|
- '**/deny.toml'
|
||||||
# configuration files
|
# configuration files
|
||||||
- '.cargo/config.toml'
|
- '.cargo/config.toml'
|
||||||
- '**/clippy.toml'
|
- '**/clippy.toml'
|
||||||
|
@ -41,6 +44,9 @@ on:
|
||||||
- '**/Cargo.toml'
|
- '**/Cargo.toml'
|
||||||
- '**/Cargo.lock'
|
- '**/Cargo.lock'
|
||||||
- '**/deny.toml'
|
- '**/deny.toml'
|
||||||
|
# configuration files
|
||||||
|
- '.cargo/config.toml'
|
||||||
|
- '**/clippy.toml'
|
||||||
# workflow definitions
|
# workflow definitions
|
||||||
- '.github/workflows/continous-integration-os.yml'
|
- '.github/workflows/continous-integration-os.yml'
|
||||||
|
|
||||||
|
|
|
@ -35,6 +35,8 @@ on:
|
||||||
- '**/*.snap'
|
- '**/*.snap'
|
||||||
- '**/Cargo.toml'
|
- '**/Cargo.toml'
|
||||||
- '**/Cargo.lock'
|
- '**/Cargo.lock'
|
||||||
|
- '.cargo/config.toml'
|
||||||
|
- '**/clippy.toml'
|
||||||
- 'codecov.yml'
|
- 'codecov.yml'
|
||||||
- '.github/workflows/coverage.yml'
|
- '.github/workflows/coverage.yml'
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,9 @@ on:
|
||||||
- '**/*.rs'
|
- '**/*.rs'
|
||||||
- '**/Cargo.toml'
|
- '**/Cargo.toml'
|
||||||
- '**/Cargo.lock'
|
- '**/Cargo.lock'
|
||||||
|
# configuration files
|
||||||
|
- '.cargo/config.toml'
|
||||||
|
- '**/clippy.toml'
|
||||||
# workflow definitions
|
# workflow definitions
|
||||||
- '.github/workflows/docs.yml'
|
- '.github/workflows/docs.yml'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue