[package]
edition = "2024"
name = "acex-sim"
version = "0.6.0"
authors = [
"Samuel Preston <samp.reston@outlook.com>",
"MRW <171420035+MRWGNRRR@users.noreply.github.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic simulation infrastructure. Everything needed to test protocol state machines reproducibly."
readme = "README.md"
keywords = [
"diagnostics",
"vehicle",
"standards",
]
categories = [
"development-tools",
"network-programming",
"automotive",
]
license = "MIT or Apache-2.0"
repository = "https://github.com/MRWGNRRR/acex"
[features]
alloc = ["acex-core/alloc"]
default = []
defmt = [
"dep:defmt",
"acex-core/defmt",
]
std = [
"alloc",
"acex-core/std",
]
[lib]
name = "acex_sim"
path = "src/lib.rs"
[dependencies.acex-core]
version = "0.6.0"
[dependencies.defmt]
version = "1.1.1"
optional = true