Section II - manifest
Let's begin by declaring a new executable for the service that will act as the genesis service. We will do this by adding a [[bin]]
section to our Cargo.toml
manifest file.
[[bin]]
name = "myapp_genesis"
path = "src/bin/genesis.rs"
Next, we need to include the dependent crates into the project. Add the following lines to the [dependencies]
section in the Cargo.toml
file
rusoto_core = "0.47"
kafka = "0.8"
Last updated
Was this helpful?