Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Shadle committed Apr 2, 2024
1 parent 4a351af commit fc12e76
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 55 deletions.
48 changes: 8 additions & 40 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ anyhow = "1.0"
# Network/file buffers
bytes = "1.0"
# CAB files are used in conjunction with MSI files for SDK packages
cab = "0.4"
cab = "0.5"
# Nicer to use utf-8 paths
camino = "1.0"
# Easy CLI tables
Expand All @@ -57,7 +57,7 @@ ureq = { version = "2.4", default-features = false, features = ["gzip"] }
memchr = "2.6"
native-tls-crate = { package = "native-tls", version = "0.2", optional = true }
# CA Cert for HTTP requests
rustls = { version = "0.21.8", optional = true }
rustls = { version = "0.22", optional = true }
rustls-pemfile = { version = "1.0.3", optional = true }
# SHA-256 verification
sha2 = "0.10"
Expand Down
21 changes: 8 additions & 13 deletions deny.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
[graph]
targets = [
{ triple = "x86_64-unknown-linux-musl" },
{ triple = "x86_64-unknown-linux-gnu" },
{ triple = "x86_64-apple-darwin" },
{ triple = "aarch64-apple-darwin" },
"x86_64-unknown-linux-musl",
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
]

[advisories]
vulnerability = "deny"
unmaintained = "deny"
yanked = "deny"
version = 2
ignore = []

[licenses]
unlicensed = "deny"
version = 2
allow = ["MIT", "Apache-2.0", "BSD-3-Clause", "ISC"]
copyleft = "deny"
exceptions = [
{ allow = ["MPL-2.0"], name = "webpki-roots" },
# ring uses code from multiple libraries but all with permissive licenses
Expand Down Expand Up @@ -44,10 +42,7 @@ skip = [
# ditto :(
{ name = "regex-automata", version = "=0.1.10" },
]
skip-tree = [
# clap -> terminal_size
{ name = "rustix", version = "=0.37.23" },
]
skip-tree = []

[sources]
unknown-registry = "deny"
Expand Down

0 comments on commit fc12e76

Please sign in to comment.