xdf

Crates.ioxdf
lib.rsxdf
version0.1.2
created_at2024-04-29 08:23:04.235111+00
updated_at2025-06-04 09:25:09.745949+00
descriptionRead XDF Files
homepage
repositoryhttps://github.com/Garfield100/xdf_rs
max_upload_size
id1223986
size102,262
Enrico (Garfield100)

documentation

README

xdf_rs

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

Installation

cargo add xdf

Example usage

use std::fs;
use xdf::XDFFile;
let bytes = fs::read("tests/minimal.xdf").unwrap();
let xdf_file = XDFFile::from_bytes(&bytes).unwrap();
Commit count: 107

cargo fmt