[package]
edition = "2021"
rust-version = "1.79"
name = "ethercrab-wire"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "On-the-wire tools for the EtherCrab crate"
documentation = "https://docs.rs/ethercrab-wire"
readme = "README.md"
keywords = [
"ethercat",
"ethercrab",
"beckhoff",
"automation",
"fieldbus",
]
categories = [
"science::robotics",
"no-std",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ethercrab-rs/ethercrab"
resolver = "2"
[features]
defmt-03 = [
"dep:defmt",
"heapless/defmt-03",
]
std = []
[lib]
name = "ethercrab_wire"
path = "src/lib.rs"
[[test]]
name = "auto-sizes"
path = "tests/auto-sizes.rs"
[[test]]
name = "heapless"
path = "tests/heapless.rs"
[[test]]
name = "irl"
path = "tests/irl.rs"
[[test]]
name = "pack"
path = "tests/pack.rs"
[[test]]
name = "signed-enums"
path = "tests/signed-enums.rs"
[[test]]
name = "std"
path = "tests/std.rs"
[[test]]
name = "unpack"
path = "tests/unpack.rs"
[dependencies.defmt]
version = "0.3.5"
optional = true
[dependencies.ethercrab-wire-derive]
version = "0.3.0"
[dependencies.heapless]
version = "0.8.0"
default-features = false