Skip to content

Commit

Permalink
Fix license key in Cargo.toml
Browse files Browse the repository at this point in the history
The Cargo manifest format requires a specific syntax for specifying the license key. `MIT/Apache-2.0` is invalid in that syntax, so some tools might not recognize the license. You can read more about the syntax in [the Cargo reference format docs](https://doc.rust-lang.org/cargo/reference/manifest.html#the-license-and-license-file-fields).

Instead, we now use `MIT OR Apache-2.0`, which is the intended way to write this license.
  • Loading branch information
TimJentzsch authored Jan 13, 2024
1 parent ab37d2a commit 6c69851
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "Your Own Level Editor Creation Kit"
version = "0.17.0"
edition = "2021"
authors = ["IdanArye <[email protected]>"]
license = "MIT/Apache-2.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/idanarye/bevy-yoleck"
documentation = "https://docs.rs/bevy-yoleck"
readme = "README.md"
Expand Down

0 comments on commit 6c69851

Please sign in to comment.