diff options
| author | Fuwn <[email protected]> | 2023-03-31 23:55:20 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-03-31 23:55:20 +0000 |
| commit | b4138de0d753eba7d11bb41e45edd42c4784c7c4 (patch) | |
| tree | 3358e7db7f4287bcc7bc2e8deeb22e94bfeaffae /README.md | |
| parent | fix(cargo): response-macros feature flag (diff) | |
| download | windmark-0.2.5.tar.xz windmark-0.2.5.zip | |
feat(router): expose response to post-route callbackv0.2.5
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -18,18 +18,18 @@ Check out an example starter project # Cargo.toml [dependencies] -windmark = "0.2.4" +windmark = "0.2.5" tokio = { version = "0.2.4", features = ["full"] } # If you would like to use the built-in logger (recommended) -# windmark = { version = "0.2.4", features = ["logger"] } +# windmark = { version = "0.2.5", features = ["logger"] } # If you would like to use the built-in MIME dedection when `Success`-ing a file # (recommended) -# windmark = { version = "0.2.4", features = ["auto-deduce-mime"] } +# windmark = { version = "0.2.5", features = ["auto-deduce-mime"] } # If you would like to use macro-based responses (as seen below) -# windmark = { version = "0.2.4", features = ["response-macros"] } +# windmark = { version = "0.2.5", features = ["response-macros"] } ``` ### Implement a Windmark server |