Upgrade to new version of simple_asn1.

This commit is contained in:
Nick Mathewson 2021-10-22 15:44:37 -04:00
parent e00a1c59ae
commit fa266c5644
2 changed files with 32 additions and 5 deletions

35
Cargo.lock generated
View File

@ -492,7 +492,7 @@ dependencies = [
"libc", "libc",
"num-integer", "num-integer",
"num-traits", "num-traits",
"time", "time 0.1.44",
"winapi", "winapi",
] ]
@ -1830,6 +1830,15 @@ dependencies = [
"unicode-xid", "unicode-xid",
] ]
[[package]]
name = "quickcheck"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6"
dependencies = [
"rand 0.8.4",
]
[[package]] [[package]]
name = "quote" name = "quote"
version = "1.0.10" version = "1.0.10"
@ -2244,14 +2253,14 @@ checksum = "c19772be3c4dd2ceaacf03cb41d5885f2a02c4d8804884918e3a258480803335"
[[package]] [[package]]
name = "simple_asn1" name = "simple_asn1"
version = "0.5.4" version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8eb4ea60fb301dc81dfc113df680571045d375ab7345d171c5dc7d7e13107a80" checksum = "69e392b68e8f171f7399608dabaa3a099525b7daca0fd1c8690bda08eb110355"
dependencies = [ dependencies = [
"chrono",
"num-bigint", "num-bigint",
"num-traits", "num-traits",
"thiserror", "thiserror",
"time 0.3.3",
] ]
[[package]] [[package]]
@ -2392,6 +2401,24 @@ dependencies = [
"winapi", "winapi",
] ]
[[package]]
name = "time"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cde1cf55178e0293453ba2cca0d5f8392a922e52aa958aee9c28ed02becc6d03"
dependencies = [
"itoa",
"libc",
"quickcheck",
"time-macros",
]
[[package]]
name = "time-macros"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25eb0ca3468fc0acc11828786797f6ef9aa1555e4a211a60d64cc8e4d1be47d6"
[[package]] [[package]]
name = "tinyvec" name = "tinyvec"
version = "1.5.0" version = "1.5.0"

View File

@ -26,7 +26,7 @@ sha2 = "0.9.3"
sha3 = "0.9.1" sha3 = "0.9.1"
serde = "1.0.124" serde = "1.0.124"
signature = "1.3.0" signature = "1.3.0"
simple_asn1 = "0.5.1" simple_asn1 = "0.6.0"
subtle = "2.4.0" subtle = "2.4.0"
x25519-dalek = "1.2.0" x25519-dalek = "1.2.0"
zeroize = "1.3.0" zeroize = "1.3.0"