1 unstable release

0.1.0 Jul 9, 2020

#32 in #de-serialization

GPL-3.0-or-later

41KB
1K SLoC

AMF

A crate that will parse the action message format (AMF0) and possibly AMF3 in the future.

Features

  • Parse AMF Packets
  • Serde serialization and deserialization

Example

  • Raw Parsing
use amf::AMFData;

let bytes: &[u8] = include_bytes!(...)
let data = AMFData::new(bytes);

for x in data {
    // Handle each amf::AMF object
    dbg!(x);
}

License

GPLv3 -- if you need another license let me know

Dependencies

~1.8–2.4MB
~42K SLoC