-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
29 lines (26 loc) · 1.14 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
[workspace]
members = [
"provers/celestia-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"
reqwest = { version = "0.12", features = ["json"] }
alloy = { version = "0.8.1", features = ["providers"] }
alloy-primitives = "0.8"
alloy-provider = { version = "0.8.1", features = ["default"] }
tendermint-rpc = "0.40"
ibc-client-tendermint-types = "0.56"
ibc-core-commitment-types = "0.56"
ibc-eureka-solidity-types = { git = "https://github.com/cosmos/solidity-ibc-eureka.git", branch = "main", subdir = "packages/solidity", features = ["rpc"]}
sp1-ics07-tendermint-prover = { git = "https://github.com/cosmos/solidity-ibc-eureka.git", branch = "main", subdir = "packages/prover"}
sp1-ics07-tendermint-utils = { git = "https://github.com/cosmos/solidity-ibc-eureka.git", branch = "main", subdir = "packages/utils"}