-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (42 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
49 lines (42 loc) · 1.07 KB
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
[package]
name = "canutils"
version = "1.0.0"
license = "MIT"
description = "A can-utils implementation in pure Rust"
authors = ["marcelbuesing <buesing.marcel@googlemail.com>"]
edition = "2018"
homepage = "https://github.com/marcelbuesing/canutils-rs"
repository = "https://github.com/marcelbuesing/canutils-rs.git"
keywords = ["can-utils", "can", "automotive", "ecu"]
documentation = "https://docs.rs/canutils"
readme = "README.md"
[badges]
travis-ci = { repository = "marcelbuesing/canutils-rs", branch = "master" }
[dependencies]
ansi_term = "0.12"
anyhow = "1.0"
can-dbc = "3.0"
futures = "0.3"
pretty-hex = "0.2"
nom = "5.1"
rand = "0.7"
rand_core = "0.5"
serde = { version = "1.0", optional = true }
serde_derive = { version = "1.0", optional = true }
structopt = "0.3"
socketcan = "1.7"
tokio = { version = "1.4", features = ["full"] }
tokio-socketcan = "0.3"
[[bin]]
name = "candumprb"
path = "src/bin/candumprb.rs"
[[bin]]
name = "cangenrb"
[[bin]]
name = "canstatsrb"
[profile.release]
opt-level = 3
debug = false
lto = true
[features]
with-serde = ["serde", "serde_derive"]