mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-02-15 11:34:22 +01:00
And rely on protobuf 2.14.0. Otherwise build fails as protobuf 2.15.0 requires unstable cargo. error[E0658]: non-builtin inner attributes are unstable Fixes: #343 Signed-off-by: Peng Tao <bergwolf@hyper.sh>
34 lines
715 B
TOML
34 lines
715 B
TOML
# Copyright (c) 2020 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
[package]
|
|
name = "kata-trace-forwarder"
|
|
version = "0.0.1"
|
|
authors = ["James O. D. Hunt <james.o.hunt@intel.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
clap = "2.33.0"
|
|
vsock = "0.1.5"
|
|
nix = "0.15.0"
|
|
libc = "0.2.66"
|
|
serde = { version = "1.0.106", features = ["derive"] }
|
|
bincode = "1.2.1"
|
|
byteorder = "1.3.4"
|
|
serde_json = "1.0.44"
|
|
anyhow = "1.0.31"
|
|
opentelemetry = { version = "0.5.0", features=["serialize"] }
|
|
opentelemetry-jaeger = "0.4.0"
|
|
protobuf = "=2.14.0"
|
|
tracing-opentelemetry = "0.4.0"
|
|
tracing = "0.1.14"
|
|
tracing-subscriber = "0.2.5"
|
|
|
|
logging = { path = "../../pkg/logging" }
|
|
slog = "2.5.2"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.1.0"
|