Skip to content

Commit

Permalink
Update dependencies (#26)
Browse files Browse the repository at this point in the history
Signed-off-by: Guillaume W. Bres <guillaume.bressaix@gmail.com>
  • Loading branch information
gwbres authored Nov 26, 2024
1 parent 0449c84 commit ccffbc8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions cggtts-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ readme = "../README.md"

[dependencies]
log = "0.4"
walkdir = "2.4.0"
itertools = "0.13.0"
walkdir = "2"
env_logger = "0.11"
itertools = "0.13"
plotly = "0.8"
clap = { version = "4.4.6", features = ["derive", "color"] }
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde = { version = "1", default-features = false, features = ["derive"] }
cggtts = { path = "../cggtts", version = "=4.1.7" }
plotly = "0.8.4"
# plotly = { git = "https://github.com/gwbres/plotly", branch = "density-mapbox" }
14 changes: 7 additions & 7 deletions cggtts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,22 @@ scheduler = ["polyfit-rs"]

[dependencies]
thiserror = "2"
scan_fmt = "0.1"
strum = "0.26.3"
itertools = "0.13.0"
strum_macros = "0.23.0"
scan_fmt = "0.1.3"
strum = "0.26"
itertools = "0.13"
strum_macros = "0.26"
serde = { version = "1.0", optional = true, features = ["derive"] }

hifitime = { version = "4.0.0-beta", features = ["serde", "std"] }
hifitime = { version = "4.0", features = ["serde", "std"] }

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

# track scheduling
polyfit-rs = { version = "0.2.1", optional = true }
polyfit-rs = { version = "0.2", optional = true }

[dev-dependencies]
rand = "0.8.4"
rand = "0.8"

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion cggtts/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![doc = include_str!("../README.md")]
#![cfg_attr(docrs, feature(doc_cfg))]
#![cfg_attr(docsrs, feature(doc_cfg))]
//! CGGTTS is the core structure, it comprises
//! the list of tracks (measurements) and some header information.
//! ```
Expand Down
4 changes: 2 additions & 2 deletions cggtts/src/track/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ mod class;
pub use class::CommonViewClass;

#[cfg(feature = "scheduler")]
#[cfg_attr(docrs, doc(cfg(feature = "scheduler")))]
#[cfg_attr(docsrs, doc(cfg(feature = "scheduler")))]
mod scheduler;

#[cfg(feature = "scheduler")]
#[cfg_attr(docrs, doc(cfg(feature = "scheduler")))]
#[cfg_attr(docsrs, doc(cfg(feature = "scheduler")))]
pub use scheduler::{FitData, SVTracker, Scheduler};

use gnss::prelude::{Constellation, SV};
Expand Down

0 comments on commit ccffbc8

Please sign in to comment.