From e2901288036cfb3557a6855f56998ce0881b2afc Mon Sep 17 00:00:00 2001 From: Micha White Date: Mon, 13 Feb 2023 21:04:53 -0500 Subject: Setup cargo-deny --- Cargo.toml | 1 + deny.toml | 7 +++++++ render/Cargo.toml | 1 + resources/Cargo.toml | 1 + tvg/Cargo.toml | 1 + 5 files changed, 11 insertions(+) create mode 100644 deny.toml diff --git a/Cargo.toml b/Cargo.toml index 212fdb6..d481405 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,6 +7,7 @@ name = "alligator" version = "0.0.1" edition = "2021" rust-version = "1.65" +publish = false [dependencies] alligator_render = { path = "render" } diff --git a/deny.toml b/deny.toml new file mode 100644 index 0000000..59a150b --- /dev/null +++ b/deny.toml @@ -0,0 +1,7 @@ +[licenses] +allow = ["MIT", "Zlib", "Unlicense"] +default = "allow" +copyleft = "deny" + +[licenses.private] +ignore = true \ No newline at end of file diff --git a/render/Cargo.toml b/render/Cargo.toml index 87536c1..086a993 100644 --- a/render/Cargo.toml +++ b/render/Cargo.toml @@ -3,6 +3,7 @@ name = "alligator_render" version = "0.1.0" edition = "2021" rust-version = "1.65" +publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/resources/Cargo.toml b/resources/Cargo.toml index d5d8276..fea7f39 100644 --- a/resources/Cargo.toml +++ b/resources/Cargo.toml @@ -2,6 +2,7 @@ name = "alligator_resources" version = "0.1.0" edition = "2021" +publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/tvg/Cargo.toml b/tvg/Cargo.toml index d7e7a6b..385de09 100644 --- a/tvg/Cargo.toml +++ b/tvg/Cargo.toml @@ -2,6 +2,7 @@ name = "alligator_tvg" version = "0.1.0" edition = "2021" +publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html -- cgit v1.2.3