implemented basic data extraction

This commit is contained in:
specCon18 2024-05-29 19:14:26 -04:00
parent fe3787fd7a
commit 46fc01b803
13 changed files with 578 additions and 0 deletions

11
nix/default.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> { }, lib }:
pkgs.rustPlatform.buildRustPackage rec {
pname = "algos-in-rust";
version = "1.0.0";
cargoLock.lockFile = ../Cargo.lock;
src = pkgs.lib.cleanSource ../.;
buildInputs = [ ];
nativeBuildInputs = [ pkgs.pkg-config ];
doCheck = false;
}