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"
12
12
13
13
[dependencies ]
14
14
log = " 0.4"
15
- walkdir = " 2.4.0"
16
- itertools = " 0.13.0"
15
+ walkdir = " 2"
17
16
env_logger = " 0.11"
17
+ itertools = " 0.13"
18
+ plotly = " 0.8"
18
19
clap = { 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" ] }
20
21
cggtts = { path = " ../cggtts" , version = " =4.1.7" }
21
- plotly = " 0.8.4"
22
22
# 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"]
18
18
19
19
[dependencies ]
20
20
thiserror = " 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 "
25
25
serde = { version = " 1.0" , optional = true , features = [" derive" ] }
26
26
27
- hifitime = { version = " 4.0.0-beta " , features = [" serde" , " std" ] }
27
+ hifitime = { version = " 4.0" , features = [" serde" , " std" ] }
28
28
29
29
# gnss-rs = { version = "2.2.4", features = ["serde"] }
30
30
gnss-rs = { git = " https://github.com/rtk-rs/gnss" , branch = " main" , features = [" serde" ] }
31
31
32
32
# track scheduling
33
- polyfit-rs = { version = " 0.2.1 " , optional = true }
33
+ polyfit-rs = { version = " 0.2" , optional = true }
34
34
35
35
[dev-dependencies ]
36
- rand = " 0.8.4 "
36
+ rand = " 0.8"
37
37
38
38
[package .metadata .docs .rs ]
39
39
all-features = true
Original file line number Diff line number Diff line change 1
1
#![ doc = include_str ! ( "../README.md" ) ]
2
- #![ cfg_attr( docrs , feature( doc_cfg) ) ]
2
+ #![ cfg_attr( docsrs , feature( doc_cfg) ) ]
3
3
//! CGGTTS is the core structure, it comprises
4
4
//! the list of tracks (measurements) and some header information.
5
5
//! ```
Original file line number Diff line number Diff line change @@ -8,11 +8,11 @@ mod class;
8
8
pub use class:: CommonViewClass ;
9
9
10
10
#[ cfg( feature = "scheduler" ) ]
11
- #[ cfg_attr( docrs , doc( cfg( feature = "scheduler" ) ) ) ]
11
+ #[ cfg_attr( docsrs , doc( cfg( feature = "scheduler" ) ) ) ]
12
12
mod scheduler;
13
13
14
14
#[ cfg( feature = "scheduler" ) ]
15
- #[ cfg_attr( docrs , doc( cfg( feature = "scheduler" ) ) ) ]
15
+ #[ cfg_attr( docsrs , doc( cfg( feature = "scheduler" ) ) ) ]
16
16
pub use scheduler:: { FitData , SVTracker , Scheduler } ;
17
17
18
18
use gnss:: prelude:: { Constellation , SV } ;
You can’t perform that action at this time.
0 commit comments