aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-05-05 02:01:56 +0000
committerFuwn <[email protected]>2023-05-05 02:01:56 +0000
commite60e88012e0ba1d5827ed29645513b18c46509f3 (patch)
treefc9355a859b517fa3cfcec9f55891ebb47cc4093
parentdocs(readme): add feature flag table (diff)
downloadwindmark-e60e88012e0ba1d5827ed29645513b18c46509f3.tar.xz
windmark-e60e88012e0ba1d5827ed29645513b18c46509f3.zip
docs(cargo): bump windmark and rossweisse for prelude
-rw-r--r--Cargo.toml4
-rw-r--r--README.md8
-rw-r--r--rossweisse/Cargo.toml2
3 files changed, 7 insertions, 7 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 47cf169..ddb773c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,7 +5,7 @@ members = ["rossweisse"]
[package]
name = "windmark"
-version = "0.3.8"
+version = "0.3.9"
authors = ["Fuwn <[email protected]>"]
edition = "2021"
description = "An elegant and highly performant async Gemini server framework"
@@ -51,4 +51,4 @@ tree_magic = { version = "0.2.3", optional = true } # MIME
paste = "1.0.12" # Token Pasting
[dev-dependencies]
-rossweisse = { version = "0.0.1", path = "./rossweisse" }
+rossweisse = { version = "0.0.2", path = "./rossweisse" }
diff --git a/README.md b/README.md
index fd358ff..7466075 100644
--- a/README.md
+++ b/README.md
@@ -33,18 +33,18 @@ out [Rossweisse](./rossweisse/) for more information!
# Cargo.toml
[dependencies]
-windmark = "0.3.8"
+windmark = "0.3.9"
tokio = { version = "1.26.0", features = ["full"] }
# If you would like to use the built-in logger (recommended)
-# windmark = { version = "0.3.8", features = ["logger"] }
+# windmark = { version = "0.3.9", features = ["logger"] }
# If you would like to use the built-in MIME dedection when `Success`-ing a file
# (recommended)
-# windmark = { version = "0.3.8", features = ["auto-deduce-mime"] }
+# windmark = { version = "0.3.9", features = ["auto-deduce-mime"] }
# If you would like to use macro-based responses (as seen below)
-# windmark = { version = "0.3.8", features = ["response-macros"] }
+# windmark = { version = "0.3.9", features = ["response-macros"] }
```
### Implement a Windmark server
diff --git a/rossweisse/Cargo.toml b/rossweisse/Cargo.toml
index c1a941b..d30de3a 100644
--- a/rossweisse/Cargo.toml
+++ b/rossweisse/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "rossweisse"
-version = "0.0.1"
+version = "0.0.2"
authors = ["Fuwn <[email protected]>"]
edition = "2021"
description = "`struct`-based Router Framework for Windmark"