Skip to content

Commit

Permalink
Update x509-parser to 0.13
Browse files Browse the repository at this point in the history
Despite rustls#66, chrono is still pulled in transitively via x509-parser
0.12. x509-parser 0.13 switched to time as well, so using rcgen with an
updated version on't cause `cargo audit` issues.
  • Loading branch information
matze committed Feb 21, 2022
1 parent 9bdc640 commit 5f415e4
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 32 deletions.
105 changes: 75 additions & 30 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 @@ -23,7 +23,7 @@ yasna = { version = "0.5", features = ["time", "std"] }
ring = "0.16"
pem = { version = "1.0", optional = true }
time = { version = "0.3", default-features = false }
x509-parser = { version = "0.12", features = ["verify"], optional = true }
x509-parser = { version = "0.13", features = ["verify"], optional = true }
zeroize = { version = "1.2", optional = true }

[features]
Expand All @@ -34,7 +34,7 @@ features = ["x509-parser"]

[dev-dependencies]
openssl = "0.10"
x509-parser = { version = "0.12", features = ["verify"] }
x509-parser = { version = "0.13", features = ["verify"] }
webpki = { version = "0.22", features = ["std"] }
botan = { version = "0.8", features = ["vendored"] }
rand = "0.8"
Expand Down

0 comments on commit 5f415e4

Please sign in to comment.