Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: make prove commit work with maat #684

Merged
merged 8 commits into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from 6 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
37 changes: 37 additions & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ itertools = "0.13.0"
jsonrpsee = { version = "0.24.7" }
libp2p = { version = "0.54", default-features = false }
libp2p-core = "0.42.0"
libp2p-identity = { version = "0.2.10", default-features = false }
th7nder marked this conversation as resolved.
Show resolved Hide resolved
libp2p-swarm = "0.45.1"
log = { version = "0.4.21", default-features = false }
multihash-codetable = { version = "0.1.1", default-features = false }
Expand Down
10 changes: 10 additions & 0 deletions maat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,33 @@ target-debug = []
target-release = []

[dependencies]
bls12_381 = { workspace = true }
bs58.workspace = true
cid.workspace = true
codec = { workspace = true }
futures.workspace = true
hex = { workspace = true }
libp2p = { workspace = true, features = ["ecdsa", "identify"] }
libp2p-identity = { workspace = true, features = ["ecdsa", "rand"] }
th7nder marked this conversation as resolved.
Show resolved Hide resolved
polka-storage-proofs = { workspace = true, features = ["std", "substrate"] }
polka-storage-provider-common = { workspace = true }
primitives = { workspace = true, features = ["serde"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["std"] }
storagext = { workspace = true }
subxt = { workspace = true, features = ["substrate-compat"] }
thiserror.workspace = true
tokio = { workspace = true, features = ["full"] }
tokio-util = { workspace = true, features = ["rt"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }

zombienet-configuration.workspace = true
zombienet-sdk.workspace = true
zombienet-support.workspace = true

[dev-dependencies]
tempfile = { workspace = true }

[lints]
workspace = true
316 changes: 130 additions & 186 deletions maat/tests/real_world.rs

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions storage-provider/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,20 @@ storagext = { workspace = true, features = ["clap"] }

chrono = { workspace = true, features = ["serde"] }
cid = { workspace = true, features = ["serde", "std"] }
codec = { workspace = true }
filecoin-hashers.workspace = true
fr32.workspace = true
hex = { workspace = true, features = ["std"] }
jsonrpsee = { workspace = true, features = ["http-client", "macros", "server", "ws-client"] }
polka-storage-proofs = { workspace = true, features = ["std", "substrate"] }
serde = { workspace = true }
serde_json = { workspace = true }
storage-proofs-core.workspace = true
subxt = { workspace = true }
thiserror = { workspace = true }

[dev-dependencies]
polka-storage-proofs = { workspace = true, features = ["std"] }
tokio = { workspace = true, features = ["fs"] }
tokio-util = { workspace = true, features = ["rt"] }
tracing = { workspace = true }

[lints]
workspace = true
1 change: 1 addition & 0 deletions storage-provider/common/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@

pub mod commp;
pub mod rpc;
pub mod sector;
Loading
Loading