Skip to content

Commit 5bcf1bd

Browse files
Bump the rust-dependencies group with 4 updates (#120)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ben Sully <[email protected]>
1 parent e510c47 commit 5bcf1bd

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

Diff for: CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3030
APIs for working with arrow arrays differs between the two crates.
3131
Users who are just using the simple `Field::set_values` method or the various
3232
`IntoField` / `IntoOptField` traits should not be affected.
33+
- Bump itertools dependency to 0.14.0
34+
- Bump thiserror dependency to 2.0.11
35+
- Bump tracing-serde dependency to 0.2.0
3336

3437
## [0.5.0] - 2024-09-17
3538

Diff for: crates/grafana-plugin-sdk-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ syn = { version = "2.0.18", features = ["full"] }
2020
grafana-plugin-sdk = { path = "../grafana-plugin-sdk" }
2121
http = "1.0.0"
2222
serde = { version = "1.0.164", features = ["derive"] }
23-
thiserror = "1.0.40"
23+
thiserror = "2.0.11"
2424
tokio = { version = "1.28.2", features = ["rt-multi-thread"] }
2525
trybuild = "1.0.80"
2626

Diff for: crates/grafana-plugin-sdk/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@ repository = "https://github.com/grafana/grafana-plugin-sdk-rust"
99
description = "SDK for building Grafana backend plugins."
1010

1111
[dependencies]
12-
arrow = { version = "53.0.0", default-features = false, features = ["ipc"] }
12+
arrow = { version = "54.2.0", default-features = false, features = ["ipc"] }
1313
cfg-if = "1.0.0"
1414
chrono = "0.4.26"
1515
futures-core = "0.3.28"
1616
futures-util = "0.3.28"
1717
grafana-plugin-sdk-macros = { version = "0.5.0", path = "../grafana-plugin-sdk-macros" }
1818
http = "1.0.0"
19-
itertools = "0.13.0"
19+
itertools = "0.14.0"
2020
num-traits = "0.2.15"
2121
prost = "0.13.2"
2222
reqwest_lib = { package = "reqwest", version = "0.12.7", optional = true }
2323
serde = { version = "1.0.164", features = ["derive"] }
2424
serde_json = { version = "1.0.96", features = ["float_roundtrip", "raw_value"] }
2525
serde_with = "3.0.0"
26-
thiserror = "1.0.40"
26+
thiserror = "2.0.11"
2727
time = { version = "0.3.22", features = ["formatting", "macros"] }
2828
tokio = { version = "1.28.2", features = ["rt-multi-thread"] }
2929
tokio-stream = { version = "0.1.14", features = ["net"] }
@@ -32,7 +32,7 @@ tonic-health = "0.12.2"
3232
tracing = "0.1.37"
3333
tracing-core = "0.1.31"
3434
tracing-log = "0.2.0"
35-
tracing-serde = "0.1.3"
35+
tracing-serde = "0.2.0"
3636
tracing-subscriber = { version = "0.3.17", features = [
3737
"env-filter",
3838
"json",

0 commit comments

Comments
 (0)