Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
121 changes: 64 additions & 57 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ async-trait = "0.1"
clap = { version = "4", features = ["derive", "env"] }
console-subscriber = "0.2"
ceramic-core = { git = "https://github.com/ceramicnetwork/rust-ceramic.git", branch = "main" }
iroh-car = { git = "https://github.com/ceramicnetwork/rust-ceramic.git", branch = "main" }
ceramic-car = { git = "https://github.com/ceramicnetwork/rust-ceramic.git", branch = "main" }
env_logger = "0.10.0"
expect-patch = { path = "./expect-patch/" }
hex = "0.4.3"
Expand Down
2 changes: 1 addition & 1 deletion runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
anyhow.workspace = true
async-trait.workspace = true
ceramic-core.workspace = true
iroh-car.workspace = true
ceramic-car.workspace = true
ceramic-http-client = { git = "https://github.com/3box/ceramic-http-client-rs.git", branch = "main", default-features = false }
clap.workspace = true
did-method-key = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion runner/src/scenario/ceramic/anchor.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use anyhow::Result;
use ceramic_car::{CarHeader, CarWriter};
use ceramic_core::{Cid, DagCborEncoded};
use ceramic_http_client::{
ceramic_event::{unvalidated, DidDocument, StreamId},
Expand All @@ -7,7 +8,6 @@ use ceramic_http_client::{
use chrono::Utc;
use goose::prelude::*;
use ipld_core::ipld;
use iroh_car::{CarHeader, CarWriter};
use multihash_codetable::{Code, MultihashDigest};

use redis::{aio::MultiplexedConnection, AsyncCommands};
Expand Down
2 changes: 1 addition & 1 deletion runner/src/scenario/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ pub(crate) async fn random_init_event_car(
.with_unique(unique.to_vec())
.with_data(ipld_core::ipld!({"a": 1, "b": 2}))
.build();
let car = res.encode_car().await?;
let car = res.encode_car()?;
Ok(MultiBase32String::from(car))
}

Expand Down