-
Notifications
You must be signed in to change notification settings - Fork 21
/
Cargo.toml
59 lines (50 loc) · 2.15 KB
/
Cargo.toml
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
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "rinex-cli"
version = "0.12.0-alpha-1"
license = "MIT OR Apache-2.0"
authors = ["Guillaume W. Bres <[email protected]>"]
description = "Command line tool parse and analyze RINEX data"
homepage = "https://github.com/georust/rinex"
repository = "https://github.com/georust/rinex"
keywords = ["rinex", "gps", "glonass", "galileo", "timing"]
categories = [
"science",
"science::geo",
"command-line-interface",
"command-line-utilities",
]
edition = "2021"
readme = "README.md"
rust-version = "1.64"
[dependencies]
log = "0.4"
walkdir = "2.4.0"
geo-types = "0.7.11"
env_logger = "0.11"
serde_json = "1"
lazy_static = "1.4"
thiserror = "1"
itertools = "0.13"
map_3d = "0.1.5"
maud = "0.26"
clap = { version = "4.4.13", features = ["derive", "color"] }
serde = { version = "1.0", default-features = false, features = ["derive"] }
kml = { version = "0.8", optional = true }
gpx = { version = "0.10", optional = true }
csv = { version = "1.3.0", optional = true }
plotly = "0.9"
# plotly = { path = "../../plotly-rs/plotly" }
# plotly = { git = "https://github.com/gwbres/plotly", branch = "scattergeo" }
anise = { version = "=0.4.2", features = ["embed_ephem"] }
hifitime = { version = "4.0.0-beta", features = ["serde", "std"] }
# gnss-rs = { version = "2.2.3", features = ["serde"] }
gnss-rs = { git = "https://github.com/rtk-rs/gnss", branch = "main", features = ["serde"] }
# gnss-rtk = { version = "=0.7.4", features = ["serde"] }
# gnss-rtk = { path = "../../rtk-rs/gnss-rtk", features = ["serde"] }
gnss-rtk = { git = "https://github.com/rtk-rs/gnss-rtk", branch = "main", features = ["serde"] }
# cggtts = { version = "4.1.6", features = ["serde", "scheduler"], optional = true }
# cggtts = { path = "../../cggtts/cggtts", features = ["serde", "scheduler"], optional = true }
cggtts = { git = "https://github.com/gwbres/cggtts", branch = "main", features = ["serde", "scheduler"], optional = true }
rinex = { path = "../rinex", version = "=0.17.0-alpha-1", features = ["full"] }
sp3 = { path = "../sp3", version = "=1.1.0-alpha-1", features = ["serde", "flate2"] }
rinex-qc = { path = "../rinex-qc", version = "=0.2.0-alpha-1", features = ["sp3"] }