From 947213ec91d7a1e968480ced93ebb98c3109e715 Mon Sep 17 00:00:00 2001 From: Aiden McClelland Date: Tue, 9 Mar 2021 11:59:20 -0700 Subject: [PATCH] reorganize --- patch-db/.gitignore | 3 +++ Cargo.toml => patch-db/Cargo.toml | 0 {src => patch-db/src}/lib.rs | 0 {src => patch-db/src}/test.rs | 0 4 files changed, 3 insertions(+) create mode 100644 patch-db/.gitignore rename Cargo.toml => patch-db/Cargo.toml (100%) rename {src => patch-db/src}/lib.rs (100%) rename {src => patch-db/src}/test.rs (100%) diff --git a/patch-db/.gitignore b/patch-db/.gitignore new file mode 100644 index 0000000..1096b27 --- /dev/null +++ b/patch-db/.gitignore @@ -0,0 +1,3 @@ +/target +Cargo.lock +test.db \ No newline at end of file diff --git a/Cargo.toml b/patch-db/Cargo.toml similarity index 100% rename from Cargo.toml rename to patch-db/Cargo.toml diff --git a/src/lib.rs b/patch-db/src/lib.rs similarity index 100% rename from src/lib.rs rename to patch-db/src/lib.rs diff --git a/src/test.rs b/patch-db/src/test.rs similarity index 100% rename from src/test.rs rename to patch-db/src/test.rs