-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
51 lines (44 loc) · 1.19 KB
/
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
48
49
50
51
[package]
name = "dlt_parse"
version = "0.10.0"
authors = ["Julian Schmid <[email protected]>"]
edition = "2021"
rust-version = "1.60"
description = "A library for parsing the \"Diagnostic Log and Trace\" network protocol (currently without payload interpretation)."
repository = "https://github.com/JulianSchmid/dlt-parse-rs"
categories = ["network-programming", "parser-implementations", "no-std"]
keywords = ["dlt", "autosar"]
license = "MIT OR Apache-2.0"
readme = "README.md"
exclude = [
".gitignore",
".travis.yml",
".github/*",
".gitlab-ci.yml",
".travis/*",
"appveyor.yml"
]
[features]
default = ["std"]
std = ["arrayvec/std"]
serde = ["dep:serde", "arrayvec/serde"]
[dependencies]
arrayvec = { version = "0.7.4", default-features = false }
serde = { version = "1.0", optional = true, features = ["derive"] }
[dev-dependencies]
assert_matches = "1.5.0"
proptest = "1.2.0"
serde_json = { version = "1.0" }
# for examples
etherparse = "0.13.0"
structopt = "0.3.26"
rpcap = "1.0.0"
[[example]]
name = "pcap2dlt"
required-features = ["std"]
[[example]]
name = "print_dlt_file"
required-features = ["std"]
[[example]]
name = "print_verbose_manual"
required-features = ["std"]