kellerkindt / asn1rs

Generates Rust Code and optionally compatible Protobuf schema files from ASN.1 definitions.
http://asn1.rs
Apache License 2.0
54 stars 19 forks source link

Integer RANGE with single value #53

Open kellerkindt opened 3 years ago

kellerkindt commented 3 years ago

This seems to be valid syntax but does not parse in asn1rs, yet (in contrast to SIZE for which this already works)

    BasicConstrainedFExtensible ::= SEQUENCE {
        abc INTEGER(8)
    }

    BasicConstrainedFExtensible ::= SEQUENCE {
        abc INTEGER(8,...)
    }