-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathCargo.toml
38 lines (32 loc) · 901 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
38
[package]
name = "binex"
version = "0.4.0"
license = "MIT OR Apache-2.0"
authors = ["Guillaume W. Bres <[email protected]>"]
description = "BINEX Binary RINEX encoder and decoder"
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"
rust-version = "1.64"
[features]
default = ["flate2"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docrs", "--generate-link-to-definition"]
[dependencies]
log = "0.4"
md-5 = "0.10"
thiserror = "1"
lazy_static = "1.4"
flate2 = { version = "1.0.34", optional = true }
hifitime = { version = "4.0", features = ["serde", "std"] }
[dev-dependencies]
criterion = "0.5.1"
[[bench]]
name = "encoding"
harness = false
[[bench]]
name = "decoding"
harness = false