Skip to content

Commit

Permalink
Fix nalgebra dependency
Browse files Browse the repository at this point in the history
Signed-off-by: Guillaume W. Bres <[email protected]>
  • Loading branch information
gwbres committed Sep 4, 2024
1 parent cb1bc3a commit 0f0d1d6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 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.12.0-alpha"
version = "0.12.0-alpha-1"
license = "MIT OR Apache-2.0"
authors = ["Guillaume W. Bres <[email protected]>"]
description = "Command line tool parse and analyze RINEX data"
Expand Down Expand Up @@ -40,12 +40,12 @@ plotly = "0.9"
# plotly = { path = "../../plotly-rs/plotly" }
# plotly = { git = "https://github.com/gwbres/plotly", branch = "scattergeo" }

anise = { version = "0.4.2", features = ["embed_ephem"] }
anise = { version = "=0.4.2", features = ["embed_ephem"] }
hifitime = { version = "4.0.0-alpha", features = ["serde", "std"] }

gnss-rs = { version = "2.2.3", features = ["serde"] }

gnss-rtk = { version = "0.7.2", features = ["serde"] }
gnss-rtk = { version = "=0.7.4", features = ["serde"] }
# gnss-rtk = { path = "../../rtk-rs/gnss-rtk", features = ["serde"] }
# gnss-rtk = { git = "https://github.com/rtk-rs/gnss-rtk", branch = "main", features = ["serde"] }

Expand Down
4 changes: 2 additions & 2 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.2.0-alpha"
version = "0.2.0-alpha-1"
license = "MIT OR Apache-2.0"
authors = ["Guillaume W. Bres <[email protected]>"]
description = "RINEX and more broadly, GNSS data processing"
Expand Down Expand Up @@ -37,7 +37,7 @@ thiserror = "1"
strum = "0.26"
itertools = "0.13.0"
strum_macros = "0.26"
anise = { version = "0.4.2", features = ["embed_ephem"] }
anise = { version = "=0.4.2", features = ["embed_ephem"] }
serde = { version = "1.0", default-features = false, features = ["derive"] }

statrs = { version = "0.16", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions rinex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rinex"
version = "0.17.0-alpha"
version = "0.17.0-alpha-1"
license = "MIT OR Apache-2.0"
authors = ["Guillaume W. Bres <[email protected]>"]
description = "Package to parse and analyze RINEX data"
Expand Down Expand Up @@ -107,8 +107,8 @@ flate2 = { version = "1.0.24", optional = true, default-features = false, featur
geo = { version = "0.28", optional = true }
wkt = { version = "0.10.0", default-features = false, optional = true }

anise = { version = "0.4.2", optional = true }
nalgebra = { version = "0.32.3", optional = true }
anise = { version = "=0.4.2", optional = true }
nalgebra = { version = "=0.32.3", optional = true }
hifitime = { version = "4.0.0-alpha", features = ["serde", "std"] }

gnss-rs = { version = "2.2.3", features = ["serde", "domes", "cospar"] }
Expand Down
2 changes: 1 addition & 1 deletion sp3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sp3"
version = "1.1.0-alpha"
version = "1.1.0-alpha-1"
license = "MIT OR Apache-2.0"
authors = ["Guillaume W. Bres <[email protected]>"]
description = "IGS SP3 file parser"
Expand Down

0 comments on commit 0f0d1d6

Please sign in to comment.