From 7f68d9a916eeccb6d1f143b9114e6bb01b3b067a Mon Sep 17 00:00:00 2001 From: Tom Milligan Date: Thu, 16 Dec 2021 17:23:34 +0000 Subject: [PATCH] chore: include license text in crate artefact --- pretty_assertions/Cargo.toml | 2 +- pretty_assertions/LICENSE-APACHE | 1 + pretty_assertions/LICENSE-MIT | 1 + pretty_assertions_bench/Cargo.toml | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) create mode 120000 pretty_assertions/LICENSE-APACHE create mode 120000 pretty_assertions/LICENSE-MIT diff --git a/pretty_assertions/Cargo.toml b/pretty_assertions/Cargo.toml index ca716b1..7c39cc1 100644 --- a/pretty_assertions/Cargo.toml +++ b/pretty_assertions/Cargo.toml @@ -12,7 +12,7 @@ description = "Overwrite `assert_eq!` and `assert_ne!` with drop-in replacements repository = "https://github.com/colin-kiegel/rust-pretty-assertions" documentation = "https://docs.rs/pretty_assertions" -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" categories = ["development-tools"] keywords = ["assert", "diff", "pretty", "color"] readme = "README.md" diff --git a/pretty_assertions/LICENSE-APACHE b/pretty_assertions/LICENSE-APACHE new file mode 120000 index 0000000..965b606 --- /dev/null +++ b/pretty_assertions/LICENSE-APACHE @@ -0,0 +1 @@ +../LICENSE-APACHE \ No newline at end of file diff --git a/pretty_assertions/LICENSE-MIT b/pretty_assertions/LICENSE-MIT new file mode 120000 index 0000000..76219eb --- /dev/null +++ b/pretty_assertions/LICENSE-MIT @@ -0,0 +1 @@ +../LICENSE-MIT \ No newline at end of file diff --git a/pretty_assertions_bench/Cargo.toml b/pretty_assertions_bench/Cargo.toml index 011f803..9d68a9c 100644 --- a/pretty_assertions_bench/Cargo.toml +++ b/pretty_assertions_bench/Cargo.toml @@ -3,6 +3,7 @@ name = "pretty_assertions_bench" version = "0.1.0" authors = ["Tom Milligan "] edition = "2018" +publish = false [dependencies] criterion = { version = "0.3.5", features = ["html_reports"] }