This PR sets up a CI check for licenses. As we are pulling several crates from crates.io, we need to make sure that the licenses of those crates match the ones that we expect/accept.
We use cargo deny for that.
The deny.toml file has the configuration for accepted licenses, currently:
This PR sets up a CI check for licenses. As we are pulling several crates from crates.io, we need to make sure that the licenses of those crates match the ones that we expect/accept. We use cargo deny for that. The deny.toml file has the configuration for accepted licenses, currently:
allow = [ "Apache-2.0", "Apache-2.0 WITH LLVM-exception", "BSD-3-Clause", "ISC", "LicenseRef-ring", "MIT", "Unicode-DFS-2016", ]
Signed-off-by: Tomás González tomasagustin.gonzalezorlando@arm.com