feat: Rust skeleton

(cherry picked from commit 41a09289cda3137f96c69c69c924af34f0e64865)
This commit is contained in:
Robert Hensing 2024-02-08 16:58:45 +01:00
parent bfa3b3a063
commit a4bdbe5618
9 changed files with 264 additions and 22 deletions

4
rust/Cargo.toml Normal file
View file

@ -0,0 +1,4 @@
[workspace]
members = [
]
resolver = "2"

6
rust/nci.nix Normal file
View file

@ -0,0 +1,6 @@
{
perSystem = { pkgs, config, ... }: {
# https://flake.parts/options/nix-cargo-integration
nci.projects.nix-bindings.path = ./.;
};
}