···89[dependencies]
10bincode = { version = "2.0.1", features = ["serde"] }
011futures = "0.3.31"
12futures-core = "0.3.31"
13ipld-core = { version = "0.4.2", features = ["serde"] }
···89[dependencies]
10bincode = { version = "2.0.1", features = ["serde"] }
11+fjall = "3.0.0"
12futures = "0.3.31"
13futures-core = "0.3.31"
14ipld-core = { version = "0.4.2", features = ["serde"] }
-5
examples/disk-read-file/main.rs
···8283 log::info!("arrived! ({:?}) joining rx...", t0.elapsed());
8485- // clean up the database. would be nice to do this in drop so it happens
86- // automatically, but some blocking work happens, so that's not allowed in
87- // async rust. 🤷♀️
88- join.await?.reset_store().await?;
89-90 log::info!("done. n={n} zeros={zeros}");
9192 Ok(())