tvl-depot/tvix/nix-compat/default.nix
Florian Klink 36b296609b refactor(tvix/nix-compat): reorganize wire and bytes
Move everything bytes-related into its own module, and re-export
both bytes and primitive in a flat space from wire/mod.rs.

Expose this if a `wire` feature flag is set. We only have `async` stuff
in here.

Change-Id: Ia4ce4791f13a5759901cc9d6ce6bd6bbcca587c7
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11389
Autosubmit: flokli <flokli@flokli.de>
Reviewed-by: raitobezarius <tvl@lahfa.xyz>
Tested-by: BuildkiteCI
Reviewed-by: Brian Olsen <me@griff.name>
2024-04-13 10:09:35 +00:00

7 lines
228 B
Nix

{ depot, ... }:
depot.tvix.crates.workspaceMembers.nix-compat.build.override {
runTests = true;
# make sure we also enable async here, so run the tests behind that feature flag.
features = [ "default" "async" "wire" ];
}