feat(tvix/nix-compat): add nar::writer::async

Change-Id: Ib962f889836659fd278beec461ee329b00e64ea5
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9615
Autosubmit: edef <edef@edef.eu>
Reviewed-by: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
This commit is contained in:
edef 2023-10-09 21:06:02 +00:00 committed by clbot
parent f38290cfb0
commit 8b35d97b4b
5 changed files with 264 additions and 2 deletions

View file

@ -2550,7 +2550,7 @@ rec {
"unstable" = [ "futures-core/unstable" "futures-task/unstable" ];
"write-all-vectored" = [ "io" ];
};
resolvedDefaultFeatures = [ "alloc" "async-await" "async-await-macro" "channel" "futures-channel" "futures-io" "futures-macro" "futures-sink" "io" "memchr" "sink" "slab" "std" ];
resolvedDefaultFeatures = [ "alloc" "async-await" "async-await-macro" "channel" "default" "futures-channel" "futures-io" "futures-macro" "futures-sink" "io" "memchr" "sink" "slab" "std" ];
};
"fxhash" = rec {
crateName = "fxhash";
@ -4128,6 +4128,12 @@ rec {
name = "data-encoding";
packageId = "data-encoding";
}
{
name = "futures-util";
packageId = "futures-util";
optional = true;
features = [ "io" ];
}
{
name = "serde";
packageId = "serde";
@ -4147,6 +4153,12 @@ rec {
}
];
devDependencies = [
{
name = "futures";
packageId = "futures";
usesDefaultFeatures = false;
features = [ "executor" ];
}
{
name = "serde_json";
packageId = "serde_json";
@ -4160,7 +4172,11 @@ rec {
packageId = "test-generator";
}
];
features = {
"async" = [ "futures-util" ];
"futures-util" = [ "dep:futures-util" ];
};
resolvedDefaultFeatures = [ "async" "futures-util" ];
};
"nom8" = rec {
crateName = "nom8";