⚠ Work in Progress ⚠
Dapr is a portable, event-driven, serverless runtime for building distributed applications across cloud and edge.
toml
[dependencies]
dapr = "0.12.0"
A client can be created as follows:
```rust use dapr;
async fn main() -> Result<(), Box
// Create the client
let mut client = dapr::Client::<dapr::client::TonicClient>::connect(addr).await?;
```
To build
bash
cargo build
Note: The proto buf client generation is built into
cargo build
process so updating the proto files underdapr/
is enough to update the proto buf client.
bash
./update-protos.sh -v v1.10.1