-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathCargo.toml
58 lines (47 loc) · 1.82 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
[package]
name = "rinex-qc"
version = "0.2.0-alpha-1"
license = "MIT OR Apache-2.0"
authors = ["Guillaume W. Bres <[email protected]>"]
description = "RINEX and more broadly, GNSS data processing"
homepage = "https://github.com/georust/rinex"
repository = "https://github.com/georust/rinex"
keywords = ["rinex", "gnss", "gps", "glonass", "galileo"]
categories = ["science", "science::geo", "parsing"]
edition = "2021"
rust-version = "1.64"
[features]
default = [] # no features by default
# Unlock support of high precision SP3 files.
# When targetting highest precision analysis and solutions, like in PPP,
# SP3 files are mandatory. When deactivated, we simply cannot load
# such files into a context, only RINEX post processing is possible.
sp3 = ["dep:sp3"]
# Unlock graphical analysis (plots rendering), otherwise reports are solely text based
# plot = [
# "dep:plotly",
# ]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docrs", "--generate-link-to-definition"]
[dependencies]
log = "0.4"
maud = "0.26"
map_3d = "0.1.5"
thiserror = "1"
strum = "0.26"
itertools = "0.13.0"
strum_macros = "0.26"
hifitime = "4.0"
anise = { version = "0.5.2", features = ["embed_ephem"] }
serde = { version = "1.0", default-features = false, features = ["derive"] }
statrs = { version = "0.16", optional = true }
plotly = "0.9"
# plotly = { path = "../../plotly-rs/plotly" }
# plotly = { git = "https://github.com/gwbres/plotly", branch = "scattergeo"}
gnss-rs = { version = "2.3.1", features = ["serde"] }
rinex = { path = "../rinex", version = "=0.17.0-alpha-1", features = ["full"] }
rinex-qc-traits = { path = "../qc-traits", version = "=0.2.0", features = ["processing"] }
sp3 = { path = "../sp3", version = "=1.1.0-alpha-1", features = ["qc", "processing", "serde"], optional = true }
[dev-dependencies]
serde_json = "1"