[package]
edition = "2021"
name = "pvxs-sys"
version = "0.1.1"
authors = ["Tine Zata <https://github.com/TineZata>"]
build = "build.rs"
links = "pvxs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Low-level FFI bindings for EPICS PVXS library"
homepage = "https://github.com/ctrl-sys-ui/pvxs-sys"
documentation = "https://docs.rs/pvxs-sys"
readme = "README.md"
keywords = [
"epics",
"pvxs",
"rust",
"c++",
"wrapper",
]
categories = [
"external-ffi-bindings",
"development-tools",
"science",
]
license = "MPL-2.0"
repository = "https://github.com/ctrl-sys-ui/pvxs-sys"
[package.metadata.docs.rs]
rustdoc-args = [
"--cfg",
"docsrs",
]
no-default-features = true
features = []
[features]
async = [
"tokio",
"futures",
]
default = ["async"]
[lib]
name = "pvxs_sys"
path = "src/lib.rs"
[[example]]
name = "logging_example"
path = "examples/logging_example.rs"
[[example]]
name = "metadata_server"
path = "examples/metadata_server.rs"
[[test]]
name = "test_local_double_array_fetch_post"
path = "tests/test_local_double_array_fetch_post.rs"
[[test]]
name = "test_local_double_fetch_post"
path = "tests/test_local_double_fetch_post.rs"
[[test]]
name = "test_local_enum_fetch_post"
path = "tests/test_local_enum_fetch_post.rs"
[[test]]
name = "test_local_int32_array_fetch_post"
path = "tests/test_local_int32_array_fetch_post.rs"
[[test]]
name = "test_local_int32_fetch_post"
path = "tests/test_local_int32_fetch_post.rs"
[[test]]
name = "test_local_string_array_fetch_post"
path = "tests/test_local_string_array_fetch_post.rs"
[[test]]
name = "test_local_string_fetch_post"
path = "tests/test_local_string_fetch_post.rs"
[[test]]
name = "test_monitor_builder"
path = "tests/test_monitor_builder.rs"
[[test]]
name = "test_monitor_callbacks"
path = "tests/test_monitor_callbacks.rs"
[[test]]
name = "test_remote_double_array_get_put"
path = "tests/test_remote_double_array_get_put.rs"
[[test]]
name = "test_remote_double_get_put"
path = "tests/test_remote_double_get_put.rs"
[[test]]
name = "test_remote_enum_get_put"
path = "tests/test_remote_enum_get_put.rs"
[[test]]
name = "test_remote_int32_array_get_put"
path = "tests/test_remote_int32_array_get_put.rs"
[[test]]
name = "test_remote_int32_get_put"
path = "tests/test_remote_int32_get_put.rs"
[[test]]
name = "test_remote_string_array_get_put"
path = "tests/test_remote_string_array_get_put.rs"
[[test]]
name = "test_remote_string_get_put"
path = "tests/test_remote_string_get_put.rs"
[[test]]
name = "test_server_alarm_manager_combined"
path = "tests/test_server_alarm_manager_combined.rs"
[[test]]
name = "test_server_alarm_manager_control_limits"
path = "tests/test_server_alarm_manager_control_limits.rs"
[[test]]
name = "test_server_alarm_manager_lifecycle"
path = "tests/test_server_alarm_manager_lifecycle.rs"
[[test]]
name = "test_server_alarm_manager_value_alarms"
path = "tests/test_server_alarm_manager_value_alarms.rs"
[dependencies.chrono]
version = "0.4.44"
features = ["serde"]
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.cxx]
version = "1.0.194"
[dependencies.futures]
version = "0.3.32"
optional = true
[dependencies.tokio]
version = "1.50.0"
features = ["full"]
optional = true
[dev-dependencies.serial_test]
version = "3.4.0"
[build-dependencies.cxx-build]
version = "1.0.189"