shimkit 0.3.1

Opinionated library for building containerd shims
Documentation
1
2
3
4
5
6
7
8
use std::path::PathBuf;
use std::sync::LazyLock;

pub mod metrics;
pub mod stdio;

pub static DEFAULT_CONTAINER_ROOT_DIR: LazyLock<PathBuf> =
    LazyLock::new(|| PathBuf::from("/run/containerd"));