-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 872 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (28 loc) · 872 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
[package]
authors = ["Marcus Geiger"]
description = "The gpsd_proto module contains types and functions to connect to gpsd to get GPS coordinates and satellite information."
documentation = "https://docs.rs/gpsd_proto/"
edition = "2021"
homepage = "https://github.com/bwolf/gpsd_proto.git"
keywords = ["protocol", "gps"]
license = "Apache-2.0"
name = "gpsd_proto"
repository = "https://github.com/bwolf/gpsd_proto.git"
readme = "README.md"
version = "1.0.0"
[badges]
travis-ci = { repository = "bwolf/gpsd_proto" }
[features]
default = []
serialize = [] # Enable Serde Serialize for the types
[dependencies]
log = "0.4"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
[dev-dependencies]
itertools = "0.11"
env_logger = "0.10"
futures = "0.3"
tokio = { version = "1.33", features = ["rt", "macros", "net"] }
tokio-util = { version = "0.7", features = ["codec"] }