Skip to content

Commit

Permalink
Temporary ignore RUSTSEC-2020-0071 (time crate potential segfault). (#…
Browse files Browse the repository at this point in the history
…1303)

Also disabled default features for log4rs, which reduced the number of deps a bit.

Co-authored-by: Artem Vitae <[email protected]>
  • Loading branch information
artemii235 and Artem Vitae authored Jun 3, 2022
1 parent 83cca59 commit c1d46c0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 54 deletions.
52 changes: 0 additions & 52 deletions Cargo.lock

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

4 changes: 3 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,10 @@ notice = "warn"
# output a note when they are encountered.

# RUSTSEC-2021-0113 is related to metrics-util crate that is not actively used for now despite being still present in deps tree
# RUSTSEC-2020-0071 is related to time crate, which is used only by chrono in our deps tree, remove when https://github.com/chronotope/chrono/issues/700 is resolved
ignore = [
"RUSTSEC-2021-0113"
"RUSTSEC-2021-0113",
"RUSTSEC-2020-0071",
#"RUSTSEC-0000-0000",
]
# Threshold for security vulnerabilities, any vulnerability with a CVSS score
Expand Down
2 changes: 1 addition & 1 deletion mm2src/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ hyper = { version = "0.14.11", features = ["client", "http2", "server", "tcp"] }
# got "invalid certificate: UnknownIssuer" for https://ropsten.infura.io on iOS using default-features
hyper-rustls = { version = "0.23", default-features = false, features = ["http1", "http2", "webpki-tokio"] }
libc = { version = "0.2" }
log4rs = { version = "1.0" }
log4rs = { version = "1.0", default-features = false, features = ["console_appender", "pattern_encoder"] }
metrics = { version = "0.12" }
metrics-runtime = { version = "0.13", default-features = false, features = ["metrics-observer-prometheus"] }
metrics-core = { version = "0.5" }
Expand Down

0 comments on commit c1d46c0

Please sign in to comment.