| Crates.io | serde_amf |
| lib.rs | serde_amf |
| version | 0.1.0 |
| created_at | 2020-07-09 10:27:31.461612+00 |
| updated_at | 2020-07-09 10:27:31.461612+00 |
| description | AMF [de]|serialization library |
| homepage | |
| repository | https://github.com/mehmooda/amf/ |
| max_upload_size | |
| id | 262815 |
| size | 40,379 |
A crate that will parse the action message format (AMF0) and possibly AMF3 in the future.
use amf::AMFData;
let bytes: &[u8] = include_bytes!(...)
let data = AMFData::new(bytes);
for x in data {
// Handle each amf::AMF object
dbg!(x);
}
GPLv3 -- if you need another license let me know