asn1rs 0.1.8

ASN.1 to Rust, Protobuf and SQL compiler/code generator. Supports ASN.1 UPER
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![warn(unused_extern_crates)]
#![cfg_attr(feature = "bench_bit_buffer", feature(test))]

#[cfg(feature = "bench_bit_buffer")]
#[allow(unused_extern_crates)]
extern crate test;

#[cfg(feature = "psql")]
extern crate postgres;

pub mod converter;
pub mod gen;
pub mod io;
pub mod model;
pub mod parser;