🏗️ Elegant & Highly Performant Async Gemini Server Framework for the Modern Age
async framework gemini-protocol protocol gemini rust
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs(cargo): bump self from 0.3.5 to 0.3.6

Fuwn 3214edbc fb110e3b

+5 -8
+1 -1
Cargo.toml
··· 2 2 3 3 [package] 4 4 name = "windmark" 5 - version = "0.3.5" 5 + version = "0.3.6" 6 6 authors = ["Fuwn <contact@fuwn.me>"] 7 7 edition = "2021" 8 8 description = "An elegant and highly performant async Gemini server framework"
+4 -7
README.md
··· 11 11 12 12 ## Usage 13 13 14 - Check out an example starter project 15 - [here](https://github.com/gemrest/windmark-starter-project)! 16 - 17 14 ### Add Windmark and Tokio as Dependencies 18 15 19 16 ```toml 20 17 # Cargo.toml 21 18 22 19 [dependencies] 23 - windmark = "0.3.5" 20 + windmark = "0.3.6" 24 21 tokio = { version = "1.26.0", features = ["full"] } 25 22 26 23 # If you would like to use the built-in logger (recommended) 27 - # windmark = { version = "0.3.5", features = ["logger"] } 24 + # windmark = { version = "0.3.6", features = ["logger"] } 28 25 29 26 # If you would like to use the built-in MIME dedection when `Success`-ing a file 30 27 # (recommended) 31 - # windmark = { version = "0.3.5", features = ["auto-deduce-mime"] } 28 + # windmark = { version = "0.3.6", features = ["auto-deduce-mime"] } 32 29 33 30 # If you would like to use macro-based responses (as seen below) 34 - # windmark = { version = "0.3.5", features = ["response-macros"] } 31 + # windmark = { version = "0.3.6", features = ["response-macros"] } 35 32 ``` 36 33 37 34 ### Implement a Windmark server