diff options
author | Florian Klink <flokli@flokli.de> | 2024-04-08T14·59+0300 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2024-04-13T10·09+0000 |
commit | eeca2d92e236f092b4b26512c40362a791a6b307 (patch) | |
tree | 5066ef9f5d1048e418e446d929d008dc5a98655d /tvix/nix-compat/Cargo.toml | |
parent | 82cf89ee6e22ec206140aa6b64b7347bdb44d130 (diff) |
feat(tvix/nix-compat): add BytesReader r/7894
This adds AsyncRead counterpart for read_bytes. Change-Id: I751da9944984c7a523abee305f8f8a050e705f04 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11385 Tested-by: BuildkiteCI Reviewed-by: raitobezarius <tvl@lahfa.xyz> Reviewed-by: Brian Olsen <me@griff.name> Autosubmit: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix/nix-compat/Cargo.toml')
-rw-r--r-- | tvix/nix-compat/Cargo.toml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tvix/nix-compat/Cargo.toml b/tvix/nix-compat/Cargo.toml index 6fc55d5c016e..887977dbf4c2 100644 --- a/tvix/nix-compat/Cargo.toml +++ b/tvix/nix-compat/Cargo.toml @@ -34,13 +34,14 @@ optional = true version = "0.2.13" [dev-dependencies] +criterion = { version = "0.5", features = ["html_reports"] } futures = { version = "0.3.30", default-features = false, features = ["executor"] } +hex-literal = "0.4.1" lazy_static = "1.4.0" +pretty_assertions = "1.4.0" +rstest = "0.19.0" serde_json = "1.0" test-case = "3.3.1" -criterion = { version = "0.5", features = ["html_reports"] } -hex-literal = "0.4.1" -pretty_assertions = "1.4.0" tokio-test = "0.4.3" zstd = "^0.13.0" |