diff --git a/Cargo.toml b/Cargo.toml index a935d3f..eea8bc1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,14 @@ members = ["crates/*"] resolver = "2" +[workspace.package] +repository = "https://git.front.kjuulh.io/kjuulh/cuddle-please" +readme = "README.md" +license-file = "LICENSE" +version = "0.1.0" +edition = "2021" +publish = true + [workspace.dependencies] churn = { path = "crates/churn" } churn-agent = { path = "crates/churn-agent" } diff --git a/crates/churn-agent/Cargo.toml b/crates/churn-agent/Cargo.toml index a19b71e..cfe0cd6 100644 --- a/crates/churn-agent/Cargo.toml +++ b/crates/churn-agent/Cargo.toml @@ -1,7 +1,10 @@ [package] name = "churn-agent" -version = "0.1.0" -edition = "2021" +description.workspace = true +license-file.workspace = true +version.workspace = true +edition.workspace = true +publish.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/churn-domain/Cargo.toml b/crates/churn-domain/Cargo.toml index 60e52be..a59451d 100644 --- a/crates/churn-domain/Cargo.toml +++ b/crates/churn-domain/Cargo.toml @@ -1,7 +1,10 @@ [package] name = "churn-domain" -version = "0.1.0" -edition = "2021" +description.workspace = true +license-file.workspace = true +version.workspace = true +edition.workspace = true +publish.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/churn-server/Cargo.toml b/crates/churn-server/Cargo.toml index 0ed716c..d16d0c6 100644 --- a/crates/churn-server/Cargo.toml +++ b/crates/churn-server/Cargo.toml @@ -1,7 +1,10 @@ [package] name = "churn-server" -version = "0.1.0" -edition = "2021" +description.workspace = true +license-file.workspace = true +version.workspace = true +edition.workspace = true +publish.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/churn/Cargo.toml b/crates/churn/Cargo.toml index 071dc89..515d16f 100644 --- a/crates/churn/Cargo.toml +++ b/crates/churn/Cargo.toml @@ -1,7 +1,10 @@ [package] name = "churn" -version = "0.1.0" -edition = "2021" +description.workspace = true +license-file.workspace = true +version.workspace = true +edition.workspace = true +publish.workspace = true [dependencies] churn-domain.workspace = true