Add cargo-deny
All checks were successful
Build / build (push) Successful in 2m35s

This commit is contained in:
Mathieu Strypsteen 2024-10-11 11:03:30 +02:00
parent a5161881f6
commit d102f3f4f0
4 changed files with 5 additions and 0 deletions

2
deny.toml Normal file
View file

@ -0,0 +1,2 @@
[licenses]
allow = ["Apache-2.0", "BSD-3-Clause", "BSD-3-Clause-acpica", "ISC", "MIT", "MPL-2.0", "Unicode-DFS-2016", "Unlicense"]

View file

@ -2,6 +2,7 @@
name = "kernel"
version = "0.0.1"
edition = "2021"
license = "Unlicense AND BSD-3-Clause-acpica"
[dependencies]
bitfield = "0.17.0"

View file

@ -2,6 +2,7 @@
name = "kernel-common"
version = "0.0.1"
edition = "2021"
license = "Unlicense"
[dependencies]
bitfield = "0.17.0"

View file

@ -2,6 +2,7 @@
name = "loader"
version = "0.0.1"
edition = "2021"
license = "Unlicense"
[dependencies]
elf = {version = "0.7.4", default-features = false}