XAMPPRocky
XAMPPRocky
The compiler should be able to be used as a standalone executable to compile ASN.1 to a variety of languages (currently just Rust). Ideally we'd have a much more fully...
Similar to #101 ideally we’d have a public codegen API that allows the compiler to generate languages other than Rust, and we’d have an API for generating ASN.1 notation back...
Currently the compiler does not support parameterisation which prevents it from being able to support many modern ASN.1 modules. These should be translated into type or const generics in Rust.
As a way to know when the compiler is ready for release, we should replace some of the handwritten implementations in this crate with compiler generated implementations. This is also...
One of the things that needs a good representation the the rasn framework is defining and using Objects/Classes from ASN.1 in rasn.
Eventually I'd like to move the compiler to using chumsky/ariadne crates for parsing, in order to provide better error messages when parsing fails. ### Alternatives - `nom-supreme`, nom based, so...
Currently the syntax in the PKIX crate is based on the 1998 syntax, because that was easier to implement, however it would be preferable if we could move to a...
I'd like to be able to provide easy integration between rasn and python code, so I'd like to add a feature to the macros to have them also generate PyO3...
**Is your feature request related to a problem? Please describe.** There is a new draft RFC for UUID formats that are more database friendly, it would be nice if these...
Currently in a few places fluent error type is vector of errors that allows you to display multiple syntax errors, but `Vec` wasn't designed as an error type and as...