Skip to content

Commit

Permalink
fix: nostd proto not propagated from tenderdash-abci (#62)
Browse files Browse the repository at this point in the history
* fix: nostd proto not propagated from tenderdash-abci

* build: update ureq

* chore: bump version to "0.14.0-dev.12"
  • Loading branch information
lklimek committed Apr 9, 2024
1 parent 0b6b569 commit 17e57f5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions abci/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
version = "0.14.0-dev.11"
version = "0.14.0-dev.12"
name = "tenderdash-abci"
edition = "2021"
license = "Apache-2.0"
Expand All @@ -21,6 +21,7 @@ default = [
"unix",
"grpc",
"tracing-span",
"std",
]
# docker-tests includes integration tests that require docker to be available
docker-tests = ["server"]
Expand All @@ -30,8 +31,8 @@ server = [
"dep:tokio-util",
"dep:futures",
]

grpc = ["tenderdash-proto/grpc"]
std = ["tenderdash-proto/std"]
grpc = ["std", "tenderdash-proto/grpc"]
crypto = ["dep:lhash"]
tcp = ["server"]
unix = ["server"]
Expand All @@ -43,7 +44,7 @@ required-features = ["server"]

[dependencies]
uuid = { version = "1.4.1", features = ["v4", "fast-rng"], optional = true }
tenderdash-proto = { path = "../proto" }
tenderdash-proto = { path = "../proto", default-features = false }
bytes = { version = "1.0" }
prost = { version = "0.12" }
tracing = { version = "0.1", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions proto-compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
version = "0.14.0-dev.11"
version = "0.14.0-dev.12"
name = "tenderdash-proto-compiler"
authors = ["Informal Systems <hello@informal.systems>", "Dash Core Group"]
edition = "2021"
Expand All @@ -14,7 +14,7 @@ prost-build = { version = "0.12" }
tempfile = { version = "3.2.0" }
regex = { "version" = "1.7.1" }
# Use of native-tls-vendored should build vendored openssl, which is required for Alpine build
ureq = { "version" = "2.6.2" }
ureq = { "version" = "2.9.6" }
zip = { version = "0.6.4", default-features = false, features = ["deflate"] }
fs_extra = { version = "1.3.0" }
tonic-build = { version = "0.11.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
version = "0.14.0-dev.11"
version = "0.14.0-dev.12"
name = "tenderdash-proto"
edition = "2021"
license = "Apache-2.0"
Expand Down

0 comments on commit 17e57f5

Please sign in to comment.