An open API service indexing awesome lists of open source software.

https://github.com/turbo87/flupp-rs

FluPP flight log file reader for Rust
https://github.com/turbo87/flupp-rs

Last synced: about 1 year ago
JSON representation

FluPP flight log file reader for Rust

Awesome Lists containing this project

README

          

flupp
==============================================================================

[FluPP] flight log file reader for [Rust]

[FluPP]: http://www.flupp-flightlog.org
[Rust]: https://www.rust-lang.org/

Usage
------------------------------------------------------------------------------

```rust
fn main() -> Result<(), Box> {
let content = fs::read_to_string("flugbuch.flu")?;
let decoded_file: flupp::File = content.parse()?;
// ...
Ok(())
}
```

License
------------------------------------------------------------------------------

This project is licensed under either of

- Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
)

- MIT license ([LICENSE-MIT](LICENSE-MIT) or
)

at your option.