@@ -9,7 +9,7 @@ repository = "https://github.com/grafana/grafana-plugin-sdk-rust"
99description = " SDK for building Grafana backend plugins."
1010
1111[dependencies ]
12- arrow = { version = " 55.0 .0" , default-features = false , features = [" ipc" ] }
12+ arrow = { version = " 56.2 .0" , default-features = false , features = [" ipc" ] }
1313cfg-if = " 1.0.0"
1414chrono = " 0.4.26"
1515futures-core = " 0.3.28"
@@ -18,7 +18,7 @@ grafana-plugin-sdk-macros = { version = "0.5.0", path = "../grafana-plugin-sdk-m
1818http = " 1.0.0"
1919itertools = " 0.14.0"
2020num-traits = " 0.2.15"
21- prost = " 0.13.2 "
21+ prost = " 0.14.1 "
2222reqwest_lib = { package = " reqwest" , version = " 0.12.7" , optional = true }
2323serde = { version = " 1.0.164" , features = [" derive" ] }
2424serde_json = { version = " 1.0.96" , features = [" float_roundtrip" , " raw_value" ] }
@@ -27,8 +27,9 @@ thiserror = "2.0.11"
2727time = { version = " 0.3.22" , features = [" formatting" , " macros" ] }
2828tokio = { version = " 1.28.2" , features = [" rt-multi-thread" ] }
2929tokio-stream = { version = " 0.1.14" , features = [" net" ] }
30- tonic = " 0.13.0"
31- tonic-health = " 0.13.0"
30+ tonic = " 0.14.2"
31+ tonic-health = " 0.14.2"
32+ tonic-prost = " 0.14.2"
3233tracing = " 0.1.37"
3334tracing-core = " 0.1.31"
3435tracing-log = " 0.2.0"
@@ -50,8 +51,7 @@ tokio = { version = "1.28.2", features = ["rt-multi-thread"] }
5051tokio-stream = " 0.1.14"
5152
5253[build-dependencies ]
53- prost-build = { version = " 0.13.2" , optional = true }
54- tonic-build = { version = " 0.13.0" , optional = true }
54+ tonic-prost-build = { version = " 0.14.2" , optional = true }
5555
5656# docs.rs-specific configuration
5757[package .metadata .docs .rs ]
@@ -66,4 +66,4 @@ reqwest = ["reqwest_lib"]
6666# because it requires protoc. The generated code is instead checked in to source
6767# control. To regenerate code in the case of updated .proto definitions, build
6868# with this feature enabled.
69- gen-proto = [" dep:tonic-build " , " dep: prost-build" ]
69+ gen-proto = [" dep:tonic-prost-build" ]
0 commit comments