From 08e054c95c48c45ef7c92b1580729036aa5d60b7 Mon Sep 17 00:00:00 2001 From: Hektor Misplon Date: Tue, 9 Dec 2025 13:36:36 +0100 Subject: [PATCH] refactor: move rust dev shell into 'rust' directory --- README.md | 1 + .gitignore => rust/.gitignore | 0 Cargo.lock => rust/Cargo.lock | 0 Cargo.toml => rust/Cargo.toml | 0 flake.lock => rust/flake.lock | 0 flake.nix => rust/flake.nix | 0 {src => rust/src}/main.rs | 0 7 files changed, 1 insertion(+) create mode 100644 README.md rename .gitignore => rust/.gitignore (100%) rename Cargo.lock => rust/Cargo.lock (100%) rename Cargo.toml => rust/Cargo.toml (100%) rename flake.lock => rust/flake.lock (100%) rename flake.nix => rust/flake.nix (100%) rename {src => rust/src}/main.rs (100%) diff --git a/README.md b/README.md new file mode 100644 index 0000000..40ef845 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# Development templates diff --git a/.gitignore b/rust/.gitignore similarity index 100% rename from .gitignore rename to rust/.gitignore diff --git a/Cargo.lock b/rust/Cargo.lock similarity index 100% rename from Cargo.lock rename to rust/Cargo.lock diff --git a/Cargo.toml b/rust/Cargo.toml similarity index 100% rename from Cargo.toml rename to rust/Cargo.toml diff --git a/flake.lock b/rust/flake.lock similarity index 100% rename from flake.lock rename to rust/flake.lock diff --git a/flake.nix b/rust/flake.nix similarity index 100% rename from flake.nix rename to rust/flake.nix diff --git a/src/main.rs b/rust/src/main.rs similarity index 100% rename from src/main.rs rename to rust/src/main.rs