forked from nav-solutions/cggtts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (41 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
47 lines (41 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "cggtts"
version = "4.3.1"
license = "MPL-2.0"
authors = ["Guillaume W. Bres <guillaume.bressaix@gmail.com>"]
description = "CGGTTS data parsing and synthesis"
homepage = "https://github.com/nav-solutions"
repository = "https://github.com/nav-solutions/cggtts"
keywords = ["geo", "gnss", "timing", "gps"]
categories = ["science", "science", "parsing"]
edition = "2018"
readme = "README.md"
exclude = [
"data/*",
]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docrs", "--generate-link-to-definition"]
[features]
default = [] # no features by default
# Unlock common view period definitions and scheduling
scheduler = []
# Satellite tracker and fit method
tracker = [
"dep:polyfit-rs",
"dep:log",
]
[dependencies]
thiserror = "2"
scan_fmt = "0.1.3"
strum = "0.27"
itertools = "0.14"
strum_macros = "0.27"
flate2 = { version = "1", optional = true }
log = { version = "0.4", optional = true }
polyfit-rs = { version = "0.2", optional = true }
gnss-rs = { version = "2.4", features = ["serde"] }
hifitime = { version = "4.1", features = ["serde", "std"] }
serde = { version = "1.0", optional = true, features = ["derive"] }
[dev-dependencies]
rand = "0.8"