Licence shows up as non-standard on crates.io
cristicbz opened this issue · 2 comments
cristicbz commented
It looks like this is licenced under Apache 2.0, but Cargo doesn't pick up on it unless specified in the manifest. That's why it shows up as "license: non-standard" on crates.io . You may want to add a
license = "Apache-2.0"
or (for GPL compatibility):
license = "MIT/Apache-2.0"
under the [package]
section in Cargo.toml
.
booyaa commented
i tried using the license-file, but it appears to have ignored or failed to parse it. i've updated the Cargo.tom to use the license
instead.