From 8e369f33fda0d2077e7f65c8d47d483d369af74a Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Mon, 21 Aug 2023 19:10:54 +0200 Subject: [PATCH] Add license and repository info to all crates --- Cargo.toml | 10 ++++++++-- crates/nbt/Cargo.toml | 4 +++- crates/resource/Cargo.toml | 4 +++- crates/types/Cargo.toml | 4 +++- 4 files changed, 17 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b679609..a536520 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,17 @@ [workspace] members = ["crates/*"] +[workspace.package] +edition = "2021" +license = "MIT" +repository = "https://github.com/NeoRaider/MinedMap" + [package] name = "minedmap" version = "0.1.0" -edition = "2021" -license = "MIT" +edition.workspace = true +license.workspace = true +repository.workspace = true default-run = "minedmap" [dependencies] diff --git a/crates/nbt/Cargo.toml b/crates/nbt/Cargo.toml index b144c39..e402a17 100644 --- a/crates/nbt/Cargo.toml +++ b/crates/nbt/Cargo.toml @@ -1,7 +1,9 @@ [package] name = "minedmap-nbt" version = "0.1.0" -edition = "2021" +edition.workspace = true +license.workspace = true +repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/resource/Cargo.toml b/crates/resource/Cargo.toml index a0ba3ad..3321d28 100644 --- a/crates/resource/Cargo.toml +++ b/crates/resource/Cargo.toml @@ -1,7 +1,9 @@ [package] name = "minedmap-resource" version = "0.1.0" -edition = "2021" +edition.workspace = true +license.workspace = true +repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/types/Cargo.toml b/crates/types/Cargo.toml index 50a41fa..4830080 100644 --- a/crates/types/Cargo.toml +++ b/crates/types/Cargo.toml @@ -1,7 +1,9 @@ [package] name = "minedmap-types" version = "0.1.0" -edition = "2021" +edition.workspace = true +license.workspace = true +repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html