Version bump

Signed-off-by: Thomas Klaehn <thomas.klaehn@perinet.io>
This commit is contained in:
Thomas Klaehn
2025-01-15 10:17:33 +01:00
parent 4e601d553c
commit 96da5c9e74
3 changed files with 6 additions and 6 deletions

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 {