summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Touchet <alextouchet@outlook.com>2022-05-09 04:52:11 -0700
committerGitHub <noreply@github.com>2022-05-09 07:52:11 -0400
commit36d03b410181fbaca590a0b6601c148bd921d73f (patch)
tree5177f222add750af7b8bc188c110a671e8e96e5c
parentd161acb0a360cd437214048e2580f4604f8d4b44 (diff)
cargo: use SPDX license format for all crates
This was done for the main crate in d11a3b33773620bcc593f82b557757f0c2ec8a05. See also #987. PR #2204
-rw-r--r--crates/cli/Cargo.toml2
-rw-r--r--crates/globset/Cargo.toml2
-rw-r--r--crates/grep/Cargo.toml2
-rw-r--r--crates/ignore/Cargo.toml2
-rw-r--r--crates/matcher/Cargo.toml2
-rw-r--r--crates/pcre2/Cargo.toml2
-rw-r--r--crates/printer/Cargo.toml2
-rw-r--r--crates/regex/Cargo.toml2
-rw-r--r--crates/searcher/Cargo.toml2
9 files changed, 9 insertions, 9 deletions
diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml
index 86ca9cb4..a01221ac 100644
--- a/crates/cli/Cargo.toml
+++ b/crates/cli/Cargo.toml
@@ -10,7 +10,7 @@ homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/cli"
repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/cli"
readme = "README.md"
keywords = ["regex", "grep", "cli", "utility", "util"]
-license = "Unlicense/MIT"
+license = "Unlicense OR MIT"
edition = "2018"
[dependencies]
diff --git a/crates/globset/Cargo.toml b/crates/globset/Cargo.toml
index afbe0fc8..51ca8052 100644
--- a/crates/globset/Cargo.toml
+++ b/crates/globset/Cargo.toml
@@ -12,7 +12,7 @@ homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset"
repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset"
readme = "README.md"
keywords = ["regex", "glob", "multiple", "set", "pattern"]
-license = "Unlicense/MIT"
+license = "Unlicense OR MIT"
edition = "2018"
[lib]
diff --git a/crates/grep/Cargo.toml b/crates/grep/Cargo.toml
index 714c36d5..cefb936c 100644
--- a/crates/grep/Cargo.toml
+++ b/crates/grep/Cargo.toml
@@ -10,7 +10,7 @@ homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/grep"
repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/grep"
readme = "README.md"
keywords = ["regex", "grep", "egrep", "search", "pattern"]
-license = "Unlicense/MIT"
+license = "Unlicense OR MIT"
edition = "2018"
[dependencies]
diff --git a/crates/ignore/Cargo.toml b/crates/ignore/Cargo.toml
index d31b451b..c15ce028 100644
--- a/crates/ignore/Cargo.toml
+++ b/crates/ignore/Cargo.toml
@@ -11,7 +11,7 @@ homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore"
repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore"
readme = "README.md"
keywords = ["glob", "ignore", "gitignore", "pattern", "file"]
-license = "Unlicense/MIT"
+license = "Unlicense OR MIT"
edition = "2018"
[lib]
diff --git a/crates/matcher/Cargo.toml b/crates/matcher/Cargo.toml
index c104e36e..0b506386 100644
--- a/crates/matcher/Cargo.toml
+++ b/crates/matcher/Cargo.toml
@@ -10,7 +10,7 @@ homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/matcher"
repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/matcher"
readme = "README.md"
keywords = ["regex", "pattern", "trait"]
-license = "Unlicense/MIT"
+license = "Unlicense OR MIT"
autotests = false
edition = "2018"
diff --git a/crates/pcre2/Cargo.toml b/crates/pcre2/Cargo.toml
index c1c49766..e4aa9c4d 100644
--- a/crates/pcre2/Cargo.toml
+++ b/crates/pcre2/Cargo.toml
@@ -10,7 +10,7 @@ homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/pcre2"
repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/pcre2"
readme = "README.md"
keywords = ["regex", "grep", "pcre", "backreference", "look"]
-license = "Unlicense/MIT"
+license = "Unlicense OR MIT"
edition = "2018"
[dependencies]
diff --git a/crates/printer/Cargo.toml b/crates/printer/Cargo.toml
index 3a87b532..61bfcaf1 100644
--- a/crates/printer/Cargo.toml
+++ b/crates/printer/Cargo.toml
@@ -11,7 +11,7 @@ homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/printer"
repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/printer"
readme = "README.md"
keywords = ["grep", "pattern", "print", "printer", "sink"]
-license = "Unlicense/MIT"
+license = "Unlicense OR MIT"
edition = "2018"
[features]
diff --git a/crates/regex/Cargo.toml b/crates/regex/Cargo.toml
index 96374ec3..97a0d916 100644
--- a/crates/regex/Cargo.toml
+++ b/crates/regex/Cargo.toml
@@ -10,7 +10,7 @@ homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/regex"
repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/regex"
readme = "README.md"
keywords = ["regex", "grep", "search", "pattern", "line"]
-license = "Unlicense/MIT"
+license = "Unlicense OR MIT"
edition = "2018"
[dependencies]
diff --git a/crates/searcher/Cargo.toml b/crates/searcher/Cargo.toml
index 3ce75426..e85157b3 100644
--- a/crates/searcher/Cargo.toml
+++ b/crates/searcher/Cargo.toml
@@ -10,7 +10,7 @@ homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/searcher"
repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/searcher"
readme = "README.md"
keywords = ["regex", "grep", "egrep", "search", "pattern"]
-license = "Unlicense/MIT"
+license = "Unlicense OR MIT"
edition = "2018"
[dependencies]