rs_ctrl_os 0.6.0

A small runtime library for node discovery, ZeroMQ pub/sub messaging, dynamic TOML config reloading, and simple time synchronization in distributed Rust systems.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "rs_ctrl_os"
version = "0.6.0"
authors = ["Han Wang <wanghan0410@126.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small runtime library for node discovery, ZeroMQ pub/sub messaging, dynamic TOML config reloading, and simple time synchronization in distributed Rust systems."
homepage = "https://github.com/LycanW/rs_ctrl_os/"
readme = "README.md"
keywords = [
    "distributed",
    "zmq",
    "pubsub",
    "config",
    "time-sync",
]
categories = [
    "network-programming",
    "config",
    "concurrency",
]
license = "MIT"
repository = "https://github.com/LycanW/rs_ctrl_os"

[lib]
name = "rs_ctrl_os"
crate-type = [
    "lib",
    "staticlib",
]
path = "src/lib.rs"

[[example]]
name = "multi_pub_node"
path = "examples/multi_pub_node.rs"

[[example]]
name = "multi_sub_node"
path = "examples/multi_sub_node.rs"

[[example]]
name = "pub_node"
path = "examples/pub_node.rs"

[[example]]
name = "rpc_arm_node"
path = "examples/rpc_arm_node.rs"

[[example]]
name = "rpc_control_node"
path = "examples/rpc_control_node.rs"

[[example]]
name = "sub_node"
path = "examples/sub_node.rs"

[[test]]
name = "c_ffi_smoke"
path = "tests/c_ffi_smoke.rs"

[[test]]
name = "config_parse"
path = "tests/config_parse.rs"

[[test]]
name = "discovery_cleanup_regression"
path = "tests/discovery_cleanup_regression.rs"

[[test]]
name = "discovery_shutdown"
path = "tests/discovery_shutdown.rs"

[[test]]
name = "time_sync"
path = "tests/time_sync.rs"

[dependencies.bincode]
version = "1.3.3"

[dependencies.libc]
version = "0.2.174"

[dependencies.notify]
version = "8.2.0"

[dependencies.once_cell]
version = "1.21.3"

[dependencies.serde]
version = "1.0.228"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.133"

[dependencies.socket2]
version = "0.5.8"

[dependencies.thiserror]
version = "2.0.18"

[dependencies.toml]
version = "1.0.6"

[dependencies.tracing]
version = "0.1.44"

[dependencies.tracing-subscriber]
version = "0.3.22"

[dependencies.zmq]
version = "0.10.0"