Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
276 changes: 273 additions & 3 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ members = [
"indexer-api",
"indexer-standalone",
"indexer-tests",
"spo-indexer",
"spo-api",
]

[workspace.package]
Expand All @@ -29,6 +31,8 @@ async-stream = { version = "0.3" }
axum = { version = "0.8" }
bech32 = { version = "0.11" }
bip32 = { version = "0.5" }
blake2 = { version = "0.10.6" }
blockfrost = { version = "1.1.0" }
byte-unit = { version = "5.1" }
byte-unit-serde = { version = "0.1" }
chacha20poly1305 = { version = "0.10" }
Expand All @@ -45,6 +49,7 @@ figment = { version = "0.10" }
fs_extra = { version = "1.3" }
futures = { version = "0.3" }
graphql_client = { version = "0.14" }
hex = { version = "0.4.3" }
humantime-serde = { version = "1.1" }
indoc = { version = "2.0" }
itertools = { version = "0.14" }
Expand All @@ -61,12 +66,15 @@ midnight-storage_v6 = { git = "https://github.com/midnightntwrk/midnigh
midnight-transient-crypto_v6 = { git = "https://github.com/midnightntwrk/midnight-ledger", package = "midnight-transient-crypto", tag = "ledger-6.1.0-alpha.5" }
midnight-zswap_v6 = { git = "https://github.com/midnightntwrk/midnight-ledger", package = "midnight-zswap", tag = "ledger-6.1.0-alpha.5" }
nix = { version = "0.30" }
once_cell = { version = "1.19" }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is once_cell really required? I thought most of the functionality was merged into std now.
(E.g. rust-lang/rust#105587 )

opentelemetry = { version = "0.31" }
opentelemetry-otlp = { version = "0.31" }
opentelemetry_sdk = { version = "0.31" }
parity-scale-codec = { version = "3.7" }
parking_lot = { version = "0.12" }
paste = { version = "1.0" }
reqwest = { version = "0.12", default-features = false }
regex = { version = "1.11" }
secrecy = { version = "0.10" }
serde = { version = "1.0" }
serde_json = { version = "1.0" }
Expand Down
Loading