-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (27 loc) · 1.35 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
[package]
authors = ["Penumbra Labs <[email protected]"]
name = "standard-penumbra-explorer"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0"
axum = { version = "0.7.5", features = ["json", "query"] }
clap = { version = "3.2", features = ["derive"] }
decaf377-rdsa = "0.11"
include_dir = { version = "0.7" }
minijinja = { version = "2.0" }
num-bigint = { version = "0.4" }
penumbra-asset = { git = "https://github.com/penumbra-zone/penumbra", branch = "pindexer-tweaks" }
penumbra-keys = { git = "https://github.com/penumbra-zone/penumbra", branch = "pindexer-tweaks" }
penumbra-num = { git = "https://github.com/penumbra-zone/penumbra", branch = "pindexer-tweaks" }
penumbra-proto = { git = "https://github.com/penumbra-zone/penumbra", branch = "pindexer-tweaks" }
penumbra-stake = { git = "https://github.com/penumbra-zone/penumbra", branch = "pindexer-tweaks" }
pindexer = { git = "https://github.com/penumbra-zone/penumbra", branch = "pindexer-tweaks" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = "3.9"
sqlx = { version = "0.7", features = ["bigdecimal", "chrono", "postgres", "runtime-tokio"] }
tokio = { version = "1.38.0", features = ["rt-multi-thread"] }
tower-http = { version = "0.5.0", features = ["trace"] }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }