diff --git a/Cargo.toml b/Cargo.toml index eea8bc1..bdb8e13 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,8 +4,10 @@ resolver = "2" [workspace.package] repository = "https://git.front.kjuulh.io/kjuulh/cuddle-please" +description = "Churn is a distributed configuration manager and engine" readme = "README.md" -license-file = "LICENSE" +license-file = "LICENSE-MIT" +authors = ["kjuulh "] version = "0.1.0" edition = "2021" publish = true diff --git a/LICENSE-MIT b/LICENSE-MIT new file mode 100644 index 0000000..0135b42 --- /dev/null +++ b/LICENSE-MIT @@ -0,0 +1,8 @@ +Copyright 2023 Kasper J. Hermansen + +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..49a4de7 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Churn - A distributed contriguration manager and engine + +## (Work in progress) diff --git a/crates/churn-agent/Cargo.toml b/crates/churn-agent/Cargo.toml index cfe0cd6..9d58484 100644 --- a/crates/churn-agent/Cargo.toml +++ b/crates/churn-agent/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "churn-agent" description.workspace = true +authors.workspace = true license-file.workspace = true version.workspace = true edition.workspace = true diff --git a/crates/churn-domain/Cargo.toml b/crates/churn-domain/Cargo.toml index a59451d..b468f18 100644 --- a/crates/churn-domain/Cargo.toml +++ b/crates/churn-domain/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "churn-domain" description.workspace = true +authors.workspace = true license-file.workspace = true version.workspace = true edition.workspace = true diff --git a/crates/churn-server/Cargo.toml b/crates/churn-server/Cargo.toml index d16d0c6..b8e62d1 100644 --- a/crates/churn-server/Cargo.toml +++ b/crates/churn-server/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "churn-server" +authors.workspace = true description.workspace = true license-file.workspace = true version.workspace = true diff --git a/crates/churn/Cargo.toml b/crates/churn/Cargo.toml index 515d16f..bd9fd81 100644 --- a/crates/churn/Cargo.toml +++ b/crates/churn/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "churn" +authors.workspace = true description.workspace = true license-file.workspace = true version.workspace = true