From c334da0b22a247cfcc7de3bb35baef25b4172a47 Mon Sep 17 00:00:00 2001 From: gwbres Date: Thu, 14 Sep 2023 21:46:01 +0200 Subject: [PATCH] fix cargo scripts (#166) Signed-off-by: Guillaume W. Bres --- qc-traits/Cargo.toml | 2 +- rinex-cli/Cargo.toml | 4 ++-- rinex-qc/Cargo.toml | 5 ++--- rinex/Cargo.toml | 2 +- ublox-rnx/Cargo.toml | 4 ++-- 5 files changed, 8 insertions(+), 9 deletions(-) diff --git a/qc-traits/Cargo.toml b/qc-traits/Cargo.toml index 251eed7a9..bc2f06c23 100644 --- a/qc-traits/Cargo.toml +++ b/qc-traits/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinex-qc-traits" -version = "0.1.0" +version = "0.1.1" license = "MIT OR Apache-2.0" authors = ["Guillaume W. Bres "] description = "RINEX quality analysis specific traits" diff --git a/rinex-cli/Cargo.toml b/rinex-cli/Cargo.toml index 55efcea34..0b70e22a7 100644 --- a/rinex-cli/Cargo.toml +++ b/rinex-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinex-cli" -version = "0.9.1" +version = "0.9.2" license = "MIT OR Apache-2.0" authors = ["Guillaume W. Bres "] description = "Command line tool parse and analyze RINEX data" @@ -18,7 +18,7 @@ pretty_env_logger = "0.5" clap = { version = "4", features = ["derive", "color"] } rand = "0.8" serde_json = "1" -sp3 = { version = "1.0.0", features = ["serde", "flate2"] } +sp3 = { version = "1.0.3", features = ["serde", "flate2"] } rinex-qc = { path = "../rinex-qc", features = ["serde"] } rinex = { path = "../rinex", features = ["serde", "flate2", "sbas", "obs", "nav", "qc", "processing"] } thiserror = "1" diff --git a/rinex-qc/Cargo.toml b/rinex-qc/Cargo.toml index 9a00742e6..06790cb4d 100644 --- a/rinex-qc/Cargo.toml +++ b/rinex-qc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinex-qc" -version = "0.1.0" +version = "0.1.2" license = "MIT OR Apache-2.0" authors = ["Guillaume W. Bres "] description = "RINEX data analysis" @@ -9,7 +9,6 @@ repository = "https://github.com/georust/rinex" keywords = ["rinex", "timing", "gps", "glonass", "galileo"] categories = ["science", "science::geo", "parsing"] edition = "2021" -readme = "README.md" rust-version = "1.64" [features] @@ -27,7 +26,7 @@ strum_macros = "0.25" horrorshow = "0.8" itertools = "0.11.0" statrs = "0.16" -sp3 = { version = "1.0.0", features = ["serde"] } +sp3 = { version = "1.0.3", features = ["serde"] } rinex-qc-traits = { path = "../qc-traits" } rinex = { path = "../rinex", features = ["obs", "nav", "qc", "processing"] } diff --git a/rinex/Cargo.toml b/rinex/Cargo.toml index dbe0a0250..44630934d 100644 --- a/rinex/Cargo.toml +++ b/rinex/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinex" -version = "0.13.0" +version = "0.13.2" license = "MIT OR Apache-2.0" authors = ["Guillaume W. Bres "] description = "Package to parse and analyze RINEX data" diff --git a/ublox-rnx/Cargo.toml b/ublox-rnx/Cargo.toml index 8cf6f6377..e114c8db1 100644 --- a/ublox-rnx/Cargo.toml +++ b/ublox-rnx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ublox-rnx" -version = "0.1.0" +version = "0.1.1" license = "MIT OR Apache-2.0" authors = ["Guillaume W. Bres "] description = "Efficient RINEX production from a Ublox GNSS receiver" @@ -17,5 +17,5 @@ serde = "1.0" serde_json = "1.0" serialport = "4.2.0" ublox = "0.4.2" -rinex = { version = "0.10.1", features = ["serde"] } +rinex = { path = "../rinex", features = ["serde"] } clap = { version = "3.2.22", features = ["yaml"] }