From 13e296db763a42bdb4165101d7ba0b7c080c66b8 Mon Sep 17 00:00:00 2001 From: Daniel Rainer Date: Sun, 23 Nov 2025 16:09:38 +0100 Subject: [PATCH] license: allow fish's own license identifiers The newly added `cargo deny check licenses` command complains about the licenses added in this commit not being explicitly allowed, so add them to the config here. There is no intended change in semantics. Closes #12097 --- deny.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deny.toml b/deny.toml index 0eea7e168..56e9321df 100644 --- a/deny.toml +++ b/deny.toml @@ -7,8 +7,10 @@ allow = [ "BSD-3-Clause", "BSL-1.0", "GPL-2.0", + "GPL-2.0-only", "ISC", "LGPL-2.0", + "LGPL-2.0-or-later", "MIT", "MPL-2.0", "PSF-2.0",