Merge branch 'master' of github.com:acw/simple_asn1

This commit is contained in:
2020-10-19 20:23:32 -07:00
2 changed files with 54 additions and 33 deletions

View File

@@ -5,15 +5,15 @@ authors = ["Adam Wick <awick@uhsure.com>"]
description = "A simple DER/ASN.1 encoding/decoding library."
categories = ["encoding"]
keywords = ["ASN1","encoding","DER"]
license-file = "LICENSE"
license = "ISC"
repository = "https://github.com/acw/simple_asn1"
edition = "2018"
[dependencies]
chrono = "^0.4.0"
num-bigint = "^0.2.0"
num-traits = "^0.2.0"
chrono = { default-features = false, features = ["alloc"], version = "0.4" }
num-bigint = { default-features = false, version = "0.3" }
num-traits = { default-features = false, version = "0.2" }
[dev-dependencies]
quickcheck = "^0.7.1"
rand = "0.5.5"
quickcheck = "0.9"
rand = "0.7"