🏗️ 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 windmark and rossweisse for prelude

Fuwn e60e8801 c6ee82a5

+7 -7
+2 -2
Cargo.toml
··· 5 5 6 6 [package] 7 7 name = "windmark" 8 - version = "0.3.8" 8 + version = "0.3.9" 9 9 authors = ["Fuwn <contact@fuwn.me>"] 10 10 edition = "2021" 11 11 description = "An elegant and highly performant async Gemini server framework" ··· 51 51 paste = "1.0.12" # Token Pasting 52 52 53 53 [dev-dependencies] 54 - rossweisse = { version = "0.0.1", path = "./rossweisse" } 54 + rossweisse = { version = "0.0.2", path = "./rossweisse" }
+4 -4
README.md
··· 33 33 # Cargo.toml 34 34 35 35 [dependencies] 36 - windmark = "0.3.8" 36 + windmark = "0.3.9" 37 37 tokio = { version = "1.26.0", features = ["full"] } 38 38 39 39 # If you would like to use the built-in logger (recommended) 40 - # windmark = { version = "0.3.8", features = ["logger"] } 40 + # windmark = { version = "0.3.9", features = ["logger"] } 41 41 42 42 # If you would like to use the built-in MIME dedection when `Success`-ing a file 43 43 # (recommended) 44 - # windmark = { version = "0.3.8", features = ["auto-deduce-mime"] } 44 + # windmark = { version = "0.3.9", features = ["auto-deduce-mime"] } 45 45 46 46 # If you would like to use macro-based responses (as seen below) 47 - # windmark = { version = "0.3.8", features = ["response-macros"] } 47 + # windmark = { version = "0.3.9", features = ["response-macros"] } 48 48 ``` 49 49 50 50 ### Implement a Windmark server
+1 -1
rossweisse/Cargo.toml
··· 2 2 3 3 [package] 4 4 name = "rossweisse" 5 - version = "0.0.1" 5 + version = "0.0.2" 6 6 authors = ["Fuwn <contact@fuwn.me>"] 7 7 edition = "2021" 8 8 description = "`struct`-based Router Framework for Windmark"