Skip to content

Commit 10af282

Browse files
committed
chore(deps): remove minor constraint when major > 1
1 parent 4a51599 commit 10af282

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ assert2 = "0.3"
2626
axum = { version = "0.8", default-features = false }
2727
http = "^1"
2828
hyper = "1"
29-
insta = { version = "1", features = ["yaml", "redactions"] }
29+
insta = { version = "1", features = ["redactions", "yaml"] }
3030
opentelemetry = { version = "0.28", features = [
3131
"trace",
3232
], default-features = false }

axum-tracing-opentelemetry/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ opentelemetry-otlp = { workspace = true, features = [
4545
] }
4646
opentelemetry-proto = { workspace = true, features = ["gen-tonic"] }
4747
rstest = { workspace = true }
48-
serde = { version = "1.0.136", features = ["derive"] }
49-
serde_json = "1.0.79"
48+
serde = { version = "1", features = ["derive"] }
49+
serde_json = "1"
5050
tokio = { workspace = true, features = ["full"] }
5151
tokio-stream = { workspace = true, features = ["net"] }
5252
tracing-subscriber = { version = "0.3", default-features = false, features = [

fake-opentelemetry-collector/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ opentelemetry_sdk = { workspace = true, features = [
3030
"rt-tokio",
3131
"testing",
3232
] }
33-
serde = { version = "1.0", features = ["derive"] }
33+
serde = { version = "1", features = ["derive"] }
3434
tokio = { workspace = true, features = ["full"] }
3535
tokio-stream = { workspace = true, features = ["net"] }
3636
tonic = { workspace = true }

init-tracing-opentelemetry/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ opentelemetry-stdout = { workspace = true, features = [
2626
opentelemetry-semantic-conventions = { workspace = true, optional = true }
2727
opentelemetry-zipkin = { workspace = true, features = [], optional = true }
2828
opentelemetry_sdk = { workspace = true }
29-
thiserror = "1.0"
29+
thiserror = "2"
3030
tonic = { workspace = true, optional = true, features = ["tls"] }
3131
tracing = { workspace = true }
3232
tracing-logfmt = { version = "0.3", optional = true }
@@ -47,9 +47,9 @@ opentelemetry_sdk = { workspace = true, features = [
4747
"rt-tokio",
4848
"testing",
4949
] }
50-
serde = { version = "1.0.136", features = ["derive"] }
51-
serde_json = "1.0.79"
52-
tokio-stream = { version = "0.1", features = ["net"] }
50+
serde = { version = "1", features = ["derive"] }
51+
serde_json = "1"
52+
tokio-stream = { version = "0.1" }
5353
tracing-opentelemetry-instrumentation-sdk = { path = "../tracing-opentelemetry-instrumentation-sdk" }
5454
tracing-subscriber = { version = "0.3", default-features = false, features = [
5555
"env-filter",

testing-tracing-opentelemetry/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ fake-opentelemetry-collector = { path = "../fake-opentelemetry-collector", versi
1818
insta = { workspace = true }
1919
opentelemetry = { workspace = true }
2020
opentelemetry_sdk = { workspace = true }
21-
serde_json = "1.0.79"
21+
serde_json = "1"
2222
tracing = { workspace = true }
2323
tracing-opentelemetry = { workspace = true }
2424
tracing-subscriber = { version = "0.3", default-features = false, features = [

tonic-tracing-opentelemetry/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ license.workspace = true
1919
futures-core = "0.3"
2020
futures-util = { version = "0.3", default-features = false, features = [] }
2121
http = { workspace = true }
22-
http-body = "1.0"
22+
http-body = "1"
2323
hyper = { workspace = true }
2424
opentelemetry = { workspace = true }
2525
pin-project-lite = "0.2"
@@ -44,8 +44,8 @@ opentelemetry-otlp = { workspace = true, features = [
4444
] }
4545
opentelemetry-proto = { workspace = true, features = ["gen-tonic"] }
4646
rstest = { workspace = true }
47-
serde = { version = "1.0.136", features = ["derive"] }
48-
serde_json = "1.0.79"
47+
serde = { version = "1", features = ["derive"] }
48+
serde_json = "1"
4949
tokio = { workspace = true, features = ["full"] }
5050
tracing-subscriber = { version = "0.3", default-features = false, features = [
5151
"env-filter",

0 commit comments

Comments
 (0)