aboutsummaryrefslogtreecommitdiffstats
blob: 03a665bf5f89c41b71b028a0fb83e9b5a5bcec63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# SPDX-FileCopyrightText: 2026 Nikolay Govorov <me@govorov.online>
# SPDX-License-Identifier: AGPL-3.0-or-later

[licenses]
allow = [
  # Dilution licenses available without restrictions
  "MIT",
  "ISC",
  "Apache-2.0",
  "BSD-3-Clause",

  # Custom but acceptable free licenses
  "Zlib",
  "Unicode-3.0",

  # GPL versions
  "GPL-2.0-or-later",
  "GPL-3.0-or-later",
  "LGPL-2.0-or-later",
  "LGPL-2.1-or-later",
  "LGPL-3.0-or-later",
]
exceptions = [
  # The project itself is distributed under the AGPL, but avoid it in dependencies
  { crate = "zorian", allow = ["AGPL-3.0-or-later"] },
]
unused-allowed-license = "allow"

[sources]
unknown-git = "deny"
unknown-registry = "deny"