-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
47 lines (39 loc) · 1011 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "canparse"
version = "0.1.4"
authors = ["Jon Magnuson <jon.magnuson@gmail.com>"]
description = "A CAN signal and definition parser"
repository = "https://github.com/jmagnuson/canparse"
documentation = "https://docs.rs/canparse"
readme = "README.md"
keywords = ["can", "socketcan", "j1939", "dbc", "parser"]
license = "MIT/Apache-2.0"
edition = "2018"
[lib]
name = "canparse"
path = "src/lib.rs"
[[bench]]
name = "pgnlibrary"
harness = false
[[bench]]
name = "socketcan"
harness = false
required-features = ["use-socketcan"]
[features]
default = []
use-socketcan = ["socketcan"]
[dependencies]
byteorder = "1.3"
encoding = "0.2"
enum_primitive = "0.1"
nom = "4.2"
socketcan = { version = "1.7", optional = true }
[dev-dependencies]
approx = "0.3"
criterion = "0.3"
lazy_static = "1.3"
[package.metadata.docs.rs]
features = ["use-socketcan"]
[badges]
travis-ci = { repository = "jmagnuson/canparse" }
codecov = { repository = "jmagnuson/canparse", branch = "master", service = "github" }