From 067ddc71320057309a7b65286598f3f64a479cd1 Mon Sep 17 00:00:00 2001 From: Chris O'Neil Date: Sun, 11 Jun 2023 20:57:34 +0100 Subject: [PATCH] chore: provide licensing information A license needs to be provided to successfully publish the crate. The MIT license seems appropriate for this small project. --- Cargo.toml | 2 ++ LICENSE | 18 ++++++++++++++++++ README.md | 6 ++++++ 3 files changed, 26 insertions(+) create mode 100644 LICENSE diff --git a/Cargo.toml b/Cargo.toml index f0bb98f..a0857f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,8 @@ name = "books-db" version = "0.1.0" edition = "2021" authors = ["Chris O'Neil "] +description = "Simple command line application for maintaining a collection of books" +license = "MIT" repository = "https://github.com/jacderida/books-db" [[bin]] diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..7a2b55b --- /dev/null +++ b/LICENSE @@ -0,0 +1,18 @@ +Copyright 2003 Chris O'Neil + +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 index 47217a6..143db18 100644 --- a/README.md +++ b/README.md @@ -29,3 +29,9 @@ books add 9780517597675 ``` Before the book is saved, you'll get an opportunity to edit any details. + +## License + +This repository is licensed under the MIT license. + +See the [LICENSE](LICENSE) file for more details.