Skip to content

Commit

Permalink
Merge pull request #1175 from jiangliu/deny
Browse files Browse the repository at this point in the history
deny: fix cargo deny warnings related to openssl
  • Loading branch information
jiangliu authored Mar 27, 2023
2 parents 7e3baee + f2dd8e6 commit 667189b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ tar = "0.4.38"
tokio = { version = "1.24", features = ["macros"] }

# Build static linked openssl library
openssl = { version = "0.10.45", features = ["vendored"] }
openssl = { version = "0.10.48", features = ["vendored"] }
# pin openssl-src to bring in fix for https://rustsec.org/advisories/RUSTSEC-2022-0032
#openssl-src = { version = "111.22" }

Expand Down
5 changes: 1 addition & 4 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ allow = [
"BSD-3-Clause",
"BSD-2-Clause",
"CC0-1.0",
"ISC",
"Unicode-DFS-2016",
]
# List of explictly disallowed licenses
Expand Down Expand Up @@ -195,6 +194,4 @@ unknown-git = "warn"
# if not specified. If it is specified but empty, no registries are allowed.
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
# List of URLs for allowed Git repositories
allow-git = [
"https://github.com/cloud-hypervisor/micro-http.git"
]
#allow-git = [ ]
2 changes: 1 addition & 1 deletion utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ libc = "0.2"
log = "0.4"
lz4-sys = "1.9.4"
lz4 = "1.24.0"
openssl = { version = "0.10.45", features = ["vendored"], optional = true }
openssl = { version = "0.10.48", features = ["vendored"], optional = true }
serde = { version = ">=1.0.27", features = ["serde_derive", "rc"] }
serde_json = ">=1.0.9"
sha2 = "0.10.0"
Expand Down

0 comments on commit 667189b

Please sign in to comment.