-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (36 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
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "docan"
version = "0.1.0-alpha2"
edition = "2021"
license = "MIT OR GPL-3.0"
authors = ["zhuyu <[email protected]>"]
description = "A DoCAN protocol."
homepage = "https://github.com/zhuyu4839/ecu-proto-rs"
repository = "https://github.com/zhuyu4839/ecu-proto-rs"
keywords = [
"automotive",
"UDS",
"DoCAN"
]
[dependencies]
log = "0.4"
thiserror = "2"
hex = "0.4"
iso15765-2 = "0.1.0-alpha1"
rs-can = "0.1.0-alpha3"
[dependencies.iso14229-1]
path = "../iso14229-1"
default-features = false
optional = true
#[dependencies.tokio]
#workspace = true
#features = ["time", ]
#optional = true
[features]
async = []
default = ["std2020", "client", "server"]
client = ["rs-can/isotp-std2004"]
server = ["rs-can/isotp-std2004"]
std2006 = ["iso14229-1/std2006"]
std2013 = ["iso14229-1/std2013"]
std2020 = ["iso14229-1/std2020"]