[package]
edition = "2024"
name = "epics-libcom-rs"
version = "0.25.2"
authors = ["Sang Woo Kim <sngwkim915@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "EPICS libCom for Rust — task seam, thread priority bands, errlog, environment and time primitives, and the protocols' shared socket layer"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/epics-rs/epics-rs"
[features]
linux-rt = []
rtems-exec-model = []
[lib]
name = "epics_libcom_rs"
path = "src/lib.rs"
[[test]]
name = "rt_priority_default_off"
path = "tests/rt_priority_default_off.rs"
[[test]]
name = "rtems_exec_model_gate"
path = "tests/rtems_exec_model_gate.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.hostname]
version = "0.4"
[dependencies.parking_lot]
version = "0.12"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.epics-macros-rs]
version = "0.25.0"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tracing-subscriber]
version = "0.3"
[target.'cfg(any(target_os = "rtems", target_os = "vxworks"))'.dependencies.tokio]
version = "1"
features = [
"fs",
"io-util",
"io-std",
"macros",
"parking_lot",
"rt",
"rt-multi-thread",
"sync",
"time",
]
default-features = false
[target.'cfg(not(any(target_os = "rtems", target_os = "vxworks")))'.dependencies.if-addrs]
version = "0.13"
[target.'cfg(not(any(target_os = "rtems", target_os = "vxworks")))'.dependencies.socket2]
version = "0.5"
features = ["all"]
[target.'cfg(not(any(target_os = "rtems", target_os = "vxworks")))'.dependencies.tokio]
version = "1"
features = ["full"]
[target.'cfg(target_os = "vxworks")'.dependencies.epics-rtems-boot]
version = "0.25.0"
[target."cfg(unix)".dependencies.libc]
version = "0.2"