Skip to content

Commit

Permalink
fix cargo scripts (#166)
Browse files Browse the repository at this point in the history
Signed-off-by: Guillaume W. Bres <[email protected]>
  • Loading branch information
gwbres authored Sep 14, 2023
1 parent cdbaaae commit c334da0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion qc-traits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
description = "RINEX quality analysis specific traits"
Expand Down
4 changes: 2 additions & 2 deletions rinex-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
description = "Command line tool parse and analyze RINEX data"
Expand All @@ -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"
Expand Down
5 changes: 2 additions & 3 deletions rinex-qc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
description = "RINEX data analysis"
Expand All @@ -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]
Expand All @@ -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"] }

Expand Down
2 changes: 1 addition & 1 deletion rinex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
description = "Package to parse and analyze RINEX data"
Expand Down
4 changes: 2 additions & 2 deletions ublox-rnx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
description = "Efficient RINEX production from a Ublox GNSS receiver"
Expand All @@ -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"] }

0 comments on commit c334da0

Please sign in to comment.