diff options
| author | Fuwn <[email protected]> | 2025-04-08 11:01:24 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-04-08 11:01:24 +0000 |
| commit | 25e79d36bdaf94aa6f8eae32385d35fd324760ad (patch) | |
| tree | e5048c24b95968e9a132df0df79f301c3cc42f71 | |
| parent | refactor: Update Makefile.toml and source to follow new toolchain checks and ... (diff) | |
| download | windmark-25e79d36bdaf94aa6f8eae32385d35fd324760ad.tar.xz windmark-25e79d36bdaf94aa6f8eae32385d35fd324760ad.zip | |
docs(README): Update Windmark version in examples snippets
| -rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -33,18 +33,18 @@ out [Rossweisse](./rossweisse/) for more information! # Cargo.toml [dependencies] -windmark = "0.3.9" +windmark = "0.3.11" tokio = { version = "1.26.0", features = ["full"] } # If you would like to use the built-in logger (recommended) -# windmark = { version = "0.3.9", features = ["logger"] } +# windmark = { version = "0.3.11", features = ["logger"] } # If you would like to use the built-in MIME dedection when `Success`-ing a file # (recommended) -# windmark = { version = "0.3.9", features = ["auto-deduce-mime"] } +# windmark = { version = "0.3.11", features = ["auto-deduce-mime"] } # If you would like to use macro-based responses (as seen below) -# windmark = { version = "0.3.9", features = ["response-macros"] } +# windmark = { version = "0.3.11", features = ["response-macros"] } ``` ### Implementing a Windmark Server |