Skip to content

Commit df9c4d2

Browse files
committed
chore: remove path deps on tracing crates
Currently, the `v0.1.x` branch's `Cargo.toml` contains path dependencies on `tracing`, `tracing-core`, `tracing-subscriber` and `tracing-log`, intended for locally testing changes to those crates against `tracing-opentelemetry`. These (obviously) only work when those crates are in the same repo as `tracing-opentelemetry`, and are breaking the build now that `tracing-opentelemetry` has moved to its own repo. This commit removes the path deps.
1 parent 4c3b120 commit df9c4d2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ metrics = ["opentelemetry/metrics"]
2626

2727
[dependencies]
2828
opentelemetry = { version = "0.17.0", default-features = false, features = ["trace"] }
29-
tracing = { path = "../tracing", version = "0.1.35", default-features = false, features = ["std"] }
30-
tracing-core = { path = "../tracing-core", version = "0.1.28" }
31-
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3.0", default-features = false, features = ["registry", "std"] }
32-
tracing-log = { path = "../tracing-log", version = "0.1.3", default-features = false, optional = true }
29+
tracing = { version = "0.1.35", default-features = false, features = ["std"] }
30+
tracing-core = "0.1.28"
31+
tracing-subscriber = { version = "0.3.0", default-features = false, features = ["registry", "std"] }
32+
tracing-log = { version = "0.1.3", default-features = false, optional = true }
3333
once_cell = "1.13.0"
3434

3535
# Fix minimal-versions

0 commit comments

Comments
 (0)