mirror of
https://github.com/tokio-rs/tracing.git
synced 2026-01-25 04:16:18 +00:00
This branch updates all crate versions to 0.2.x. After this PR merges, we can now develop `tracing`/`tracing-core` v0.2.x on `master`. There is now a separate, protected `v0.1.x` branch. Changes backported to 0.1 versions of `tracing` crates can be merged to that branch. Signed-off-by: Eliza Weisman <eliza@buoyant.io>
34 lines
1.1 KiB
TOML
34 lines
1.1 KiB
TOML
[package]
|
|
name = "tracing-opentelemetry"
|
|
version = "0.8.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.8", default-features = false, features = ["trace"] }
|
|
rand = "0.7"
|
|
tracing = { path = "../tracing", version = "0.2" }
|
|
tracing-core = { path = "../tracing-core", version = "0.2" }
|
|
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3", default-features = false, features = ["registry"] }
|
|
tracing-log = { path = "../tracing-log", version = "0.2", default-features = false, optional = true }
|
|
|
|
[dev-dependencies]
|
|
opentelemetry-jaeger = "0.7"
|