-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
82 lines (74 loc) · 4.3 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[package]
name = "penumbra-reindexer"
authors = ["Penumbra Labs <[email protected]"]
description = "A reindexing tool for Penumbra ABCI event data"
homepage = "https://penumbra.zone"
repository = "https://github.com/penumbra-zone/reindexer"
version = "0.2.0"
edition = "2021"
license = "MIT OR Apache-2.0"
[features]
network-integration = []
expensive-tests = []
download-archives = []
[dependencies]
anyhow = "1"
async-trait = "0.1.81"
clap = { version = "4", features = ["derive"] }
directories = "5.0.1"
hex = "0.4.3"
ibc-types = "0.12.0"
penumbra-proto = { git = "https://github.com/penumbra-zone/penumbra", features = ["tendermint"], tag = "v0.80.6" }
serde_json = "1.0.125"
sqlx = { version = "0.8.0", features = ["runtime-tokio", "sqlite", "postgres"] }
tendermint-proto = { version = "0.40.1", default-features = false }
tendermint_v0o34 = { package = "tendermint", version = "0.34.0", default-features = false }
tendermint_v0o40 = { package = "tendermint", version = "0.40.1", default-features = false }
tokio = { version = "1.39.3", features = ["rt"] }
toml = "0.8.19"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
# Namespaced Penumbra versions, so migration modules can run the correct logic for different parts of
# historical chain state. See docs at https://github.com/penumbra-zone/penumbra/blob/main/COMPATIBILITY.md
# v0.79 dependencies; APP_VERSION 7
cnidarium-v0o79 = { package = "cnidarium", git = "https://github.com/penumbra-zone/penumbra", tag = "v0.79.5" }
penumbra-app-v0o79 = { package = "penumbra-app", git = "https://github.com/penumbra-zone/penumbra", tag = "v0.79.5" }
penumbra-ibc-v0o79 = { package = "penumbra-ibc", git = "https://github.com/penumbra-zone/penumbra", tag = "v0.79.5" }
# v0.80 dependencies; APP_VERSION 8
cnidarium-v0o80 = { package = "cnidarium", git = "https://github.com/penumbra-zone/penumbra", tag = "v0.80.11" }
penumbra-app-v0o80 = { package = "penumbra-app", git = "https://github.com/penumbra-zone/penumbra", tag = "v0.80.11" }
penumbra-governance-v0o80 = { package = "penumbra-governance", git = "https://github.com/penumbra-zone/penumbra", tag = "v0.80.11" }
penumbra-ibc-v0o80 = { package = "penumbra-ibc", git = "https://github.com/penumbra-zone/penumbra", tag = "v0.80.11" }
penumbra-sct-v0o80 = { package = "penumbra-sct", git = "https://github.com/penumbra-zone/penumbra", tag = "v0.80.11" }
penumbra-transaction-v0o80 = { package = "penumbra-transaction", git = "https://github.com/penumbra-zone/penumbra", tag = "v0.80.11" }
# v0.81 dependencies; APP_VERSION 9
cnidarium-v0o81 = { package = "cnidarium", git = "https://github.com/penumbra-zone/penumbra", tag = "v0.81.3" }
penumbra-app-v0o81 = { package = "penumbra-app", git = "https://github.com/penumbra-zone/penumbra", tag = "v0.81.3" }
penumbra-governance-v0o81 = { package = "penumbra-governance", git = "https://github.com/penumbra-zone/penumbra", tag = "v0.81.3" }
penumbra-ibc-v0o81 = { package = "penumbra-ibc", git = "https://github.com/penumbra-zone/penumbra", tag = "v0.81.3" }
penumbra-sct-v0o81 = { package = "penumbra-sct", git = "https://github.com/penumbra-zone/penumbra", tag = "v0.81.3" }
penumbra-transaction-v0o81 = { package = "penumbra-transaction", git = "https://github.com/penumbra-zone/penumbra", tag = "v0.81.3" }
# v1.x dependencies; also APP_VERSION 9
cnidarium-v1 = { package = "cnidarium", version = "0.83.0" }
penumbra-sdk-app-v1 = { package = "penumbra-sdk-app", version = "1.1.0" }
penumbra-sdk-governance-v1 = { package = "penumbra-sdk-governance", version = "1.1.0" }
penumbra-sdk-ibc-v1 = { package = "penumbra-sdk-ibc", version = "1.1.0" }
penumbra-sdk-sct-v1 = { package = "penumbra-sdk-sct", version = "1.1.0" }
penumbra-sdk-transaction-v1 = { package = "penumbra-sdk-transaction", version = "1.1.0" }
sha2 = { version = "0.10.8", default-features = false }
digest = { version = "0.10.7", default-features = false }
prost = "0.13"
# In debug builds, nonetheless compile dependencies in release mode, for performance.
#
# The penumbra deps in particular are quit slow in debug mode, but this lets us iterate
# on the code in this crate more rapidly.
[profile.dev.package."*"]
opt-level = 3
[dev-dependencies]
assert_cmd = "2.0.16"
escargot = "0.5.13"
flate2 = "1.0.35"
reqwest = { version = "0.12.12", features = ["json", "stream"] }
tar = "0.4.43"
tokio-stream = "0.1.17"
url = "2.5.4"