Compare commits
42 Commits
fix/13
...
morganava/
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fa7816f358 | ||
| 74719369dd | |||
| 4b04d52dae | |||
|
|
6cca562598 | ||
| e1d5d27db6 | |||
|
|
430d907c42 | ||
| b0277bb0ad | |||
| 4df1173ecb | |||
| f4755e9b37 | |||
| 61533920f6 | |||
|
|
9ab60920d2 | ||
|
|
c981004290 | ||
| bc156c36d7 | |||
| fc5e1e7e97 | |||
|
|
34c0267144 | ||
|
|
d7d39d7095 | ||
| 77a9c2b48f | |||
| 4ea0b30437 | |||
|
|
fcba9cb4be | ||
| 1568c1bbf9 | |||
|
|
3bc5c14a19 | ||
| 35cdea3dbe | |||
| 1e141a9393 | |||
|
|
2d2d9a3bbb | ||
| 19a466bb07 | |||
| c585acc530 | |||
| 483e692109 | |||
|
|
8305ec24d7 | ||
| 04ee38744f | |||
|
|
1903cb6ab5 | ||
| 90d24b6d89 | |||
| fcab888856 | |||
|
|
559db125d3 | ||
| 1a246d5970 | |||
| 7f836fc3ed | |||
|
|
7db7a487f4 | ||
| 7b6e48d8fb | |||
| c7bc3f9513 | |||
|
|
d4ac17598a | ||
| 5d07dc7cc3 | |||
| 5bb01ae0e4 | |||
| ce2bf1407c |
17
Cargo.toml
17
Cargo.toml
@@ -1,18 +1,21 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "simple_asn1"
|
name = "simple_asn1"
|
||||||
version = "0.4.0"
|
version = "0.6.2"
|
||||||
authors = ["Adam Wick <awick@uhsure.com>"]
|
authors = ["Adam Wick <awick@uhsure.com>"]
|
||||||
description = "A simple DER/ASN.1 encoding/decoding library."
|
description = "A simple DER/ASN.1 encoding/decoding library."
|
||||||
categories = ["encoding"]
|
categories = ["encoding"]
|
||||||
keywords = ["ASN1","encoding","DER"]
|
keywords = ["ASN1","encoding","DER"]
|
||||||
license-file = "LICENSE"
|
license = "ISC"
|
||||||
repository = "https://github.com/acw/simple_asn1"
|
repository = "https://github.com/acw/simple_asn1"
|
||||||
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
chrono = "^0.4.0"
|
num-bigint = { default-features = false, version = "0.4" }
|
||||||
num-bigint = "^0.2.0"
|
num-traits = { default-features = false, version = "0.2" }
|
||||||
num-traits = "^0.2.0"
|
thiserror = { default-features = false, version = "1" }
|
||||||
|
time = { default-features = false, version = "0.3", features = ["formatting", "macros", "parsing"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
quickcheck = "^0.7.1"
|
quickcheck = "1.0.3"
|
||||||
rand = "0.5.5"
|
rand = "0.8.4"
|
||||||
|
time = { default-features = false, version = "0.3", features = ["formatting", "large-dates", "macros", "parsing", "quickcheck"] }
|
||||||
|
|||||||
848
src/lib.rs
848
src/lib.rs
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user