Skip to content

Commit 1736419

Browse files
committed
update metadata
1 parent 9753863 commit 1736419

File tree

11 files changed

+15
-10
lines changed

11 files changed

+15
-10
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "bevy_mod_scripting"
33
version = "0.6.0"
44
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
55
edition = "2021"
6-
license = "MIT"
6+
license = "MIT OR Apache-2.0"
77
description = "Multi language scripting in Bevy"
88
repository = "https://github.com/makspll/bevy_mod_scripting"
99
homepage = "https://github.com/makspll/bevy_mod_scripting"

crates/bevy_api_gen/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
name = "bevy_api_gen"
33
version = "0.5.0"
44
edition = "2021"
5+
description = "Code generator tool for bevy"
6+
license = "MIT OR Apache-2.0"
7+
repository = "https://github.com/makspll/bevy_mod_scripting"
8+
readme = "readme.md"
9+
include = ["readme.md", "/src", "/templates"]
510

611
[[bin]]
712
name = "cargo-bevy-api-gen"

crates/bevy_event_priority/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "bevy_event_priority"
33
version = "0.6.0"
44
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
55
edition = "2021"
6-
license = "MIT"
6+
license = "MIT OR Apache-2.0"
77
description = "Bevy plugin providing priority based event handling"
88
repository = "https://github.com/makspll/bevy_mod_scripting"
99
homepage = "https://github.com/makspll/bevy_mod_scripting"

crates/bevy_mod_scripting_common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "bevy_mod_scripting_common"
33
version = "0.6.0"
44
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
55
edition = "2021"
6-
license = "MIT"
6+
license = "MIT OR Apache-2.0"
77
description = "Traits and syn structures for language implementors"
88
repository = "https://github.com/makspll/bevy_mod_scripting"
99
homepage = "https://github.com/makspll/bevy_mod_scripting"

crates/bevy_mod_scripting_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "bevy_mod_scripting_core"
33
version = "0.6.0"
44
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
55
edition = "2021"
6-
license = "MIT"
6+
license = "MIT OR Apache-2.0"
77
description = "Core traits and structures required for other parts of bevy_mod_scripting"
88
repository = "https://github.com/makspll/bevy_mod_scripting"
99
homepage = "https://github.com/makspll/bevy_mod_scripting"

crates/bevy_script_api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "bevy_script_api"
33
version = "0.6.0"
44
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
55
edition = "2021"
6-
license = "MIT"
6+
license = "MIT OR Apache-2.0"
77
description = "Bevy API for multiple script languages, part of bevy_mod_scripting."
88
repository = "https://github.com/makspll/bevy_mod_scripting"
99
homepage = "https://github.com/makspll/bevy_mod_scripting"

crates/languages/bevy_mod_scripting_lua/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "bevy_mod_scripting_lua"
33
version = "0.6.0"
44
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
55
edition = "2021"
6-
license = "MIT"
6+
license = "MIT OR Apache-2.0"
77
description = "Necessary functionality for Lua support with bevy_mod_scripting"
88
repository = "https://github.com/makspll/bevy_mod_scripting"
99
homepage = "https://github.com/makspll/bevy_mod_scripting"

crates/languages/bevy_mod_scripting_lua_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "bevy_mod_scripting_lua_derive"
33
version = "0.6.0"
44
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
55
edition = "2021"
6-
license = "MIT"
6+
license = "MIT OR Apache-2.0"
77
description = "Necessary functionality for Lua support with bevy_mod_scripting"
88
repository = "https://github.com/makspll/bevy_mod_scripting"
99
homepage = "https://github.com/makspll/bevy_mod_scripting"

crates/languages/bevy_mod_scripting_rhai/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "bevy_mod_scripting_rhai"
33
version = "0.6.0"
44
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
55
edition = "2021"
6-
license = "MIT"
6+
license = "MIT OR Apache-2.0"
77
description = "Necessary functionality for Rhai support with bevy_mod_scripting"
88
repository = "https://github.com/makspll/bevy_mod_scripting"
99
homepage = "https://github.com/makspll/bevy_mod_scripting"

crates/languages/bevy_mod_scripting_rhai_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "bevy_mod_scripting_rhai_derive"
33
version = "0.6.0"
44
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
55
edition = "2021"
6-
license = "MIT"
6+
license = "MIT OR Apache-2.0"
77
description = "Necessary functionality for Rhai support with bevy_mod_scripting"
88
repository = "https://github.com/makspll/bevy_mod_scripting"
99
homepage = "https://github.com/makspll/bevy_mod_scripting"

0 commit comments

Comments
 (0)