mirror of https://github.com/tikv/client-rust.git
fix for new toolchain
Signed-off-by: Ping Yu <yuping@pingcap.com>
This commit is contained in:
parent
9ba978dfcf
commit
1f99574264
4
Makefile
4
Makefile
|
@ -21,9 +21,7 @@ generate:
|
||||||
check: generate
|
check: generate
|
||||||
cargo check --all --all-targets --features "${ALL_FEATURES}"
|
cargo check --all --all-targets --features "${ALL_FEATURES}"
|
||||||
cargo fmt -- --check
|
cargo fmt -- --check
|
||||||
cargo clippy --all-targets --features "${ALL_FEATURES}" -- \
|
cargo clippy --all-targets --features "${ALL_FEATURES}" -- -D clippy::all
|
||||||
-D clippy::all \
|
|
||||||
-A clippy::doc_lazy_continuation
|
|
||||||
|
|
||||||
unit-test: generate
|
unit-test: generate
|
||||||
cargo nextest run --all --no-default-features
|
cargo nextest run --all --no-default-features
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
#![allow(clippy::large_enum_variant)]
|
#![allow(clippy::large_enum_variant)]
|
||||||
#![allow(clippy::enum_variant_names)]
|
#![allow(clippy::enum_variant_names)]
|
||||||
|
#![allow(clippy::doc_lazy_continuation)]
|
||||||
|
|
||||||
pub use protos::*;
|
pub use protos::*;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue