[package]
edition = "2024"
name = "ace-core"
version = "0.2.1"
authors = ["Samuel Preston <samp.reston@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Foundation layer, providing three codec traits that the rest of ACE builds on: FrameRead, FrameWrite, Writer"
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 = ["bytes"]
default = []
std = [
"alloc",
"heapless/defmt",
]
[lib]
name = "ace_core"
path = "src/lib.rs"
[dependencies.bytes]
version = "1.11.1"
optional = true
[dependencies.heapless]
version = "0.9.2"