diff options
| author | Micha White <botahamec@outlook.com> | 2023-02-13 21:04:53 -0500 |
|---|---|---|
| committer | Micha White <botahamec@outlook.com> | 2023-02-13 21:04:53 -0500 |
| commit | e2901288036cfb3557a6855f56998ce0881b2afc (patch) | |
| tree | 9ddb89506626b86ffb76ac67431fa54010be6f1d | |
| parent | a0fc4c9d826034363c7418e363d3ab3ae7249fea (diff) | |
Setup cargo-deny
| -rw-r--r-- | Cargo.toml | 1 | ||||
| -rw-r--r-- | deny.toml | 7 | ||||
| -rw-r--r-- | render/Cargo.toml | 1 | ||||
| -rw-r--r-- | resources/Cargo.toml | 1 | ||||
| -rw-r--r-- | tvg/Cargo.toml | 1 |
5 files changed, 11 insertions, 0 deletions
@@ -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 |
