Skip to content

Commit

Permalink
fix: missing prost-derive feature in proto
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Oct 9, 2023
1 parent ffe7c82 commit 65fe24b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ description = """
all-features = true

[dependencies]
prost = { version = "0.12", default-features = false }
prost = { version = "0.12", default-features = false, features = [
"prost-derive",
] }
bytes = { version = "1.0", default-features = false, features = ["serde"] }
serde = { version = "1.0", default-features = false, features = ["derive"] }
subtle-encoding = { version = "0.5", default-features = false, features = [
Expand Down

0 comments on commit 65fe24b

Please sign in to comment.