-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 853 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
[package]
name = "gpscandump"
license = "MIT/Apache-2.0"
authors = ["Tim Lucas Sabelmann <tsabelmann>"]
categories = ["command-line-utilities"]
description = "Logs GPS and CAN-bus data and synchronizes the CAN-data with the GPS-data"
homepage = "https://github.com/tsabelmann/gpscandump-rs"
keywords = ["gps", "can", "serial", "csv"]
repository = "https://github.com/tsabelmann/gpscandump-rs"
readme = "README.md"
version = "1.0.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = {version = "3.0.10"}
csv = "1.1"
serde = { version = "1.0", features = ["derive"] }
socketcan = "1.7.0"
serialport = {version = "4.0.1", default-features = false}
nmea = "0.0.11"
chrono = "0.4"
[[bin]]
name = "gpscandump"
path = "src/main.rs"
doc = false
test = false
bench = false