feco3 0.3.0

A library for working with .fec files
Documentation
# 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](https://github.com/NickCrews/feco3).
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.

## Rust Usage

Add this to your `Cargo.toml`:

```toml
[dependencies]
feco3 = "0.1.0"
```

Then:

```rust;

fn main() {
    let fec = feco3::parse_from_path("path/to/file.fec", "output_dir/").unwrap();
    println!("{:?}", fec);
}
```