[package]
edition = "2024"
name = "std-rs"
version = "0.13.1"
authors = ["Sang Woo Kim <sngwkim915@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust port of EPICS std module (epid, throttle, timestamp records)"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/epics-rs/epics-rs"
[lib]
name = "std_rs"
path = "src/lib.rs"
[[test]]
name = "e2e_tests"
path = "tests/e2e_tests.rs"
[[test]]
name = "epid_tests"
path = "tests/epid_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "snl_tests"
path = "tests/snl_tests.rs"
[[test]]
name = "throttle_tests"
path = "tests/throttle_tests.rs"
[[test]]
name = "timestamp_tests"
path = "tests/timestamp_tests.rs"
[dependencies.asyn-rs]
version = "0.13.1"
[dependencies.chrono]
version = "0.4"
features = ["std"]
[dependencies.epics-base-rs]
version = "0.13.1"
[dependencies.epics-ca-rs]
version = "0.13.1"
[dependencies.tokio]
version = "1"
features = [
"sync",
"time",
"rt",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.epics-ca-rs]
version = "0.13.1"
[dev-dependencies.scaler-rs]
version = "0.13.1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]