Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Dapr Conversation Example with the Rust-SDK

This example uses the echo component to send a request and the component response will be the exact message received.

Step

Prepare

  • Dapr installed

Run Conversation Example

  1. To run the example we need to first build the examples using the following command:
cargo build --examples
  1. Run the example using the Dapr CLI
dapr run --app-id=conversation --resources-path ./config --dapr-grpc-port 50001 -- cargo run --example conversation-alpha2

Result

  - 'conversation input: hello world'
  - 'conversation output: hello world'