[package]
edition = "2024"
name = "ace-can"
version = "0.2.1"
authors = ["Samuel Preston <samp.reston@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ISO-TP implementation. Provides the reassembler and segmenter used by an IsoTpNode to bridge DoIP UDS payloads to CAN frames."
readme = "README.md"
keywords = [
"diagnostics",
"vehicle",
"standards",
]
categories = [
"development-tools",
"network-programming",
"automotive",
]
license = "MIT or Apache-2.0"
repository = "https://github.com/samp-reston/ace"
[features]
alloc = [
"ace-core/alloc",
"ace-proto/alloc",
]
default = []
std = [
"alloc",
"ace-core/std",
"ace-proto/std",
]
[lib]
name = "ace_can"
path = "src/lib.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[dependencies.ace-core]
version = "0.2.1"
[dependencies.ace-proto]
version = "0.2.1"
[dependencies.heapless]
version = "0.9.2"
[dev-dependencies.proptest]
version = "1.10.0"