diff options
author | Florian Klink <flokli@flokli.de> | 2022-12-29T21·47+0100 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2022-12-30T13·31+0000 |
commit | 357c4d4836180975b4699877b2344d1b2c88d690 (patch) | |
tree | 544aaef634a702cc02f4adb5c6498855064402a9 /tvix/Cargo.lock | |
parent | 5ba47a2bc39b95fa4ece5d52ce08bfeda130367f (diff) |
feat(tvix/store): add nixbase32 mod r/5550
This implements the nix-specific base32 encoding and decoding, exposing a subset of the API that the data-encoding crate provides. Nix uses a custom alphabet, no padding, and encodes bytes in reverse order. The latter one is the reason we can't just use the data-encoding crate directly. Three odd corner case tests ported over from go-nix failed. We opened b/235 to further investigate. Change-Id: I73fab6ddd67177d882e4c3f2b48761c95853d558 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7683 Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/Cargo.lock')
-rw-r--r-- | tvix/Cargo.lock | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tvix/Cargo.lock b/tvix/Cargo.lock index f2c0e391caf3..a79c6d613517 100644 --- a/tvix/Cargo.lock +++ b/tvix/Cargo.lock @@ -474,6 +474,12 @@ dependencies = [ ] [[package]] +name = "data-encoding" +version = "2.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23d8666cb01533c39dde32bcbab8e227b4ed6679b2c925eba05feabea39508fb" + +[[package]] name = "derivation" version = "0.1.0" dependencies = [ @@ -1786,6 +1792,28 @@ dependencies = [ ] [[package]] +name = "test-case" +version = "2.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21d6cf5a7dffb3f9dceec8e6b8ca528d9bd71d36c9f074defb548ce161f598c0" +dependencies = [ + "test-case-macros", +] + +[[package]] +name = "test-case-macros" +version = "2.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e45b7bf6e19353ddd832745c8fcf77a17a93171df7151187f26623f2b75b5b26" +dependencies = [ + "cfg-if", + "proc-macro-error", + "proc-macro2 1.0.47", + "quote 1.0.21", + "syn 1.0.103", +] + +[[package]] name = "test-generator" version = "0.3.0" source = "git+https://github.com/JamesGuthrie/test-generator.git?rev=82e799979980962aec1aa324ec6e0e4cad781f41#82e799979980962aec1aa324ec6e0e4cad781f41" @@ -2116,9 +2144,11 @@ version = "0.1.0" dependencies = [ "anyhow", "blake3", + "data-encoding", "lazy_static", "prost", "prost-build", + "test-case", "thiserror", "tonic", "tonic-build", |