-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (35 loc) · 1.05 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
[package]
name = "chess-rollup"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = { version = "1.0.0", optional = true }
serde = { version = "1.0", features = ["derive"] }
config = "0.13"
dotenv = "0.15"
tracing = "0.1"
serde_json = "1"
sha2 = "0.10.8"
tokio = { version = "1", features = ["full"] }
color-eyre = "0.6"
penumbra-ibc = { git = "https://github.com/penumbra-zone/penumbra.git", tag = "v0.80.7", default-features = false }
astria-core = { git = "https://github.com/astriaorg/astria.git", package = "astria-core", features = [
"server",
"client",
] }
astria-eyre = { git = "https://github.com/astriaorg/astria.git", package = "astria-eyre", features = [
"anyhow",
] }
astria-sequencer-client = { git = "https://github.com/astriaorg/astria.git", package = "astria-sequencer-client", features = [
"http",
] }
bytes = "1.8.0"
prost = "0.13.3"
prost-types = "0.13.3"
pbjson-types = { version = "0.6.0" }
tower = "0.5.1"
tower-http = { version = "0.4", features = ["cors"] }
async-trait = "0.1.83"
tonic = "0.10"
chess = "3.2.0"
warp = "0.3"