-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
50 lines (42 loc) · 1.43 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
[package]
name = "gnss-rs"
version = "2.2.4"
license = "MPL-2.0"
authors = ["Guillaume W. Bres <guillaume.bressaix@gmail.com>"]
description = "GNSS constellations and space vehicles support"
homepage = "https://github.com/rtk-rs/gnss"
repository = "https://github.com/rtk-rs/gnss"
keywords = ["gnss", "gps", "glonass", "galileo"]
categories = ["science", "science::geo"]
edition = "2021"
readme = "README.md"
[features]
# no features enabled by default
default = []
# Enable DOMES (IGS station ID) number definition.
domes = []
# Enable COSPAR (Vehicle Launch #ID) definition
cospar = []
# SBAS (GEO) vehicules definitions are built-in this library.
# This feature unlocks the definition of a database of projected areas covered
# by SBAS services, all around the globe, in the form of GEO/WKT frames.
sbas = ["geo", "wkt"]
# Enable all features at once
full = [
"cospar",
"domes",
"sbas",
]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docrs", "--generate-link-to-definition"]
[build-dependencies]
serde_json = { version = "1", features = ["preserve_order"] }
serde = { version = "1", default-features = false, features = ["derive"] }
[dependencies]
thiserror = "2"
hifitime = "4.0"
lazy_static = "1.5"
geo = { version = "0.29", optional = true }
wkt = { version = "0.10", default-features = false, optional = true }
serde = { version = "1", optional = true, default-features = false, features = ["derive"] }