-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathCargo.toml
30 lines (26 loc) · 911 Bytes
/
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
[package]
name = "rinex-qc-traits"
version = "0.2.0"
license = "MIT OR Apache-2.0"
authors = ["Guillaume W. Bres <[email protected]>"]
description = "RINEX quality analysis specific traits"
homepage = "https://github.com/georust/rinex"
repository = "https://github.com/georust/rinex"
keywords = ["rinex", "timing", "gps", "glonass", "galileo"]
categories = ["science", "science::geo", "parsing"]
edition = "2021"
[features]
default = [] # no features by default
# Unlock processing features
# - Filter designer: design and apply filter ops to GNSS datasets
processing = [
"dep:gnss-rs",
"dep:hifitime",
]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docrs", "--generate-link-to-definition"]
[dependencies]
thiserror = "1"
hifitime = { version = "4.0", optional = true }
gnss-rs = { version = "2.3.1", features = ["serde", "domes", "cospar"], optional = true }