rasn 0.28.12

A safe no_std ASN.1 codec framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use rasn::types::ObjectIdentifier;

#[test]
fn issue222() {
    let arr: &[u32] = &[1, 2, 3];
    let oid = ObjectIdentifier::new(arr).unwrap();
    if &oid != arr {
        unreachable!();
    }
    println!("done");
}