diff options
author | Florian Klink <flokli@flokli.de> | 2024-04-30T09·17+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-05-06T15·24+0000 |
commit | aaf258f61ee6113caaebe83a410f4d274a173b93 (patch) | |
tree | 5231318260354a53e1df7728ca3b3229aad509f2 /tvix/glue | |
parent | bc92f4188ec436cabd54171cc4a5b03323dfba9e (diff) |
feat(tvix/store): use async nar reader for ingest_nar r/8080
Rename read_nar to ingest_nar, and have it use the async nar reader version, and the ingest_entries machinery. This means we can now drop all code dealing with manually assembling castore nodes. Update our consumer, NixHTTPPathInfoService to use the new API. As we now accept an AsyncRead, we don't need to do any blocking here anymore, and can use the same async-compression crate as in the fetching logic (and support some more compression formats out of the box). Change-Id: I8646d20bd8603f8da47b5c84bc9e4ac236eb7f1a Reviewed-on: https://cl.tvl.fyi/c/depot/+/11580 Tested-by: BuildkiteCI Autosubmit: flokli <flokli@flokli.de> Reviewed-by: Connor Brewster <cbrewster@hey.com>
Diffstat (limited to 'tvix/glue')
-rw-r--r-- | tvix/glue/Cargo.toml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tvix/glue/Cargo.toml b/tvix/glue/Cargo.toml index f929d720a0e7..6d7f2e3f02c3 100644 --- a/tvix/glue/Cargo.toml +++ b/tvix/glue/Cargo.toml @@ -4,6 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] +async-compression = { version = "0.4.9", features = ["tokio", "gzip", "bzip2", "xz"]} async-recursion = "1.0.5" bstr = "1.6.0" bytes = "1.4.0" @@ -30,10 +31,6 @@ md-5 = "0.10.6" url = "2.4.0" walkdir = "2.4.0" -[dependencies.async-compression] -version = "0.4.6" -features = ["tokio", "gzip", "bzip2", "xz"] - [dependencies.wu-manber] git = "https://github.com/tvlfyi/wu-manber.git" |