forked from AeroRust/nmea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (45 loc) · 1.36 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
[package]
name = "nmea"
version = "0.4.0"
authors = [
"Felix Obenhuber <[email protected]>",
"Evgeniy A. Dushistov <[email protected]>",
"Henrik Böving <[email protected]>",
"Lachezar Lechev <[email protected]>",
"AeroRust <[email protected]>",
]
categories = ["parser-implementations", "no-std", "embedded"]
keywords = ["NMEA", "gps", "glonass", "coordinate", "position"]
description = "Simple NMEA 0183 parser"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/nmea"
repository = "https://github.com/AeroRust/nmea"
readme = "README.md"
edition = "2021"
rust-version = "1.59"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
arrayvec = { version = "0.7.2", default-features = false }
chrono = { version = "0.4.19", default-features = false }
heapless = "0.7.15"
nom = { version = "7.1.1", default-features = false }
# we include num-traits only when `std` is not enabled
# because of `fract()` and `trunc()` methods
num-traits = { version = "0.2", default-features = false }
[dev-dependencies]
approx = "0.5.1"
doc-comment = "0.3"
pretty_assertions = "1"
quickcheck = { version = "1.0.3", default-features = false }
criterion = "0.4"
[features]
default = ["std"]
std = ["nom/std", "chrono/std", "arrayvec/std"]
[[bench]]
name = "nom_parsing"
harness = false
[[bench]]
name = "gsv_parser"
harness = false