idanarye / bevy-tnua

A floating character controller for Bevy
https://crates.io/crates/bevy-tnua
Apache License 2.0
180 stars 12 forks source link

Fix license key in Cargo.toml #35

Closed TimJentzsch closed 6 months ago

TimJentzsch commented 6 months ago

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.

Instead, we now use MIT OR Apache-2.0, which is the intended way to write this license.