camel-bridge 0.23.0

Bridge process lifecycle management for rust-camel (spawn, health, download)
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Subprocess bridge lifecycle management for rust-camel — spawn, monitor, and reconnect to external bridge processes.
//!
//! Main modules: `channel`, `download`, `health`, `process`, `reconnect`, `spec`.

pub(crate) mod channel;
pub mod download;
pub mod health;
pub mod process;
pub mod reconnect;
pub mod spec;
pub(crate) mod tls;