Compare commits

..

2 Commits

Author SHA1 Message Date
tkl
299c4f5a5f Version bump 2025-01-15 10:55:59 +00:00
Thomas Klaehn
96da5c9e74 Version bump
Signed-off-by: Thomas Klaehn <thomas.klaehn@perinet.io>
2025-01-15 11:44:00 +01:00
2 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "gps_parser"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
[dependencies]

View File

@@ -6,10 +6,10 @@ use nmea_parser::*;
#[derive(Debug)]
pub struct ParseResult {
lat: f64,
lon: f64,
timestamp: DateTime<Utc>,
speed: f64
pub lat: f64,
pub lon: f64,
pub timestamp: DateTime<Utc>,
pub speed: f64,
}
pub struct GpsParser {