Skip to content

Commit

Permalink
set up cargo-deny
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkRTA committed Jan 7, 2024
1 parent 422592b commit 1e230e3
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion crates/dtacheck/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "dtacheck"
version = "0.1.0"
edition = "2021"
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -10,4 +11,3 @@ clap = { version = "4.4.12", features = ["derive"] }
codespan-reporting = "0.11.1"
derive_more = "0.99.17"
logos = "0.13.0"

1 change: 1 addition & 0 deletions crates/swap_art_bytes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "swap_art_bytes"
version = "0.1.0"
edition = "2021"
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
14 changes: 14 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[licenses]
unlicensed = "deny"
copyleft = "warn"
allow-osi-fsf-free = "osi"
default = "deny"

[licenses.private]
ignore = true

[bans]
multiple-versions = "allow"
deny = [
{ name = "cc" }
]

0 comments on commit 1e230e3

Please sign in to comment.