aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-03-27 07:27:09 +0000
committerFuwn <[email protected]>2022-03-27 07:27:09 +0000
commit707ca6026e530157a62776efbffb24afc71309c6 (patch)
treeb0a6805510f01da38f57c7ec3d6c17cbfc299c15
parentdocs: extend (diff)
downloadwindmark-707ca6026e530157a62776efbffb24afc71309c6.tar.xz
windmark-707ca6026e530157a62776efbffb24afc71309c6.zip
docs: add missing dependency
-rw-r--r--README.md1
-rw-r--r--src/lib.rs1
2 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index 9d6be5c..5d993d9 100644
--- a/README.md
+++ b/README.md
@@ -15,6 +15,7 @@ Windmark is an elegant and highly performant, async Gemini server framework.
[dependencies]
windmark = "0.1.2"
+tokio = { version = "0.2.4", features = ["full"] }
# If you would like to use the built-in logger (recommended)
# windmark = { version = "0.1.2", features = ["logger"] }
diff --git a/src/lib.rs b/src/lib.rs
index 0c6ebf7..0d2b229 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -33,6 +33,7 @@
//!
//! [dependencies]
//! windmark = "0.1.2"
+//! tokio = { version = "0.2.4", features = ["full"] }
//!
//! # If you would like to use the built-in logger (recommended)
//! # windmark = { version = "0.1.2", features = ["logger"] }