feco3

Crates.iofeco3
lib.rsfeco3
version0.5.0
sourcesrc
created_at2023-05-24 19:09:48.107738
updated_at2023-08-18 06:53:40.745283
descriptionA library for working with .fec files
homepagehttps://github.com/NickCrews/feco3
repositoryhttps://github.com/NickCrews/feco3
max_upload_size
id873659
size437,244
Nick Crews (NickCrews)

documentation

https://docs.rs/feco3

README

FECo3

A Rust library for parsing .FEC files.

This crate holds the core parsing logic. It is intended to be extended.

For example, we have Python bindings. You could add a bindings for other languages if you wanted, or you could customize the parsing at the rust level, for example adding a new input reader or output writer.

Documentation is available at docs.rs/feco3.

Rust Usage

Add this to your Cargo.toml:

[dependencies]
feco3 = "VERSION"

Then:


fn main() {
    let fec = feco3::FecFile::from_path("path/to/file.fec")
    println!("{:?}", fec);
}
Commit count: 154

cargo fmt