sigilyx 0.3.0

Reader and writer for Alteryx .yxdb (E1, with experimental E2 read) files.
Documentation
1
2
3
4
5
6
7
8
9
10
//! E1 (original Alteryx engine) YXDB format support.
//!
//! The E1 format uses a 512-byte header, UTF-16LE XML metadata, LZF compression,
//! and fixed-size record layouts. Files begin with `"Alteryx Database File"`.

pub mod header;
pub mod lzf;
pub mod reader;
pub mod record;
pub mod writer;