From 1c21f05d3244668f2f81ab9733319eb88530d208 Mon Sep 17 00:00:00 2001 From: Darius Auding <Darius.auding@gmx.de> Date: Mon, 8 May 2023 16:14:06 +0200 Subject: [PATCH] cargo.locks and gitignores for /target compile directory --- core/codegen/.gitignore | 1 + core/codegen/Cargo.lock | 7 +++++++ core/html/.gitignore | 1 + core/html/Cargo.lock | 7 +++++++ core/http/.gitignore | 1 + core/http/Cargo.lock | 7 +++++++ site/.gitignore | 1 + site/Cargo.lock | 7 +++++++ 8 files changed, 32 insertions(+) create mode 100644 core/codegen/.gitignore create mode 100644 core/codegen/Cargo.lock create mode 100644 core/html/.gitignore create mode 100644 core/html/Cargo.lock create mode 100644 core/http/.gitignore create mode 100644 core/http/Cargo.lock create mode 100644 site/.gitignore create mode 100644 site/Cargo.lock diff --git a/core/codegen/.gitignore b/core/codegen/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/core/codegen/.gitignore @@ -0,0 +1 @@ +/target diff --git a/core/codegen/Cargo.lock b/core/codegen/Cargo.lock new file mode 100644 index 0000000..0f1eef0 --- /dev/null +++ b/core/codegen/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "codegen" +version = "0.1.0" diff --git a/core/html/.gitignore b/core/html/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/core/html/.gitignore @@ -0,0 +1 @@ +/target diff --git a/core/html/Cargo.lock b/core/html/Cargo.lock new file mode 100644 index 0000000..bcf40f4 --- /dev/null +++ b/core/html/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "html" +version = "0.1.0" diff --git a/core/http/.gitignore b/core/http/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/core/http/.gitignore @@ -0,0 +1 @@ +/target diff --git a/core/http/Cargo.lock b/core/http/Cargo.lock new file mode 100644 index 0000000..8490fd5 --- /dev/null +++ b/core/http/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "http" +version = "0.1.0" diff --git a/site/.gitignore b/site/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/site/.gitignore @@ -0,0 +1 @@ +/target diff --git a/site/Cargo.lock b/site/Cargo.lock new file mode 100644 index 0000000..d1bf507 --- /dev/null +++ b/site/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "site" +version = "0.1.0" -- GitLab