From 4dd8dca9591cb5f0c4087358bfbdfa6d86d6ec41 Mon Sep 17 00:00:00 2001 From: Marvin Hansen Date: Sun, 19 Jan 2025 13:19:16 +0800 Subject: [PATCH] Updated README.md across all crates Signed-off-by: Marvin Hansen --- README.md | 4 ++-- crates/docker_utils/README.md | 2 +- crates/service_utils/README.md | 2 +- crates/wait_utils/Cargo.toml | 2 +- crates/wait_utils/LICENSE | 21 +++++++++++++++++++++ crates/wait_utils/README.md | 2 +- 6 files changed, 27 insertions(+), 6 deletions(-) create mode 100644 crates/wait_utils/LICENSE diff --git a/README.md b/README.md index 84a6ac2b..190ace12 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ # Build Utils -Utils for CI tests with Bazel. Mostly used on BuildBuddy, but can easily be used locally or on any -other Bazel CI system. +Utils for CI integration tests with Bazel. Mostly used with [Bazel](https://bazel.build/) and on [BuildBuddy](https://www.buildbuddy.io/), +but can easily be used locally or on any other Bazel CI system. ## Crates diff --git a/crates/docker_utils/README.md b/crates/docker_utils/README.md index 9a298f92..de6b0724 100644 --- a/crates/docker_utils/README.md +++ b/crates/docker_utils/README.md @@ -183,7 +183,7 @@ Contributions are welcome! Feel free to: ## Licence -This project is licensed under the [MIT license](../../LICENSE). +This project is licensed under the [MIT license](LICENSE). ## Author * [Marvin Hansen](https://github.com/marvin-hansen) diff --git a/crates/service_utils/README.md b/crates/service_utils/README.md index c1b3016d..c75f60a4 100644 --- a/crates/service_utils/README.md +++ b/crates/service_utils/README.md @@ -200,7 +200,7 @@ Contributions are welcome! Feel free to: ## Licence -This project is licensed under the [MIT license](../../LICENSE). +This project is licensed under the [MIT license](LICENSE). ## Author diff --git a/crates/wait_utils/Cargo.toml b/crates/wait_utils/Cargo.toml index 182107ae..961ca4c2 100644 --- a/crates/wait_utils/Cargo.toml +++ b/crates/wait_utils/Cargo.toml @@ -2,9 +2,9 @@ name = "wait_utils" version = "0.1.1" description = "Utilities for implementing wait loops using varies wait strategies" +readme = "README.md" edition.workspace = true rust-version.workspace = true -readme.workspace = true repository.workspace = true homepage.workspace = true categories.workspace = true diff --git a/crates/wait_utils/LICENSE b/crates/wait_utils/LICENSE new file mode 100644 index 00000000..e23d1d0b --- /dev/null +++ b/crates/wait_utils/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2025 Marvin Hansen + +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/crates/wait_utils/README.md b/crates/wait_utils/README.md index b651b9da..d5434a11 100644 --- a/crates/wait_utils/README.md +++ b/crates/wait_utils/README.md @@ -78,7 +78,7 @@ Contributions are welcome! Feel free to: - Improve documentation ## Licence -This project is licensed under the [MIT license](../../LICENSE). +This project is licensed under the [MIT license](LICENSE). ## Author * [Marvin Hansen](https://github.com/marvin-hansen)