[package]
edition = "2024"
name = "linux-socketcan-iso-tp"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Linux kernel ISO-TP socket backend implementing can-isotp-interface"
homepage = "https://github.com/conroy-cheers/thincan"
documentation = "https://docs.rs/linux-socketcan-iso-tp"
readme = false
keywords = [
"can",
"iso-tp",
"socketcan",
]
license = "MIT"
repository = "https://github.com/conroy-cheers/thincan"
[features]
default = []
tokio = ["dep:tokio"]
[lib]
name = "linux_socketcan_iso_tp"
path = "src/lib.rs"
[dependencies.can-isotp-interface]
version = "0.1.0"
[dependencies.can-uds]
version = "0.1.0"
[dependencies.embedded-can]
version = "0.4.1"
[dependencies.tokio]
version = "1"
features = [
"io-util",
"net",
"time",
]
optional = true
[dev-dependencies]
[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2"
[target.'cfg(target_os = "linux")'.dependencies.socket2]
version = "0.5.10"
[target.'cfg(target_os = "linux")'.dependencies.socketcan]
version = "3.5.0"