about summary refs log tree commit diff
path: root/deny.toml
blob: f0592f0bb8114ae96465d5f19336251628e329da (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
# SPDX-License-Identifier: CC0-1.0
# SPDX-FileCopyrightText: 2021 Alyssa Ross <hi@alyssa.is>

# The purpose of this file is to check that all dependencies are
# available under licenses that are compatible with the AGPLv3 and
# later versions.  Additionally, if we added a dependency on a GPL or
# AGPL library, we'd need to make sure that, like us, the library
# offered an exception for linking with OpenSSL.

[licenses]
unlicensed = "deny"
copyleft = "allow"
allow = [
  "Apache-2.0",
  "BSD-3-Clause",
  "MIT",
]

[[licenses.clarify]]
name = "encoding_rs"
version = "*"
expression = "(Apache-2.0 OR MIT) AND BSD-3-Clause"
license-files = [
  { path = "COPYRIGHT", hash = 0x39f8ad31 }
]