From 7c528368a4a412ec3e8e12a4aaa636cb102897be Mon Sep 17 00:00:00 2001 From: Dane Johnson Date: Mon, 24 Jan 2022 11:32:24 -0600 Subject: [PATCH] Move everything up, get rid of src/src --- .gitignore | 6 +++--- src/Cargo.lock => Cargo.lock | 0 src/Cargo.toml => Cargo.toml | 0 src/cbindgen.toml => cbindgen.toml | 0 src/.gitignore | 1 - src/{src => }/lib.rs | 0 {src/storybook-godot => storybook-godot}/Cargo.lock | 0 {src/storybook-godot => storybook-godot}/Cargo.toml | 0 {src/storybook-godot => storybook-godot}/src/lib.rs | 0 9 files changed, 3 insertions(+), 4 deletions(-) rename src/Cargo.lock => Cargo.lock (100%) rename src/Cargo.toml => Cargo.toml (100%) rename src/cbindgen.toml => cbindgen.toml (100%) delete mode 100644 src/.gitignore rename src/{src => }/lib.rs (100%) rename {src/storybook-godot => storybook-godot}/Cargo.lock (100%) rename {src/storybook-godot => storybook-godot}/Cargo.toml (100%) rename {src/storybook-godot => storybook-godot}/src/lib.rs (100%) diff --git a/.gitignore b/.gitignore index 5df0612..3fbb0ce 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ *.o *.a -storybook-cli -src/cli/storybook-cli -src/base/cyoa.cpp \ No newline at end of file +*.so +*.os +target/ \ No newline at end of file diff --git a/src/Cargo.lock b/Cargo.lock similarity index 100% rename from src/Cargo.lock rename to Cargo.lock diff --git a/src/Cargo.toml b/Cargo.toml similarity index 100% rename from src/Cargo.toml rename to Cargo.toml diff --git a/src/cbindgen.toml b/cbindgen.toml similarity index 100% rename from src/cbindgen.toml rename to cbindgen.toml diff --git a/src/.gitignore b/src/.gitignore deleted file mode 100644 index 9f97022..0000000 --- a/src/.gitignore +++ /dev/null @@ -1 +0,0 @@ -target/ \ No newline at end of file diff --git a/src/src/lib.rs b/src/lib.rs similarity index 100% rename from src/src/lib.rs rename to src/lib.rs diff --git a/src/storybook-godot/Cargo.lock b/storybook-godot/Cargo.lock similarity index 100% rename from src/storybook-godot/Cargo.lock rename to storybook-godot/Cargo.lock diff --git a/src/storybook-godot/Cargo.toml b/storybook-godot/Cargo.toml similarity index 100% rename from src/storybook-godot/Cargo.toml rename to storybook-godot/Cargo.toml diff --git a/src/storybook-godot/src/lib.rs b/storybook-godot/src/lib.rs similarity index 100% rename from src/storybook-godot/src/lib.rs rename to storybook-godot/src/lib.rs