diff --git a/tracing-opentelemetry/Cargo.toml b/tracing-opentelemetry/Cargo.toml index 1781eb9..ee53821 100644 --- a/tracing-opentelemetry/Cargo.toml +++ b/tracing-opentelemetry/Cargo.toml @@ -23,17 +23,21 @@ rust-version = "1.46.0" default = ["tracing-log"] [dependencies] -opentelemetry = { version = "0.17", 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.3", default-features = false, features = ["registry", "std"] } -tracing-log = { path = "../tracing-log", version = "0.1", default-features = false, optional = true } +opentelemetry = { version = "0.17.0", default-features = false, features = ["trace"] } +tracing = { path = "../tracing", version = "0.1.35", default-features = false, features = ["std"] } +tracing-core = { path = "../tracing-core", version = "0.1.28" } +tracing-subscriber = { path = "../tracing-subscriber", version = "0.3.0", default-features = false, features = ["registry", "std"] } +tracing-log = { path = "../tracing-log", version = "0.1.3", default-features = false, optional = true } once_cell = "1" +# Fix minimal-versions +async-trait = { version = "0.1.56", optional = true } +thiserror = { version = "1.0.31", optional = true } + [dev-dependencies] -async-trait = "0.1" -criterion = { version = "0.3", default_features = false } -opentelemetry-jaeger = "0.16" +async-trait = "0.1.56" +criterion = { version = "0.3.6", default-features = false } +opentelemetry-jaeger = "0.16.0" [lib] bench = false