This repository was archived by the owner on Jan 22, 2025. It is now read-only.
File tree 3 files changed +3
-5
lines changed 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -52,8 +52,6 @@ echo --- build environment
52
52
wasm-pack --version
53
53
)
54
54
55
- exit 0
56
-
57
55
export RUST_BACKTRACE=1
58
56
export RUSTFLAGS=" -D warnings -A incomplete_features"
59
57
77
75
78
76
_ ci/order-crates-for-publishing.py
79
77
80
- nightly_clippy_allows=()
78
+ nightly_clippy_allows=(--allow=clippy::redundant_clone --allow clippy::match-result-ok )
81
79
82
80
# run nightly clippy for `sdk/` as there's a moderate amount of nightly-only code there
83
81
_ scripts/cargo-for-all-lock-files.sh -- " +${rust_nightly} " clippy --workspace --all-targets --features dummy-for-ci-check -- \
Original file line number Diff line number Diff line change @@ -12580,7 +12580,7 @@ pub mod tests {
12580
12580
let expected_account_hash = if cfg!(debug_assertions) {
12581
12581
Hash::from_str("6qtBXmRrLdTdAV5bK6bZZJxQA4fPSUBxzQGq2BQSat25").unwrap()
12582
12582
} else {
12583
- Hash::from_str("6qtBXmRrLdTdAV5bK6bZZJxQA4fPSUBxzQGq2BQSat25").unwrap( )
12583
+ Hash::from_str("6qtBXmRrLdTdAV5bK6bZZJxQA4fPSUBxzQGq2BQSat25").expect("suppress cippy" )
12584
12584
};
12585
12585
12586
12586
assert_eq!(
Original file line number Diff line number Diff line change 1
- /// ! Instructions provided by the ZkToken Proof program
1
+ //! Instructions provided by the ZkToken Proof program
2
2
pub use crate :: instruction:: * ;
3
3
use {
4
4
bytemuck:: bytes_of,
You can’t perform that action at this time.
0 commit comments