-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
38 lines (35 loc) · 1.45 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[workspace]
members = [
"provers/celestia-prover/prover",
"provers/celestia-prover/programs/sp1/mock-update-client",
"provers/celestia-prover/programs/sp1/mock-membership",
"provers/evm-prover"
]
resolver = "2"
[workspace.package]
repository = "https://github.com/celestiaorg/celestia-zkevm-ibc-demo"
version = "0.1.0"
edition = "2021"
license = "MIT"
[workspace.dependencies]
tonic = { version = "0.12", features = ["transport", "codegen", "prost"] }
tonic-build = "0.12"
tonic-reflection = "0.12"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
prost = "0.13"
ibc-proto = { version = "0.51", default-features = false }
reqwest = { version = "0.12", features = ["json"] }
alloy = { version = "0.9.2", features = ["providers"] }
alloy-primitives = "0.9.2"
alloy-provider = { version = "0.9.2", features = ["default"] }
alloy-sol-types = { version = "0.8.0", default-features = false }
tendermint-rpc = "0.40"
ibc-client-tendermint-types = "0.56"
ibc-core-commitment-types = "0.56"
sp1-sdk = { version = "4.0.1", default-features = false }
tracing = { version = "0.1", default-features = false }
ibc-eureka-solidity-types = { git = "https://github.com/cosmos/solidity-ibc-eureka.git", branch = "main", features = [
"rpc",
] }
sp1-ics07-tendermint-prover = { git = "https://github.com/cosmos/solidity-ibc-eureka.git", branch = "main"}
sp1-ics07-tendermint-utils = { git = "https://github.com/cosmos/solidity-ibc-eureka.git", branch = "main"}