Rust crates to extend containerd
Go to file
dependabot[bot] cecfee80b3 build(deps): update mio requirement from 0.8 to 1.0
Updates the requirements on [mio](https://github.com/tokio-rs/mio) to permit the latest version.
- [Release notes](https://github.com/tokio-rs/mio/releases)
- [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md)
- [Commits](https://github.com/tokio-rs/mio/compare/v0.8.0...v1.0.0)

---
updated-dependencies:
- dependency-name: mio
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-06-17 20:20:36 +00:00
.github Use the correct shell 2024-04-24 22:31:39 +00:00
crates build(deps): update mio requirement from 0.8 to 1.0 2024-06-17 20:20:36 +00:00
scripts Use the correct shell 2024-04-24 22:31:39 +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 remove instrument proc-macro and use cfg_attr instead 2024-05-20 19:44:29 +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 Add Unicode-DFS-2016 to exceptions 2022-09-19 15:20:15 -07:00
rust-toolchain.toml Add support for windows to containerd client 2024-04-24 22:31:39 +00: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.