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

Fuwn 0c7e8118 4725b3ed

+7 -7
+1 -1
Cargo.toml
··· 2 2 3 3 [package] 4 4 name = "windmark" 5 - version = "0.1.13" 5 + version = "0.1.14" 6 6 authors = ["Fuwn <contact@fuwn.me>"] 7 7 edition = "2021" 8 8 description = "An elegant and highly performant async Gemini server framework"
+3 -3
README.md
··· 15 15 # Cargo.toml 16 16 17 17 [dependencies] 18 - windmark = "0.1.13" 18 + windmark = "0.1.14" 19 19 tokio = { version = "0.2.4", features = ["full"] } 20 20 21 21 # If you would like to use the built-in logger (recommended) 22 - # windmark = { version = "0.1.13", features = ["logger"] } 22 + # windmark = { version = "0.1.14", features = ["logger"] } 23 23 24 24 # If you would like to use the built-in MIME dedection when `Success`-ing a file 25 25 # (recommended) 26 - # windmark = { version = "0.1.13", features = ["auto-deduce-mime"] } 26 + # windmark = { version = "0.1.14", features = ["auto-deduce-mime"] } 27 27 ``` 28 28 29 29 ### Implement a Windmark server
+3 -3
src/lib.rs
··· 33 33 //! # Cargo.toml 34 34 //! 35 35 //! [dependencies] 36 - //! windmark = "0.1.13" 36 + //! windmark = "0.1.14" 37 37 //! tokio = { version = "0.2.4", features = ["full"] } 38 38 //! 39 39 //! # If you would like to use the built-in logger (recommended) 40 - //! # windmark = { version = "0.1.13", features = ["logger"] } 40 + //! # windmark = { version = "0.1.14", 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.1.13", features = ["auto-deduce-mime"] } 44 + //! # windmark = { version = "0.1.14", features = ["auto-deduce-mime"] } 45 45 //! ``` 46 46 //! 47 47 //! ### Implement a Windmark server