文件名称:Rust 中的 oci-image 和 oci-runtime 规范。
文件大小:13KB
文件格式:ZIP
更新时间:2024-07-18 12:36:27
docker kubernetes container oci-image opencontainers
oci-lib用于容器运行时或容器注册表的 Oci-Spec。Oci-lib 是用 go 编写的原始 oci 规范的 Rust 端口。以下 crate 包含 OCI 图像格式规范(https://github.com/opencontainers/image-spec )和 OCI 运行时格式规范(https://github.com/opencontainers/runtime-spec )的 Rust 等效规范。动机最初编写为 vas-quod (https://github.com/flouthoc/vas-quod ) 的依赖项。用法externcrate oci_lib;use oci_lib:: runtime;use oci_lib:: image;fnmain () {let runtime_spec=match runtime:: Spec::load ("path" ) {Ok (spec)=> spec,Err (e)=>panic! ("{}" , e), }let image_spec=match image:: ImageConfig::load (
【文件预览】:
oci_lib-main
----Makefile(330B)
----src()
--------runtime()
--------image()
--------serialize.rs(2KB)
--------lib.rs(1KB)
----LICENSE(1KB)
----Cargo.toml(490B)
----.github()
--------workflows()
----image-spec()
----Readme.md(1KB)
----runtime-spec()
----generator.js(2KB)