shiguredo_container 2026.1.0-canary.8

Runtime-agnostic container library for Rust on macOS and Linux
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! `runners` — コンテナ起動のトレイト。元の 0.27 の `runners` と同一シグネチャ。

pub(crate) mod async_runner;

pub use async_runner::AsyncRunner;

#[cfg(feature = "blocking")]
pub(crate) mod sync_runner;

#[cfg(feature = "blocking")]
pub use sync_runner::SyncRunner;