Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumExplorer committed Oct 5, 2024
1 parent 79b1bcc commit 9eac193
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 15 deletions.
8 changes: 4 additions & 4 deletions abci/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
version = "1.2.0+1.3.0"
version = "1.2.1+1.3.0"
name = "tenderdash-abci"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
categories = ["cryptography::cryptocurrencies", "network-programming"]
keywords = ["abci", "blockchain", "bft", "consensus", "tendermint", "dash"]
keywords = ["abci", "blockchain", "consensus", "tendermint", "dash"]
repository = "https://github.com/dashpay/rs-tenderdash-abci/tree/main/abci"
documentation = "https://dashpay.github.io/rs-tenderdash-abci/tenderdash_abci/"

Expand Down Expand Up @@ -46,7 +46,7 @@ required-features = ["server"]
uuid = { version = "1.8.0", features = ["v4", "fast-rng"], optional = true }
tenderdash-proto = { path = "../proto", default-features = false }
bytes = { version = "1.6.0" }
prost = { version = "0.12.4" }
prost = { version = "0.13.3" }
tracing = { version = "0.1.40", default-features = false }
tracing-subscriber = { version = "0.3.18", optional = true, default-features = false, features = [
"ansi",
Expand Down Expand Up @@ -86,5 +86,5 @@ tokio = { version = "1.37.0", features = [
hex = { version = "0.4.3" }
lazy_static = { version = "1.4.0" }
# For tests of gRPC server
tonic = { version = "0.11.0" }
tonic = { version = "0.12.3" }
pollster = { version = "0.3.0" }
12 changes: 6 additions & 6 deletions proto-compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
version = "1.2.0+1.3.0"
version = "1.2.1+1.3.0"
name = "tenderdash-proto-compiler"
authors = ["Informal Systems <[email protected]>", "Dash Core Group"]
edition = "2021"
Expand All @@ -10,14 +10,14 @@ publish = false

[dependencies]
walkdir = { version = "2.5.0" }
prost-build = { version = "0.12.4" }
tempfile = { version = "3.10.1" }
regex = { "version" = "1.10.4" }
prost-build = { version = "0.13.3" }
tempfile = { version = "3.13.0" }
regex = { "version" = "1.11.0" }
# Use of native-tls-vendored should build vendored openssl, which is required for Alpine build
ureq = { "version" = "2.9.6" }
zip = { version = "2.1.3", default-features = false, features = ["deflate"] }
zip = { version = "2.2.0", default-features = false, features = ["deflate"] }
fs_extra = { version = "1.3.0" }
tonic-build = { version = "0.11.0", optional = true }
tonic-build = { version = "0.12.3", optional = true }


[features]
Expand Down
8 changes: 3 additions & 5 deletions proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
version = "1.2.0+1.3.0"
version = "1.2.1+1.3.0"
name = "tenderdash-proto"
edition = "2021"
license = "Apache-2.0"
Expand All @@ -10,8 +10,6 @@ categories = [
"cryptography",
"cryptography::cryptocurrencies",
"database",
"dash",
"tenderdash",
]
keywords = ["blockchain", "tenderdash", "proto"]

Expand Down Expand Up @@ -44,10 +42,10 @@ grpc = [
]

[dependencies]
prost = { version = "0.12.4", default-features = false, features = [
prost = { version = "0.13.3", default-features = false, features = [
"prost-derive",
] }
tonic = { version = "0.11.0", optional = true }
tonic = { version = "0.12.3", optional = true }
bytes = { version = "1.6.0", default-features = false, features = ["serde"] }
serde = { version = "1.0.197", default-features = false, features = ["derive"] }
subtle-encoding = { version = "0.5.1", default-features = false, features = [
Expand Down

0 comments on commit 9eac193

Please sign in to comment.