Skip to content

Commit

Permalink
fix: nostd proto not propagated from tenderdash-abci
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Apr 9, 2024
1 parent 0b6b569 commit 24abe90
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions abci/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 24abe90

Please sign in to comment.