forked from AeroRust/nmea
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 971 Bytes
/
Cargo.toml
File metadata and controls
34 lines (30 loc) · 971 Bytes
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
[package]
name = "nmea"
version = "0.2.0"
authors = [
"Felix Obenhuber <felix@obenhuber.de>",
"Evgeniy A. Dushistov <dushistov@mail.ru>",
"Henrik Böving <hargonix@gmail.com>"
]
description = "Simple NMEA 0183 parser"
license = "Apache-2.0"
keywords = ["NMEA", "gps", "glonass", "coordinate", "position"]
categories = ["parser-implementations"]
repository = "https://github.com/AeroRust/nmea"
documentation = "https://docs.rs/nmea/"
readme = "README.md"
edition = "2018"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
nom = { version = "7.1.1", default-features = false, features = ["alloc"] }
chrono = { version = "0.4.19", default-features = false }
arrayvec = { version = "0.7.2", default-features = false }
[dev-dependencies]
quickcheck = { version = "1.0.3", default-features = false }
approx = "0.5.1"
doc-comment = "0.3"
[features]
default = ["std"]
std = ["nom/std", "chrono/std", "arrayvec/std"]