From 94eb686a490d49028a7e68433d91697c05a08a93 Mon Sep 17 00:00:00 2001 From: Pavlo Myroniuk Date: Fri, 19 Jan 2024 22:41:25 +0200 Subject: [PATCH] feat(asn1-parser): update readme --- crates/asn1-parser/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/asn1-parser/README.md b/crates/asn1-parser/README.md index 6ec21cc..0b21700 100644 --- a/crates/asn1-parser/README.md +++ b/crates/asn1-parser/README.md @@ -46,9 +46,9 @@ This `asn1` parser is aimed to parse input bytes and return an AST as the result --- - [X] [Sequence](https://www.oss.com/asn1/resources/asn1-made-simple/asn1-quick-reference/sequence.html) -- [ ] [SequenceOf](https://www.oss.com/asn1/resources/asn1-made-simple/asn1-quick-reference/sequenceof.html) +- [X] [SequenceOf](https://www.oss.com/asn1/resources/asn1-made-simple/asn1-quick-reference/sequenceof.html). _Note. This library doesn't have a separate type for the_ `SequenceOf` _ASN1 data type. Just use the regular_ `Suquence` _for it. Their tags are the same, so no problem should occur._ - [X] [Set](https://www.oss.com/asn1/resources/asn1-made-simple/asn1-quick-reference/set.html) -- [ ] [SetOf](https://www.oss.com/asn1/resources/asn1-made-simple/asn1-quick-reference/setof.html) +- [X] [SetOf](https://www.oss.com/asn1/resources/asn1-made-simple/asn1-quick-reference/setof.html). _Note. This library doesn't have a separate type for the_ `SetOf` _ASN1 data type. Just use the regular_ `Set` _for it. Their tags are the same, so no problem should occur._ - [ ] [Choice](https://www.oss.com/asn1/resources/asn1-made-simple/asn1-quick-reference/choice.html) ---