Adding action_dispatch library as a dependency

Run this command in a terminal, in your project's directory:

cargo add action_dispatch

To add it manually, edit your project's Cargo.toml file and add to the [dependencies] section:

action_dispatch = "0.1.0"

The action_dispatch library will be automatically available globally. Read the action_dispatch library documentation.

Back to the crate overview.