Skip to content

Commit df3d078

Browse files
committed
Fit the turborepo-otel crate into the workspace correctly
1 parent 5e7d1b2 commit df3d078

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

crates/turborepo-otel/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
[package]
22
name = "turborepo-otel"
33
version = "0.1.0"
4-
edition = "2024"
4+
edition = { workspace = true }
55
license = "MIT"
66

77
[dependencies]
8-
opentelemetry = { version = "0.23", features = ["metrics"] }
9-
opentelemetry-otlp = { version = "0.16", features = [
8+
opentelemetry = { version = "0.31", features = ["metrics"] }
9+
opentelemetry-otlp = { version = "0.31", features = [
1010
"grpc-tonic",
1111
"http-proto",
1212
"metrics",
1313
] }
14-
opentelemetry-semantic-conventions = "0.15"
15-
opentelemetry_sdk = { version = "0.23", features = ["rt-tokio", "metrics"] }
16-
serde = { version = "1", features = ["derive"], optional = true }
17-
serde_json = { version = "1", optional = true }
18-
thiserror = "1.0"
19-
tokio = { version = "1", features = ["rt", "macros", "sync"] }
20-
tonic = "0.11"
21-
tracing = "0.1"
14+
opentelemetry-semantic-conventions = "0.31"
15+
opentelemetry_sdk = { version = "0.31", features = ["rt-tokio", "metrics"] }
16+
serde = { workspace = true }
17+
serde_json = { workspace = true }
18+
tokio = { workspace = true, features = ["full"] }
19+
tonic = { workspace = true }
20+
tracing = { workspace = true }
21+
turborepo-errors = { workspace = true }
2222

2323
[features]
2424
default = []

0 commit comments

Comments
 (0)