Rust crates to extend containerd
Go to file
Phil Estes 2d47d88f13 Add a to_any helper in the containerd client crate
This provides a solution to Any->type matching that happens on
the containerd Go-based server side where the Any types in prost
use typeurl as defined in the protobuf spec and the server side
is matching on the fullname property of the type.

Signed-off-by: Phil Estes <estesp@amazon.com>
2025-01-16 20:44:01 +00:00
.github Don't check labels 2025-01-07 16:05:15 -08:00
crates Add a to_any helper in the containerd client crate 2025-01-16 20:44:01 +00:00
scripts Update vendor script 2025-01-08 18:31:52 +00:00
.gitattributes Add .gitattributes 2021-11-17 12:54:30 -08:00
.gitignore Windows support for the synchronous shim 2023-06-22 10:06:39 -07:00
Cargo.toml build(deps): update thiserror requirement from 1.0 to 2.0 2024-12-03 19:02:07 +00:00
LICENSE Initial commit 2021-06-01 11:58:29 -07:00
MAINTAINERS Add James Sturtevant to reviewers 2023-08-10 10:50:35 -07:00
README.md Add coverage badge 2024-02-15 12:39:37 -08:00
clippy.toml Fix the warns from clippy lints 2022-12-29 21:21:55 +09:00
codecov.yml [codecov] Suppress PR comments 2024-02-22 12:14:10 -08:00
deny.toml Fix CI 2024-12-03 09:43:44 -08:00
rust-toolchain.toml Bump Rust version to 1.81 2024-12-31 14:33:32 -08:00
rustfmt.toml Update rustfmt to sort import 2022-09-29 11:55:14 -07:00

README.md

Rust extensions for containerd

CI codecov Crates.io dependency status

A collection of Rust crates to extend containerd.

This repository contains the following crates:

Name Description Links
containerd-shim-protos TTRPC bindings to shim interfaces Crates.io docs.rs
containerd-shim-logging Shim logger plugins Crates.io docs.rs
containerd-shim Runtime v2 shim wrapper Crates.io docs.rs
containerd-client GRPC bindings to containerd APIs Crates.io docs.rs
containerd-snapshots Remote snapshotter for containerd Crates.io docs.rs
runc Rust wrapper for runc CLI Crates.io docs.rs
containerd-runc-shim Runtime v2 runc shim implementation Crates.io

How to build

The build process as easy as:

cargo build --release

Minimum supported Rust version (MSRV)

The project typically targets the latest stable Rust version. Please refer to rust-toolchain.toml for exact version currently used by our CIs.