-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
37 lines (32 loc) · 1006 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
31
32
33
34
35
36
37
[package]
name = "gnss-rtk"
version = "0.7.4"
license = "MPL-2.0"
authors = ["Guillaume W. Bres <[email protected]>"]
description = "GNSS position solver"
homepage = "https://github.com/rtk-rs/gnss-rtk"
repository = "https://github.com/rtk-rs/gnss-rtk"
keywords = ["timing", "positioning", "gps", "glonass", "galileo"]
categories = ["science", "science::geo"]
edition = "2021"
readme = "README.md"
[features]
default = []
serde = [
"dep:serde",
"gnss-rs/serde",
"hifitime/serde"
]
[dependencies]
log = "0.4"
thiserror = "2"
polyfit-rs = "0.2"
nalgebra = "0.33"
itertools = "0.13"
hifitime = { version = "4.0", features = ["std"] }
anise = { version = "0.5.0", features = ["embed_ephem"] }
map_3d = "0.1.5"
nyx-space = { git = "https://github.com/nyx-space/nyx", branch = "master" }
serde = { version = "1", optional = true, default-features = false, features = ["derive"] }
# gnss-rs = { version = "2.2.4" }
gnss-rs = { git = "https://github.com/rtk-rs/gnss", branch = "main" }