serde_amf

Crates.ioserde_amf
lib.rsserde_amf
version0.1.0
sourcesrc
created_at2020-07-09 10:27:31.461612
updated_at2020-07-09 10:27:31.461612
descriptionAMF [de]|serialization library
homepage
repositoryhttps://github.com/mehmooda/amf/
max_upload_size
id262815
size40,379
Asad Mehmood (mehmooda)

documentation

README

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

Commit count: 3

cargo fmt