2 unstable releases

0.2.0 Nov 27, 2023
0.1.0 Nov 24, 2023

#1160 in Parser implementations

Download history 80/week @ 2024-02-05 31/week @ 2024-02-12 64/week @ 2024-02-19 8/week @ 2024-02-26 118/week @ 2024-03-04 230/week @ 2024-03-11 32/week @ 2024-03-18 68/week @ 2024-04-01

334 downloads per month

MIT license

12KB
260 lines

Common LUT Format (CLF) parser

Actions Status Latest version Documentation Lines of code MIT Contributor Covenant MSRV

Banner

https://docs.acescentral.com/specifications/clf

Supported features

Operators

  • LUT1D
  • LUT3D
  • Range

Bit depths

  • 32F

Usage

Add this to your Cargo.toml:

[dependencies]
clf-parser = "0.2.0"
fn main() -> anyhow::Result<()> {
    let reader = std::fs::OpenOptions::new().read(true).open("my_file.clf")?;
    let clf = clf_parser::load_clf(reader)?;
    Ok(())
}

Dependencies

~1.7–2.4MB
~55K SLoC