diff --git a/Cargo.toml b/Cargo.toml index 17cc17a..eef7e56 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,8 +9,8 @@ repository = "https://github.com/BurntSushi/quickcheck" readme = "README.md" keywords = ["testing", "quickcheck", "property", "shrinking", "fuzz"] categories = ["development-tools::testing"] -license = "Unlicense/MIT" -exclude = ["/.travis.yml", "/Makefile", "/ctags.rust", "/session.vim"] +license = "Unlicense OR MIT" +exclude = ["/Makefile", "/ctags.rust", "/session.vim"] edition = "2018" [workspace] diff --git a/README.md b/README.md index 2546a63..01328a6 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ the input space quickly. (It should be the same strategy used in Haskell](https://hackage.haskell.org/package/QuickCheck).) [![Build status](https://github.com/BurntSushi/quickcheck/workflows/ci/badge.svg)](https://github.com/BurntSushi/quickcheck/actions) -[![](https://meritbadge.herokuapp.com/quickcheck)](https://crates.io/crates/quickcheck) +[![crates.io](https://img.shields.io/crates/v/quickcheck.svg)](https://crates.io/crates/quickcheck) Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org). diff --git a/quickcheck_macros/Cargo.toml b/quickcheck_macros/Cargo.toml index 1d9041d..4b990e6 100644 --- a/quickcheck_macros/Cargo.toml +++ b/quickcheck_macros/Cargo.toml @@ -8,7 +8,7 @@ homepage = "https://github.com/BurntSushi/quickcheck" repository = "https://github.com/BurntSushi/quickcheck" readme = "../README.md" keywords = ["testing", "quickcheck", "property", "shrinking", "fuzz"] -license = "Unlicense/MIT" +license = "Unlicense OR MIT" autotests = false [lib]