Skip to content

Commit

Permalink
Initial commit with f3df parser
Browse files Browse the repository at this point in the history
  • Loading branch information
dragly committed Aug 29, 2019
0 parents commit 776991a
Show file tree
Hide file tree
Showing 12 changed files with 3,249 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Generated by Cargo
# will have compiled files and executables
target

# These are backup files generated by rustfmt
**/*.rs.bk
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: rust
rust:
- stable
- beta
matrix:
allow_failures:
- rust: nightly
fast_finish: true
cache: cargo
before_script:
- rustup component add clippy
script:
# fail on warnings, test all features
- cargo clippy --all-targets --all-features -- -D warnings
- cargo test --all --verbose

Loading

0 comments on commit 776991a

Please sign in to comment.