Skip to content
Merged
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
2 changes: 2 additions & 0 deletions Cargo.lock

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

15 changes: 13 additions & 2 deletions crates/navigator-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,15 @@ chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["v4"] }
# Encode/decode the persisted DM session key (base64-STANDARD, matching navigator-sync's wire).
base64 = "0.22"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
# ENA publishes an md5 for every run file (`grid::ena`). Already in the lock transitively, so a
# direct dependency adds nothing to the graph.
md-5 = "0.10"
# `grid::canonical_sha256_b64` — the digest hash that the submit signature covers. Must give the
# same answer as `du_db::grid::digest::canonical_sha256_b64` on the AppView.
sha2 = "0.10"
# `time`, for the retry delay in `ena` and the heartbeat interval in `grid_job`. Both already
# compiled through feature unification from another crate, which is not a property to depend on.
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
# Holds the auth HTTP client (built by navigator-sync::dev_http_client). Pinned to 0.12
# with rustls to match du-atproto / navigator-sync.
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
Expand All @@ -41,7 +49,10 @@ reqwest = { version = "0.12", default-features = false, features = ["json", "rus
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
# `signal`, so the headless realignment harness can cancel through the job's own token on Ctrl-C
# and let it clean up its scratch. Dev-only: the shipped crate does not need it.
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal"] }
# `net`, so the ENA downloader's resume path can be tested against a real HTTP server rather than
# mocked — Range handling and md5-over-a-resumed-prefix are exactly the things a mock would get
# wrong in the same way the code does. Dev-only, like `signal` above.
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal", "net", "io-util"] }
# Build a synthetic mtDNA FASTA from the bundled rCRS for the import test.
navigator-analysis = { workspace = true }

Expand Down
Loading
Loading