feat(nix-compat): add bench for aterm parsing

Change-Id: Ie9416f0046b6ee0a02096a7712cdba9cc84db4f6
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9733
Reviewed-by: Connor Brewster <cbrewster@hey.com>
Reviewed-by: Gabriel Doriath Döhler <gabriel.doriath.dohler@ens.fr>
Tested-by: BuildkiteCI
Autosubmit: flokli <flokli@flokli.de>
This commit is contained in:
Florian Klink 2023-07-31 17:50:48 +02:00 committed by flokli
parent c3fad811f4
commit 652afd21b3
4 changed files with 43 additions and 1 deletions

View file

@ -1636,7 +1636,7 @@ rec {
"stable" = [ "csv_output" "html_reports" "async_futures" "async_smol" "async_tokio" "async_std" ];
"tokio" = [ "dep:tokio" ];
};
resolvedDefaultFeatures = [ "cargo_bench_support" "default" "plotters" "rayon" ];
resolvedDefaultFeatures = [ "cargo_bench_support" "default" "html_reports" "plotters" "rayon" ];
};
"criterion-plot" = rec {
crateName = "criterion-plot";
@ -4230,6 +4230,11 @@ rec {
}
];
devDependencies = [
{
name = "criterion";
packageId = "criterion";
features = [ "html_reports" ];
}
{
name = "futures";
packageId = "futures";