diff --git a/about.toml b/about.toml index 279ba1068..796e061fd 100644 --- a/about.toml +++ b/about.toml @@ -6,6 +6,7 @@ accepted = [ "BSD-3-Clause", "BSL-1.0", "CC0-1.0", + "CDLA-Permissive-2.0", "ISC", "MIT-0", "MIT", @@ -14,6 +15,7 @@ accepted = [ "Unicode-3.0", "Unicode-DFS-2016", "Zlib", + "NCSA", ] workarounds = ["ring"] ignore-build-dependencies = true diff --git a/deny.toml b/deny.toml index 556f12c11..610902ac3 100644 --- a/deny.toml +++ b/deny.toml @@ -75,11 +75,14 @@ allow = [ "BSD-3-Clause", "BSL-1.0", "CC0-1.0", + "CDLA-Permissive-2.0", "ISC", + "MIT-0", "MIT", "MPL-2.0", "OpenSSL", "Unicode-3.0", + "Unicode-DFS-2016", "Zlib", "NCSA", ] diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 13c8cb2d6..04b0fc6b7 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -21,6 +21,7 @@ const ALLOWED_LICENSES = [ "BSD-3-Clause", "BSL-1.0", "CC0-1.0", + "CDLA-Permissive-2.0", "ISC", "MIT-0", "MIT", @@ -29,6 +30,7 @@ const ALLOWED_LICENSES = [ "Unicode-3.0", "Unicode-DFS-2016", "Zlib", + "NCSA", ]; // https://vitejs.dev/config/