We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0c746a commit 48ca33aCopy full SHA for 48ca33a
ipld/amt/fuzz/Cargo.toml
@@ -16,6 +16,9 @@ ahash = "0.6"
16
[dependencies.fvm_ipld_amt]
17
path = ".."
18
19
+[dependencies.fvm_shared]
20
+path = "../../../shared"
21
+
22
# Prevent this from interfering with workspaces
23
[workspace]
24
members = ["."]
ipld/amt/fuzz/fuzz_targets/amt_fuzz.rs
@@ -6,15 +6,16 @@ use arbitrary::Arbitrary;
6
use fvm_ipld_amt::{Amt, MAX_INDEX};
7
use libfuzzer_sys::fuzz_target;
8
9
10
#[derive(Debug, Arbitrary)]
11
struct Operation {
- idx: usize,
12
+ idx: u64,
13
method: Method,
14
}
15
enum Method {
- Insert(usize),
+ Insert(u64),
Remove,
Get,
0 commit comments