From 43262825adba651c4ec1a1c7a6964279c9e8736a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 14:15:39 +0200 Subject: [PATCH] Update sp3 requirement from 0.0.8 to 1.0.0 (#157) Updates the requirements on [sp3](https://github.com/gwbres/sp3) to permit the latest version. - [Release notes](https://github.com/gwbres/sp3/releases) - [Commits](https://github.com/gwbres/sp3/commits/v1.0.0) --- updated-dependencies: - dependency-name: sp3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- rinex-cli/Cargo.toml | 2 +- rinex/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rinex-cli/Cargo.toml b/rinex-cli/Cargo.toml index c5fbfb8cb..813b4feb3 100644 --- a/rinex-cli/Cargo.toml +++ b/rinex-cli/Cargo.toml @@ -18,7 +18,7 @@ pretty_env_logger = "0.5" clap = { version = "4", features = ["derive", "color"] } rand = "0.8" serde_json = "1" -sp3 = "0.0.8" +sp3 = "1.0.0" rinex = { path = "../rinex", features = ["serde", "flate2", "sbas", "obs", "nav", "qc", "processing"] } thiserror = "1" itertools = "0.11" diff --git a/rinex/Cargo.toml b/rinex/Cargo.toml index c38dbce5d..93ad091d4 100644 --- a/rinex/Cargo.toml +++ b/rinex/Cargo.toml @@ -48,7 +48,7 @@ flate2 = { version = "1.0.24", optional = true, default-features = false, featur hifitime = { version = "3.8", features = ["serde", "std"] } horrorshow = { version = "0.8", optional = true } statrs = { version = "0.16", optional = true } -sp3 = { version = "0.0.8", optional = true, features = ["serde", "flate2"] } +sp3 = { version = "1.0.0", optional = true, features = ["serde", "flate2"] } [dev-dependencies] serde_json = "1"