tracing-opentelemetry 0.13.0

OpenTelemetry integration for tracing
Documentation
[package]
name = "tracing-opentelemetry"
version = "0.13.0"
authors = [
    "Julian Tescher <julian@tescher.me>",
    "Tokio Contributors <team@tokio.rs>"
]
description = "OpenTelemetry integration for tracing"
homepage = "https://github.com/tokio-rs/tracing/tree/master/tracing-opentelemetry"
repository = "https://github.com/tokio-rs/tracing"
readme = "README.md"
categories = [
    "development-tools::debugging",
    "development-tools::profiling",
    "asynchronous",
]
keywords = ["tracing", "opentelemetry", "jaeger", "zipkin", "async"]
license = "MIT"
edition = "2018"

[features]
default = ["tracing-log"]

[dependencies]
opentelemetry = { version = "0.14", default-features = false, features = ["trace"] }
tracing = { path = "../tracing", version = "0.1", default-features = false, features = ["std"] }
tracing-core = { path = "../tracing-core", version = "0.1" }
tracing-subscriber = { path = "../tracing-subscriber", version = "0.2", default-features = false, features = ["registry"] }
tracing-log = { path = "../tracing-log", version = "0.1", default-features = false, optional = true }

[dev-dependencies]
async-trait = "0.1"
opentelemetry-jaeger = "0.13"
criterion = { version = "0.3", default_features = false }

[lib]
bench = false

[[bench]]
name = "trace"
harness = false