🏗️ 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.

chore: Bump version patch to v0.4.2

Fuwn ffa5d637 43fb2c61

+5 -5
+1 -1
Cargo.toml
··· 5 5 6 6 [package] 7 7 name = "windmark" 8 - version = "0.4.1" 8 + version = "0.4.2" 9 9 authors = ["Fuwn <contact@fuwn.me>"] 10 10 edition = "2021" 11 11 description = "An elegant and highly performant async Gemini server framework"
+4 -4
README.md
··· 34 34 # Cargo.toml 35 35 36 36 [dependencies] 37 - windmark = "0.4.1" 37 + windmark = "0.4.2" 38 38 tokio = { version = "1.26.0", features = ["full"] } 39 39 40 40 # If you would like to use the built-in logger (recommended) 41 - # windmark = { version = "0.4.1", features = ["logger"] } 41 + # windmark = { version = "0.4.2", features = ["logger"] } 42 42 43 43 # If you would like to use the built-in MIME deduction when `Success`-ing a file 44 44 # (recommended) 45 - # windmark = { version = "0.4.1", features = ["auto-deduce-mime"] } 45 + # windmark = { version = "0.4.2", features = ["auto-deduce-mime"] } 46 46 47 47 # If you would like to use macro-based responses (as seen below) 48 - # windmark = { version = "0.4.1", features = ["response-macros"] } 48 + # windmark = { version = "0.4.2", features = ["response-macros"] } 49 49 ``` 50 50 51 51 ### Implementing a Windmark Server