A library that provides serde-enabled LabVIEW LVM data structures, and can parse them from the LVM data format.
While serialization back to LVM is not currently supported, you can serialize to other serde formats.
``` extern crate serde_lvm;
fn main() { let lvmreader = std::fs::File::open("my.lvm").unwrap(); let lvmdata = serdelvm::fromreader(lvm_reader).unwrap();
// ... } ```
This library is very much in alpha or beta at best, as I have very limited LVM examples to test with. Certain functionality, eg proper handling of escape sequences, is not supported yet.
If you find a bug or other deficiency, please open an issue. Pull Requests are also welcome.