Skip to content
Draft
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
75 changes: 74 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ miden-crypto = { version = "0.19.7" }

# External dependencies
anyhow = { version = "1.0" }
async-stream = { version = "0.3" }
assert_matches = { version = "1.5" }
async-trait = { version = "0.1" }
build-rs = { version = "0.3" }
Expand All @@ -100,9 +101,11 @@ pretty_assertions = { version = "1.4" }
# prost and protox are from different authors and are _not_ released in
# lockstep, nor are they adhering to semver semantics. We keep this
# to avoid future breakage.
indicatif = { version = "0.17" }
prost = { default-features = false, version = "=0.14.3" }
protox = { version = "=0.9.1" }
rand = { version = "0.9" }
rayon = { version = "1" }
rand_chacha = { default-features = false, version = "0.9" }
reqwest = { version = "0.13" }
rstest = { version = "0.26" }
Expand All @@ -121,7 +124,7 @@ tonic-reflection = { version = "0.14" }
tower = { version = "0.5" }
tower-http = { features = ["cors", "trace"], version = "0.6" }
tracing = { version = "0.1" }
tracing-subscriber = { features = ["env-filter", "fmt", "json"], version = "0.3" }
tracing-subscriber = { features = ["ansi", "env-filter", "fmt", "json"], version = "0.3" }
url = { features = ["serde"], version = "2.5" }

# Lints are set to warn for development, which are promoted to errors in CI.
Expand Down
10 changes: 10 additions & 0 deletions crates/store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ deadpool-diesel = { features = ["sqlite"], version = "0.6" }
diesel = { features = ["numeric", "sqlite"], version = "2.3" }
diesel_migrations = { features = ["sqlite"], version = "2.3" }
fs-err = { workspace = true }
async-stream = { workspace = true }
futures = { workspace = true }
indicatif = { workspace = true }
hex = { version = "0.4" }
indexmap = { workspace = true }
libsqlite3-sys = { workspace = true }
Expand All @@ -39,6 +41,7 @@ miden-protocol = { features = ["std", "testing"], workspace = true }
pretty_assertions = { workspace = true }
rand = { workspace = true }
rand_chacha = { workspace = true }
rayon = { workspace = true }
serde = { features = ["derive"], version = "1" }
thiserror = { workspace = true }
tokio = { features = ["fs", "rt-multi-thread"], workspace = true }
Expand Down Expand Up @@ -66,9 +69,12 @@ miden-node-utils = { features = ["testing", "tracing-forest"], workspace =
miden-protocol = { default-features = true, features = ["testing"], workspace = true }
miden-standards = { features = ["testing"], workspace = true }
rand = { workspace = true }

rayon = { workspace = true }
regex = { version = "1.11" }
tempfile = { workspace = true }
termtree = "1.0"
tracing-subscriber = { workspace = true }

[features]
default = ["rocksdb"]
Expand All @@ -79,6 +85,10 @@ harness = false
name = "account_tree"
required-features = ["rocksdb"]

[[bench]]
harness = false
name = "state_load"

[package.metadata.cargo-machete]
# This is an indirect dependency for which we need to enable optimisations/features
# via feature flags. Because we don't use it directly in code, machete
Expand Down
Loading
Loading