mirror of
https://github.com/lotabout/skim.git
synced 2026-09-10 07:16:23 -04:00
* feat!: feature-gate listen and image to allow opting out This is breaking since disabling the default features now also disables those. It is NOT breaking for cli users, only for library ones. * fix: add warn on listener transfer failure
10 lines
408 B
Plaintext
Executable file
10 lines
408 B
Plaintext
Executable file
set -xeuo pipefail
|
|
|
|
cargo +nightly fmt --check --all
|
|
cargo clippy --all-targets -- -Dwarnings
|
|
cargo clippy --no-default-features -- -Dwarnings
|
|
cargo clippy --no-default-features --features cli -- -Dwarnings
|
|
cargo clippy --no-default-features --features image -- -Dwarnings
|
|
cargo clippy --no-default-features --features listen -- -Dwarnings
|
|
cargo clippy --no-default-features --features frizbee -- -Dwarnings
|