We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bbdb93 commit c7c0b71Copy full SHA for c7c0b71
README.md
@@ -10,6 +10,12 @@ Find binary releases at: https://github.com/Blockdaemon/solana-accountsdb-plugin
10
11
### Building from source
12
13
+#### Prerequisites
14
+
15
+You will need version 3.12 or later of the protobuf compiler `protoc` installed.
16
17
+#### Build
18
19
```shell
20
cargo build --release
21
```
build.rs
@@ -3,6 +3,7 @@ use std::io::Result;
3
fn main() -> Result<()> {
4
let mut config = prost_build::Config::new();
5
config.boxed(".blockdaemon.solana.accountsdb_plugin_kafka.types.MessageWrapper");
6
+ config.protoc_arg("--experimental_allow_proto3_optional");
7
config.compile_protos(&["proto/event.proto"], &["proto/"])?;
8
Ok(())
9
}
0 commit comments