Init. Tested against cargo bench, the single-threaded consumer is confirmed working.

This commit is contained in:
2026-03-11 11:54:17 -04:00
commit 2b0127c476
29 changed files with 1919 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{ rustPlatform, ... }:
let
cargoToml = builtins.fromTOML (builtins.readFile ./Cargo.toml);
version = cargoToml.package.version;
pname = cargoToml.package.name;
in
rustPlatform.buildRustPackage {
inherit pname version;
src = ./.;
cargoLock = {
lockFile = ./Cargo.lock;
};
}