Skip to content

Commit

Permalink
release roa-tokio v0.5.1
Browse files Browse the repository at this point in the history
Signed-off-by: hexilee <i@hexilee.me>
  • Loading branch information
Hexilee committed Mar 29, 2021
1 parent d939a78 commit 892ce23
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 15 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
# Cargo.toml

[dependencies]
roa = "0.5.0"
async-std = { version = "1.5", features = ["attributes"] }
roa = "0.5"
async-std = { version = "1.6", features = ["attributes"] }
```

```rust,no_run
Expand Down
28 changes: 15 additions & 13 deletions roa-tokio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,33 +1,35 @@
[package]
name = "roa-tokio"
version = "0.5.0"
authors = ["Hexilee <i@hexilee.me>"]
categories = [
"network-programming",
"asynchronous",
"web-programming::http-server",
]
description = "tokio-based runtime and acceptor"
documentation = "https://docs.rs/roa-tokio"
edition = "2018"
homepage = "https://github.com/Hexilee/roa/wiki"
keywords = ["http", "web", "framework", "async"]
license = "MIT"
name = "roa-tokio"
readme = "./README.md"
repository = "https://github.com/Hexilee/roa"
documentation = "https://docs.rs/roa-tokio"
homepage = "https://github.com/Hexilee/roa/wiki"
description = "tokio-based runtime and acceptor"
keywords = ["http", "web", "framework", "async"]
categories = ["network-programming", "asynchronous",
"web-programming::http-server"]
version = "0.5.1"

[package.metadata.docs.rs]
features = ["docs"]
rustdoc-args = ["--cfg", "feature=\"docs\""]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tokio = { version = "0.2", features = ["full"] }
roa = { path = "../roa", version = "0.5", default-features = false }
log = "0.4"
futures = "0.3"
log = "0.4"
roa = {path = "../roa", version = "0.5", default-features = false}
tokio = {version = "0.2", features = ["full"]}

[dev-dependencies]
roa = { path = "../roa", version = "0.5" }
reqwest = "0.10"
roa = {path = "../roa", version = "0.5"}

[features]
docs = ["roa/docs"]

0 comments on commit 892ce23

Please sign in to comment.