-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump hifitime to v3.9.0 * fixes standardized filename generator * Bump clap as well --------- Co-authored-by: Guillaume W. Bres <[email protected]> Co-authored-by: Lars Næsbye Christensen <[email protected]>
- Loading branch information
1 parent
0741e0e
commit 6fabfdd
Showing
10 changed files
with
96 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rinex-qc" | ||
version = "0.1.9" | ||
version = "0.1.10" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Guillaume W. Bres <[email protected]>"] | ||
description = "RINEX data analysis" | ||
|
@@ -20,16 +20,16 @@ rustdoc-args = ["--cfg", "docrs", "--generate-link-to-definition"] | |
|
||
[dependencies] | ||
serde = { version = "1.0", optional = true, default-features = false, features = ["derive"] } | ||
hifitime = "3.8.4" | ||
hifitime = "3.9.0" | ||
strum = "0.25" | ||
strum_macros = "0.25" | ||
horrorshow = "0.8" | ||
itertools = "0.12.0" | ||
statrs = "0.16" | ||
sp3 = { path = "../sp3", version = "=1.0.6", features = ["serde"] } | ||
sp3 = { path = "../sp3", version = "=1.0.7", features = ["serde"] } | ||
rinex-qc-traits = { path = "../qc-traits", version = "=0.1.1" } | ||
rinex = { path = "../rinex", version = "=0.15.4", features = ["full"] } | ||
gnss-rs = { version = "2.1.2", features = ["serde"] } | ||
rinex = { path = "../rinex", version = "=0.15.5", features = ["full"] } | ||
gnss-rs = { version = "2.1.3", features = ["serde"] } | ||
|
||
[dev-dependencies] | ||
serde_json = "1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rinex" | ||
version = "0.15.4" | ||
version = "0.15.5" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Guillaume W. Bres <[email protected]>"] | ||
description = "Package to parse and analyze RINEX data" | ||
|
@@ -70,16 +70,16 @@ geo = { version = "0.27", optional = true } | |
wkt = { version = "0.10.0", default-features = false, optional = true } | ||
serde = { version = "1.0", optional = true, default-features = false, features = ["derive"] } | ||
flate2 = { version = "1.0.24", optional = true, default-features = false, features = ["zlib"] } | ||
hifitime = { version = "3.8.4", features = ["serde", "std"] } | ||
hifitime = { version = "3.9.0", features = ["serde", "std"] } | ||
horrorshow = { version = "0.8", optional = true } | ||
gnss-rs = { version = "2.1.2", features = ["serde"] } | ||
gnss-rs = { version = "2.1.3", features = ["serde"] } | ||
|
||
# RINEX QC dedicated traits | ||
rinex-qc-traits = { path = "../qc-traits", version = "=0.1.1", optional = true } | ||
|
||
# RINEX Context dependencies | ||
walkdir = { version = "2.4.0", optional = true } | ||
sp3 = { path = "../sp3", version = "=1.0.6", optional = true } | ||
sp3 = { path = "../sp3", version = "=1.0.7", optional = true } | ||
|
||
[dev-dependencies] | ||
serde_json = "1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "sp3" | ||
version = "1.0.6" | ||
version = "1.0.7" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Guillaume W. Bres <[email protected]>"] | ||
description = "IGS SP3 file parser" | ||
|
@@ -24,8 +24,8 @@ rustdoc-args = ["--cfg", "docrs", "--generate-link-to-definition"] | |
[dependencies] | ||
thiserror = "1" | ||
map_3d = "0.1.5" | ||
hifitime = "3.8.4" | ||
gnss-rs = { version = "2.1.2", features = ["serde"] } | ||
hifitime = "3.9.0" | ||
gnss-rs = { version = "2.1.3", features = ["serde"] } | ||
serde = { version = "1.0", optional = true, default-features = false, features = ["derive"] } | ||
flate2 = { version = "1.0.24", optional = true, default-features = false, features = ["zlib"] } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters