From 28578904c6f27f9f88557c6823c3228ea87710e5 Mon Sep 17 00:00:00 2001 From: Geoffrey Arthaud <geoffrey.arthaud@developpement-durable.gouv.fr> Date: Fri, 26 Aug 2022 15:48:02 +0200 Subject: [PATCH] Add/Update project metadata --- Cargo.lock | 6 +++--- Cargo.toml | 3 ++- LICENSE | 21 +++++++++++++++++++++ README.md | 4 ++++ 4 files changed, 30 insertions(+), 4 deletions(-) create mode 100644 LICENSE create mode 100644 README.md diff --git a/Cargo.lock b/Cargo.lock index a17d1f4..4e06b80 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -401,7 +401,7 @@ dependencies = [ ] [[package]] -name = "gitlab-forge-doctor" +name = "gitlab-project-doctor" version = "0.1.0" dependencies = [ "chrono", @@ -1122,9 +1122,9 @@ dependencies = [ [[package]] name = "socket2" -version = "0.4.4" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0" +checksum = "10c98bba371b9b22a71a9414e420f92ddeb2369239af08200816169d5e2dd7aa" dependencies = [ "libc", "winapi", diff --git a/Cargo.toml b/Cargo.toml index 825cd09..69f4773 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "gitlab-forge-doctor" +name = "gitlab-project-doctor" version = "0.1.0" edition = "2021" @@ -16,3 +16,4 @@ indicatif = "0.17.0" regex = "1.6.0" serde = "1.0.142" structopt = "0.3.26" + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..851fe75 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 Geoffrey Arthaud + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..91f6575 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Gitlab Project Doctor + +CLI tool to clean up a Gitlab project : Old pipelines, package registry, +repositories. \ No newline at end of file -- GitLab