[package]
edition = "2024"
name = "ace-uds"
version = "0.2.1"
authors = ["Samuel Preston <samp.reston@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "UDS typed message layer implementing ISO 14229-1."
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",
"dep:bytes",
]
default = []
std = [
"alloc",
"ace-core/std",
"ace-proto/std",
]
[lib]
name = "ace_uds"
path = "src/lib.rs"
[[test]]
name = "fixtures"
path = "tests/fixtures.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[dependencies.ace-core]
version = "0.2.1"
[dependencies.ace-macros]
version = "0.2.1"
[dependencies.ace-proto]
version = "0.2.1"
[dependencies.bytes]
version = "1.11.1"
optional = true
[dependencies.heapless]
version = "0.9.2"
[dev-dependencies.ace-core]
version = "0.2.1"
features = ["alloc"]
[dev-dependencies.bytes]
version = "1.11.1"
[dev-dependencies.proptest]
version = "1.10.0"