diff --git a/Cargo.toml b/Cargo.toml
index f3447cd5..2c5936b7 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -57,7 +57,7 @@ viz-macros = { version = "0.2.0", path = "viz-macros" }
viz-test = { version = "0.2.0", path = "viz-test" }
viz-tower = { version = "0.1.0", path = "viz-tower" }
-viz-smol = { version = "0.1.0", path = "viz-smol" }
+viz-smol = { version = "0.1.1", path = "viz-smol" }
anyhow = "1.0"
async-trait = "0.1"
diff --git a/viz-smol/Cargo.toml b/viz-smol/Cargo.toml
index ebb7408e..56e1ce05 100644
--- a/viz-smol/Cargo.toml
+++ b/viz-smol/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "viz-smol"
-version = "0.1.0"
+version = "0.1.1"
documentation = "https://docs.rs/viz-smol"
description = "An adapter for smol runtime"
readme = "README.md"
diff --git a/viz-smol/README.md b/viz-smol/README.md
new file mode 100644
index 00000000..8b48fe06
--- /dev/null
+++ b/viz-smol/README.md
@@ -0,0 +1,97 @@
+
+
+
+
+
+
+
+
Fast, robust, flexible, lightweight web framework for Rust
+
+
+
+
+
+ 
+
+
+ 
+
+
+ 
+
+
+ 
+
+
+ 
+
+
+ 
+
+
+## Features
+
+- **Safety** `#![forbid(unsafe_code)]`
+
+- Lightweight
+
+- Robust `Routing`
+
+- Handy `Extractors`
+
+- Simple + Flexible `Handler` & `Middleware`
+
+- Supports Tower `Service`
+
+## Hello Viz
+
+```rust
+use std::io;
+use std::sync::Arc;
+
+use async_net::TcpListener;
+use macro_rules_attribute::apply;
+use viz_smol::{IntoResponse, Request, Response, Result, Router};
+
+async fn index(_: Request) -> Result {
+ Ok("Hello, World!
".into_response())
+}
+
+#[apply(smol_macros::main!)]
+async fn main(ex: &Arc>) -> io::Result<()> {
+ // Build our application with a route.
+ let app = Router::new().get("/", index);
+
+ // Create a `smol`-based TCP listener.
+ let listener = TcpListener::bind(("127.0.0.1", 3000)).await.unwrap();
+ println!("listening on {}", listener.local_addr().unwrap());
+
+ // Run it
+ viz_smol::serve(ex.clone(), listener, app).await
+}
+```
+
+More examples can be found
+[here](https://github.com/viz-rs/viz/tree/main/examples).
+
+## Get started
+
+Open [Viz.rs](https://viz.rs), select language or version.
+
+## License
+
+This project is licensed under the [MIT license](LICENSE).
+
+## Author
+
+- [@fundon@fosstodon.org](https://fosstodon.org/@fundon)
+
+- [@\_fundon](https://twitter.com/_fundon)