From 1736419f94fd217b71be90337d8b42ddea4efd9c Mon Sep 17 00:00:00 2001 From: makspll Date: Thu, 4 Apr 2024 16:59:02 +0100 Subject: [PATCH] update metadata --- Cargo.toml | 2 +- crates/bevy_api_gen/Cargo.toml | 5 +++++ crates/bevy_event_priority/Cargo.toml | 2 +- crates/bevy_mod_scripting_common/Cargo.toml | 2 +- crates/bevy_mod_scripting_core/Cargo.toml | 2 +- crates/bevy_script_api/Cargo.toml | 2 +- crates/languages/bevy_mod_scripting_lua/Cargo.toml | 2 +- crates/languages/bevy_mod_scripting_lua_derive/Cargo.toml | 2 +- crates/languages/bevy_mod_scripting_rhai/Cargo.toml | 2 +- crates/languages/bevy_mod_scripting_rhai_derive/Cargo.toml | 2 +- crates/languages/bevy_mod_scripting_rune/Cargo.toml | 2 +- 11 files changed, 15 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 253905c5..99bdab2d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "bevy_mod_scripting" version = "0.6.0" authors = ["Maksymilian Mozolewski "] edition = "2021" -license = "MIT" +license = "MIT OR Apache-2.0" description = "Multi language scripting in Bevy" repository = "https://github.com/makspll/bevy_mod_scripting" homepage = "https://github.com/makspll/bevy_mod_scripting" diff --git a/crates/bevy_api_gen/Cargo.toml b/crates/bevy_api_gen/Cargo.toml index a55d3eed..f2d020e9 100644 --- a/crates/bevy_api_gen/Cargo.toml +++ b/crates/bevy_api_gen/Cargo.toml @@ -2,6 +2,11 @@ name = "bevy_api_gen" version = "0.5.0" edition = "2021" +description = "Code generator tool for bevy" +license = "MIT OR Apache-2.0" +repository = "https://github.com/makspll/bevy_mod_scripting" +readme = "readme.md" +include = ["readme.md", "/src", "/templates"] [[bin]] name = "cargo-bevy-api-gen" diff --git a/crates/bevy_event_priority/Cargo.toml b/crates/bevy_event_priority/Cargo.toml index 316f3b38..b6f3594f 100644 --- a/crates/bevy_event_priority/Cargo.toml +++ b/crates/bevy_event_priority/Cargo.toml @@ -3,7 +3,7 @@ name = "bevy_event_priority" version = "0.6.0" authors = ["Maksymilian Mozolewski "] edition = "2021" -license = "MIT" +license = "MIT OR Apache-2.0" description = "Bevy plugin providing priority based event handling" repository = "https://github.com/makspll/bevy_mod_scripting" homepage = "https://github.com/makspll/bevy_mod_scripting" diff --git a/crates/bevy_mod_scripting_common/Cargo.toml b/crates/bevy_mod_scripting_common/Cargo.toml index 1b7210b6..3bd15938 100644 --- a/crates/bevy_mod_scripting_common/Cargo.toml +++ b/crates/bevy_mod_scripting_common/Cargo.toml @@ -3,7 +3,7 @@ name = "bevy_mod_scripting_common" version = "0.6.0" authors = ["Maksymilian Mozolewski "] edition = "2021" -license = "MIT" +license = "MIT OR Apache-2.0" description = "Traits and syn structures for language implementors" repository = "https://github.com/makspll/bevy_mod_scripting" homepage = "https://github.com/makspll/bevy_mod_scripting" diff --git a/crates/bevy_mod_scripting_core/Cargo.toml b/crates/bevy_mod_scripting_core/Cargo.toml index e6f32a7b..b09b6df8 100644 --- a/crates/bevy_mod_scripting_core/Cargo.toml +++ b/crates/bevy_mod_scripting_core/Cargo.toml @@ -3,7 +3,7 @@ name = "bevy_mod_scripting_core" version = "0.6.0" authors = ["Maksymilian Mozolewski "] edition = "2021" -license = "MIT" +license = "MIT OR Apache-2.0" description = "Core traits and structures required for other parts of bevy_mod_scripting" repository = "https://github.com/makspll/bevy_mod_scripting" homepage = "https://github.com/makspll/bevy_mod_scripting" diff --git a/crates/bevy_script_api/Cargo.toml b/crates/bevy_script_api/Cargo.toml index 0fc3fff6..4f069e48 100644 --- a/crates/bevy_script_api/Cargo.toml +++ b/crates/bevy_script_api/Cargo.toml @@ -3,7 +3,7 @@ name = "bevy_script_api" version = "0.6.0" authors = ["Maksymilian Mozolewski "] edition = "2021" -license = "MIT" +license = "MIT OR Apache-2.0" description = "Bevy API for multiple script languages, part of bevy_mod_scripting." repository = "https://github.com/makspll/bevy_mod_scripting" homepage = "https://github.com/makspll/bevy_mod_scripting" diff --git a/crates/languages/bevy_mod_scripting_lua/Cargo.toml b/crates/languages/bevy_mod_scripting_lua/Cargo.toml index 6ecf8cba..11768079 100644 --- a/crates/languages/bevy_mod_scripting_lua/Cargo.toml +++ b/crates/languages/bevy_mod_scripting_lua/Cargo.toml @@ -3,7 +3,7 @@ name = "bevy_mod_scripting_lua" version = "0.6.0" authors = ["Maksymilian Mozolewski "] edition = "2021" -license = "MIT" +license = "MIT OR Apache-2.0" description = "Necessary functionality for Lua support with bevy_mod_scripting" repository = "https://github.com/makspll/bevy_mod_scripting" homepage = "https://github.com/makspll/bevy_mod_scripting" diff --git a/crates/languages/bevy_mod_scripting_lua_derive/Cargo.toml b/crates/languages/bevy_mod_scripting_lua_derive/Cargo.toml index 0217b614..a3c54515 100644 --- a/crates/languages/bevy_mod_scripting_lua_derive/Cargo.toml +++ b/crates/languages/bevy_mod_scripting_lua_derive/Cargo.toml @@ -3,7 +3,7 @@ name = "bevy_mod_scripting_lua_derive" version = "0.6.0" authors = ["Maksymilian Mozolewski "] edition = "2021" -license = "MIT" +license = "MIT OR Apache-2.0" description = "Necessary functionality for Lua support with bevy_mod_scripting" repository = "https://github.com/makspll/bevy_mod_scripting" homepage = "https://github.com/makspll/bevy_mod_scripting" diff --git a/crates/languages/bevy_mod_scripting_rhai/Cargo.toml b/crates/languages/bevy_mod_scripting_rhai/Cargo.toml index 09c65797..5eb78d5e 100644 --- a/crates/languages/bevy_mod_scripting_rhai/Cargo.toml +++ b/crates/languages/bevy_mod_scripting_rhai/Cargo.toml @@ -3,7 +3,7 @@ name = "bevy_mod_scripting_rhai" version = "0.6.0" authors = ["Maksymilian Mozolewski "] edition = "2021" -license = "MIT" +license = "MIT OR Apache-2.0" description = "Necessary functionality for Rhai support with bevy_mod_scripting" repository = "https://github.com/makspll/bevy_mod_scripting" homepage = "https://github.com/makspll/bevy_mod_scripting" diff --git a/crates/languages/bevy_mod_scripting_rhai_derive/Cargo.toml b/crates/languages/bevy_mod_scripting_rhai_derive/Cargo.toml index 7dba483c..18afb127 100644 --- a/crates/languages/bevy_mod_scripting_rhai_derive/Cargo.toml +++ b/crates/languages/bevy_mod_scripting_rhai_derive/Cargo.toml @@ -3,7 +3,7 @@ name = "bevy_mod_scripting_rhai_derive" version = "0.6.0" authors = ["Maksymilian Mozolewski "] edition = "2021" -license = "MIT" +license = "MIT OR Apache-2.0" description = "Necessary functionality for Rhai support with bevy_mod_scripting" repository = "https://github.com/makspll/bevy_mod_scripting" homepage = "https://github.com/makspll/bevy_mod_scripting" diff --git a/crates/languages/bevy_mod_scripting_rune/Cargo.toml b/crates/languages/bevy_mod_scripting_rune/Cargo.toml index 142e382f..d682dc15 100644 --- a/crates/languages/bevy_mod_scripting_rune/Cargo.toml +++ b/crates/languages/bevy_mod_scripting_rune/Cargo.toml @@ -2,7 +2,7 @@ name = "bevy_mod_scripting_rune" version = "0.6.0" edition = "2021" -license = "MIT" +license = "MIT OR Apache-2.0" description = "Necessary functionality for Rune support with bevy_mod_scripting" repository = "https://github.com/makspll/bevy_mod_scripting" homepage = "https://github.com/makspll/bevy_mod_scripting"