From 72dac24acf467529b60d48a01cec5271acac69e8 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 12 Jun 2024 15:12:36 -0400 Subject: [PATCH] Add missing LICENSE file to `ollama` crate (#12943) This PR adds a missing LICENSE file to the recently-added `ollama` crate. Also added the missing `lints.workspace = true` to the `Cargo.toml`. Release Notes: - N/A --- crates/ollama/Cargo.toml | 3 +++ crates/ollama/LICENSE-GPL | 1 + 2 files changed, 4 insertions(+) create mode 120000 crates/ollama/LICENSE-GPL diff --git a/crates/ollama/Cargo.toml b/crates/ollama/Cargo.toml index 2ff329df00..c0ee5498ee 100644 --- a/crates/ollama/Cargo.toml +++ b/crates/ollama/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" publish = false license = "GPL-3.0-or-later" +[lints] +workspace = true + [lib] path = "src/ollama.rs" diff --git a/crates/ollama/LICENSE-GPL b/crates/ollama/LICENSE-GPL new file mode 120000 index 0000000000..89e542f750 --- /dev/null +++ b/crates/ollama/LICENSE-GPL @@ -0,0 +1 @@ +../../LICENSE-GPL \ No newline at end of file