Crates.io | xdf |
lib.rs | xdf |
version | 0.1.0 |
source | src |
created_at | 2024-04-29 08:23:04.235111 |
updated_at | 2024-04-29 08:23:04.235111 |
description | Read XDF Files |
homepage | |
repository | https://github.com/Garfield100/xdf_rs |
max_upload_size | |
id | 1223986 |
size | 74,788 |
Rust crate for parsing (and maybe one day writing) XDF files. Currently the only supported XDF version is 1.0. (at the time of writing, this the only version that exists)
XDF format specification by SCCN
cargo add xdf
use std::fs;
use xdf::XDFFile;
let bytes = fs::read("tests/minimal.xdf").unwrap();
let xdf_file = XDFFile::from_bytes(&bytes).unwrap();