added basic send test, updated zcash-local-net dep branch. #250
ci.yml
on: push
Bitrot check
8m 50s
Clippy (MSRV)
7m 36s
Clippy (beta)
14s
Code coverage
4m 16s
Intra-doc links
9m 2s
Rustfmt
12s
Matrix: build-latest
Matrix: test
Annotations
11 errors
Rustfmt
Process completed with exit code 1.
|
Clippy (beta)
The process '/home/runner/.cargo/bin/cargo' failed with exit code 1
|
Code coverage
Process completed with exit code 1.
|
large size difference between variants:
zaino-testutils/src/lib.rs#L89
error: large size difference between variants
--> zaino-testutils/src/lib.rs:89:1
|
89 | / pub enum LocalNet {
90 | | /// Zcash-local-net backed by Zcashd.
91 | | / Zcashd(
92 | | | zcash_local_net::LocalNet<
93 | | | zcash_local_net::indexer::Empty,
94 | | | zcash_local_net::validator::Zcashd,
95 | | | >,
96 | | | ),
| | |_____- the largest variant contains at least 208 bytes
97 | | /// Zcash-local-net backed by Zebrad.
98 | | / Zebrad(
99 | | | zcash_local_net::LocalNet<
100 | | | zcash_local_net::indexer::Empty,
101 | | | zcash_local_net::validator::Zebrad,
102 | | | >,
103 | | | ),
| | |_____- the second-largest variant contains at least 0 bytes
104 | | }
| |___^ the entire enum is at least 0 bytes
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#large_enum_variant
= note: `-D clippy::large-enum-variant` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::large_enum_variant)]`
help: consider boxing the large fields to reduce the total size of the enum
|
92 ~ Box<zcash_local_net::LocalNet<
93 + zcash_local_net::indexer::Empty,
94 + zcash_local_net::validator::Zcashd,
95 ~ >>,
|
|
large size difference between variants:
zaino-testutils/src/lib.rs#L89
error: large size difference between variants
--> zaino-testutils/src/lib.rs:89:1
|
89 | / pub enum LocalNet {
90 | | /// Zcash-local-net backed by Zcashd.
91 | | / Zcashd(
92 | | | zcash_local_net::LocalNet<
93 | | | zcash_local_net::indexer::Empty,
94 | | | zcash_local_net::validator::Zcashd,
95 | | | >,
96 | | | ),
| | |_____- the largest variant contains at least 208 bytes
97 | | /// Zcash-local-net backed by Zebrad.
98 | | / Zebrad(
99 | | | zcash_local_net::LocalNet<
100 | | | zcash_local_net::indexer::Empty,
101 | | | zcash_local_net::validator::Zebrad,
102 | | | >,
103 | | | ),
| | |_____- the second-largest variant contains at least 0 bytes
104 | | }
| |___^ the entire enum is at least 0 bytes
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#large_enum_variant
= note: `-D clippy::large-enum-variant` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::large_enum_variant)]`
help: consider boxing the large fields to reduce the total size of the enum
|
92 ~ Box<zcash_local_net::LocalNet<
93 + zcash_local_net::indexer::Empty,
94 + zcash_local_net::validator::Zcashd,
95 ~ >>,
|
|
Clippy (MSRV)
Clippy had exited with the 101 exit code
|
Test on macOS-latest
Process completed with exit code 101.
|
Test on windows-latest
The job was canceled because "macOS-latest" failed.
|
Test on windows-latest
The operation was canceled.
|
Test on ubuntu-latest
The job was canceled because "macOS-latest" failed.
|
Test on ubuntu-latest
The operation was canceled.
|