Skip to content

Commit

Permalink
Merge pull request #40 from AeroRust/gps-sats
Browse files Browse the repository at this point in the history
Gps sats
  • Loading branch information
Dushistov authored Apr 18, 2022
2 parents 9997ad9 + e7ad43f commit 4dc7598
Show file tree
Hide file tree
Showing 18 changed files with 1,220 additions and 657 deletions.
7 changes: 2 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nmea"
version = "0.1.0"
version = "0.2.0"
authors = [
"Felix Obenhuber <felix@obenhuber.de>",
"Evgeniy A. Dushistov <dushistov@mail.ru>",
Expand All @@ -19,12 +19,9 @@ nom = { version = "7.1.1", default-features = false }
chrono = { version = "0.4.19", default-features = false }
arrayvec = { version = "0.7.2", default-features = false }

log = "0.4"

[dev-dependencies]
quickcheck = "1.0.3"
quickcheck = { version = "1.0.3", default-features = false }
approx = "0.5.1"
env_logger = "0.9"

[features]
default = ["std"]
Expand Down
54 changes: 0 additions & 54 deletions examples/full_log_sentences.rs

This file was deleted.

2 changes: 1 addition & 1 deletion examples/serial.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use std::fs::File;
use std::io::{BufRead, BufReader};

fn main() {
let mut nmea = nmea::Nmea::new();
let mut nmea = nmea::Nmea::default();

let file = env::args().nth(1).unwrap();
let mut input = BufReader::new(File::open(file).unwrap());
Expand Down
Loading

0 comments on commit 4dc7598

Please sign in to comment.