1
0
mirror of https://github.com/containers/youki synced 2024-11-22 17:02:00 +01:00

Add the metadates for publishing a crate.

Signed-off-by: utam0k <k0ma@utam0k.jp>
This commit is contained in:
utam0k 2022-02-23 17:32:16 +09:00
parent 673d2e1a09
commit ff6d86b8fd
No known key found for this signature in database
GPG Key ID: 14ACDDE088DF059E
7 changed files with 57 additions and 8 deletions

30
Cargo.lock generated

@ -1026,7 +1026,7 @@ dependencies = [
"rbpf",
"serde",
"serde_json",
"serial_test",
"serial_test 0.5.1",
]
[[package]]
@ -1054,7 +1054,7 @@ dependencies = [
"rand",
"serde",
"serde_json",
"serial_test",
"serial_test 0.6.0",
"wasmer",
"wasmer-wasi",
]
@ -1936,6 +1936,17 @@ dependencies = [
"serde",
]
[[package]]
name = "serial_test"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0bccbcf40c8938196944a3da0e133e031a33f4d6b72db3bda3cc556e361905d"
dependencies = [
"lazy_static",
"parking_lot",
"serial_test_derive 0.5.1",
]
[[package]]
name = "serial_test"
version = "0.6.0"
@ -1944,7 +1955,18 @@ checksum = "e5bcc41d18f7a1d50525d080fd3e953be87c4f9f1a974f3c21798ca00d54ec15"
dependencies = [
"lazy_static",
"parking_lot",
"serial_test_derive",
"serial_test_derive 0.6.0",
]
[[package]]
name = "serial_test_derive"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2acd6defeddb41eb60bb468f8825d0cfd0c2a76bc03bfd235b6a1dc4f6a1ad5"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
@ -2746,7 +2768,7 @@ dependencies = [
"procfs",
"serde",
"serde_json",
"serial_test",
"serial_test 0.6.0",
"tabwriter",
"vergen",
]

@ -1,9 +1,17 @@
[package]
name = "libcgroups"
version = "0.0.2"
description = "Library for cgroup"
license-file = "../../LICENSE"
documentation = "https://docs.rs/libcgroups"
repository = "https://github.com/containers/youki"
homepage = "https://containers.github.io/youki"
readme = "README.md"
authors = ["youki team"]
edition = "2021"
rust-version = "1.58.1"
autoexamples = false
keywords = ["youki", "container", "cgroups"]
[features]
default = ["v1", "v2", "systemd"]

@ -0,0 +1 @@
# libcgroups

@ -1,10 +1,16 @@
[package]
name = "libcontainer"
version = "0.0.2"
description = "Library for container control"
license-file = "../../LICENSE"
documentation = "https://docs.rs/libcontainer"
repository = "https://github.com/containers/youki"
homepage = "https://containers.github.io/youki"
readme = "README.md"
authors = ["youki team"]
edition = "2021"
rust-version = "1.58.1"
description = "Library for container creation"
keywords = ["youki", "container", "cgroups"]
[features]
default = []

@ -0,0 +1 @@
# libcontainer

@ -1,10 +1,15 @@
[package]
name = "liboci-cli"
version = "0.0.2"
description = "Parse command line arguments for OCI container runtimes"
license-file = "../../LICENSE"
documentation = "https://docs.rs/liboci-cli"
repository = "https://github.com/containers/youki"
homepage = "https://containers.github.io/youki"
readme = "README.md"
authors = ["youki team"]
edition = "2021"
description = "Parse command line arguments for OCI container runtimes"
readme = "README.md"
keywords = ["youki", "container", "oci"]
[dependencies.clap]
version = "3.0.0-beta.5"

@ -1,10 +1,16 @@
[package]
name = "youki"
version = "0.0.2"
description = "A container runtime written in Rust"
license-file = "../../LICENSE"
documentation = "https://docs.rs/youki"
repository = "https://github.com/containers/youki"
homepage = "https://containers.github.io/youki"
readme = "../../README.md"
authors = ["youki team"]
edition = "2021"
description = "A container runtime written in Rust"
build = "build.rs"
keywords = ["youki", "container"]
[dependencies.clap]
version = "3.0.0-beta.5"