Skip to content

Commit d7d1489

Browse files
nepetcdecker
authored andcommitted
gl-client-py: Upgrade tonic and prost
We need to upgrade those to match with the rest of the project. Signed-off-by: Peter Neuroth <[email protected]>
1 parent 18f82b8 commit d7d1489

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

libs/gl-client-py/Cargo.toml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22
name = "gl-client-py"
33
version = "0.3.0"
44
edition = "2018"
5-
authors = [
6-
"Christian Decker",
7-
"The Greenlight Team"
8-
]
5+
authors = ["Christian Decker", "The Greenlight Team"]
96
description = "Python bindings for the Greenlight client library."
107
repository = "https://github.com/Blockstream/greenlight"
118
license = "MIT"
@@ -18,15 +15,21 @@ crate-type = ["cdylib"]
1815
anyhow = { workspace = true }
1916
bytes = "1.6"
2017
env_logger = { workspace = true }
21-
gl-client = { path = "../gl-client", default-features = false, features = [ "export" ] }
18+
gl-client = { path = "../gl-client", default-features = false, features = [
19+
"export",
20+
] }
2221
hex = "*"
2322
log = "*"
2423
once_cell = "*"
25-
prost = "0.11"
26-
pyo3 = {version = "0.18", features = ["extension-module", "serde", "abi3-py37"]}
24+
prost = "0.12"
25+
pyo3 = { version = "0.18", features = [
26+
"extension-module",
27+
"serde",
28+
"abi3-py37",
29+
] }
2730
runeauth = "0.1"
2831
tokio = { version = "1", features = ["full"] }
29-
tonic = { version = "^0.8", features = ["tls", "transport"] }
32+
tonic = { version = "0.11", features = ["tls", "transport"] }
3033
serde_json = "^1.0"
3134
thiserror = "1"
3235

0 commit comments

Comments
 (0)