mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-29 03:04:24 +01:00
24 lines
632 B
TOML
24 lines
632 B
TOML
[package]
|
|
name = "protocols"
|
|
version = "0.1.0"
|
|
authors = ["The Kata Containers community <kata-dev@lists.katacontainers.io>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
|
|
[features]
|
|
default = []
|
|
with-serde = [ "serde", "serde_json" ]
|
|
async = ["ttrpc/async", "async-trait"]
|
|
|
|
[dependencies]
|
|
ttrpc = { version = "0.7.1" }
|
|
async-trait = { version = "0.1.42", optional = true }
|
|
protobuf = { version = "3.2.0" }
|
|
serde = { version = "1.0.130", features = ["derive"], optional = true }
|
|
serde_json = { version = "1.0.68", optional = true }
|
|
oci = { path = "../oci" }
|
|
|
|
[build-dependencies]
|
|
ttrpc-codegen = "0.4.2"
|
|
protobuf = { version = "3.2.0" }
|