Misc repo setup (#7)

This commit is contained in:
David Pedersen
2021-06-12 20:18:21 +02:00
committed by GitHub
parent c91dc7ce29
commit 002e3f92b3
13 changed files with 579 additions and 462 deletions
+17 -2
View File
@@ -1,8 +1,16 @@
[package]
name = "tower-web"
version = "0.1.0"
authors = ["David Pedersen <[email protected]>"]
categories = []
description = "Web framework that focuses on ergonomics and modularity"
documentation = "https://docs.rs/tower-http/0.1.0"
edition = "2018"
homepage = "https://github.com/davidpdrsn/tower-web"
keywords = ["http", "web", "framework"]
license = "MIT"
name = "tower-web"
readme = "README.md"
repository = "https://github.com/davidpdrsn/tower-web"
version = "0.1.0"
[dependencies]
async-trait = "0.1"
@@ -41,3 +49,10 @@ features = [
"redirect",
"trace",
]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[package.metadata.playground]
features = ["ws"]