Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
switch to sync ceramic-car instead of iroh-car
  • Loading branch information
dav1do committed Aug 27, 2024
1 parent 24ed857 commit e506720
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 61 deletions.
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
Expand Up @@ -7,7 +7,7 @@ use ceramic_http_client::{
use chrono::Utc;
use goose::prelude::*;
use ipld_core::ipld;
use iroh_car::{CarHeader, CarWriter};
use ceramic_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

0 comments on commit e506720

Please sign in to comment.