Skip to content

Commit

Permalink
Fix license key in Cargo.toml (#25)
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 77b412c commit 390eb68
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 = "The uncluttered blackboard"
homepage = "https://github.com/alepez/lavagna"
repository = "https://github.com/alepez/lavagna"
readme = "README.md"
license = "MIT/Apache-2.0"
license = "MIT OR Apache-2.0"
include = ["src", "assets", "LICENSE*", "README.md"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down

0 comments on commit 390eb68

Please sign in to comment.