File tree Expand file tree Collapse file tree 4 files changed +14
-14
lines changed Expand file tree Collapse file tree 4 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -12,11 +12,11 @@ readme = "../README.md"
1212
1313[dependencies ]
1414log = " 0.4"
15- walkdir = " 2.4.0"
16- itertools = " 0.13.0"
15+ walkdir = " 2"
1716env_logger = " 0.11"
17+ itertools = " 0.13"
18+ plotly = " 0.8"
1819clap = { version = " 4.4.6" , features = [" derive" , " color" ] }
19- serde = { version = " 1.0 " , default-features = false , features = [" derive" ] }
20+ serde = { version = " 1" , default-features = false , features = [" derive" ] }
2021cggtts = { path = " ../cggtts" , version = " =4.1.7" }
21- plotly = " 0.8.4"
2222# plotly = { git = "https://github.com/gwbres/plotly", branch = "density-mapbox" }
Original file line number Diff line number Diff line change @@ -18,22 +18,22 @@ scheduler = ["polyfit-rs"]
1818
1919[dependencies ]
2020thiserror = " 2"
21- scan_fmt = " 0.1"
22- strum = " 0.26.3 "
23- itertools = " 0.13.0 "
24- strum_macros = " 0.23.0 "
21+ scan_fmt = " 0.1.3 "
22+ strum = " 0.26"
23+ itertools = " 0.13"
24+ strum_macros = " 0.26 "
2525serde = { version = " 1.0" , optional = true , features = [" derive" ] }
2626
27- hifitime = { version = " 4.0.0-beta " , features = [" serde" , " std" ] }
27+ hifitime = { version = " 4.0" , features = [" serde" , " std" ] }
2828
2929# gnss-rs = { version = "2.2.4", features = ["serde"] }
3030gnss-rs = { git = " https://github.com/rtk-rs/gnss" , branch = " main" , features = [" serde" ] }
3131
3232# track scheduling
33- polyfit-rs = { version = " 0.2.1 " , optional = true }
33+ polyfit-rs = { version = " 0.2" , optional = true }
3434
3535[dev-dependencies ]
36- rand = " 0.8.4 "
36+ rand = " 0.8"
3737
3838[package .metadata .docs .rs ]
3939all-features = true
Original file line number Diff line number Diff line change 11#![ doc = include_str ! ( "../README.md" ) ]
2- #![ cfg_attr( docrs , feature( doc_cfg) ) ]
2+ #![ cfg_attr( docsrs , feature( doc_cfg) ) ]
33//! CGGTTS is the core structure, it comprises
44//! the list of tracks (measurements) and some header information.
55//! ```
Original file line number Diff line number Diff line change @@ -8,11 +8,11 @@ mod class;
88pub use class:: CommonViewClass ;
99
1010#[ cfg( feature = "scheduler" ) ]
11- #[ cfg_attr( docrs , doc( cfg( feature = "scheduler" ) ) ) ]
11+ #[ cfg_attr( docsrs , doc( cfg( feature = "scheduler" ) ) ) ]
1212mod scheduler;
1313
1414#[ cfg( feature = "scheduler" ) ]
15- #[ cfg_attr( docrs , doc( cfg( feature = "scheduler" ) ) ) ]
15+ #[ cfg_attr( docsrs , doc( cfg( feature = "scheduler" ) ) ) ]
1616pub use scheduler:: { FitData , SVTracker , Scheduler } ;
1717
1818use gnss:: prelude:: { Constellation , SV } ;
You can’t perform that action at this time.
0 commit comments