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
- Host: GitHub
- URL: https://github.com/turbo87/flupp-rs
- Owner: Turbo87
- License: apache-2.0
- Created: 2023-07-23T18:38:59.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-21T06:46:28.000Z (about 1 year ago)
- Last Synced: 2025-04-21T07:44:07.620Z (about 1 year ago)
- Language: Rust
- Homepage: https://crates.io/crates/flupp
- Size: 104 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
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.