Skip to content
This repository has been archived by the owner on Jan 18, 2020. It is now read-only.

Release 0.12.0-alpha.3 #293

Merged
merged 2 commits into from
Sep 4, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "finchers"
version = "0.12.0-alpha.2" # don't forget to update html_root_url in lib.rs
version = "0.12.0-alpha.3" # don't forget to update html_root_url in lib.rs
description = "A combinator library for builidng asynchronous HTTP services"
authors = ["Yusuke Sasaki <yusuke.sasaki.nuem@gmail.com>"]
license = "MIT/Apache-2.0"
Expand Down Expand Up @@ -41,8 +41,8 @@ bytes = "0.4.9"
cookie = { version = "0.11.0", features = ["percent-encode"] }
failure = "0.1.2"
futures = "0.1.23"
futures-core-preview = { git = "https://github.com/rust-lang-nursery/futures-rs.git", branch = "master" }
futures-util-preview = { git = "https://github.com/rust-lang-nursery/futures-rs.git", branch = "master", features = ["tokio-compat"] }
futures-core-preview = { version = "0.3.0-alpha.5" }
futures-util-preview = { version = "0.3.0-alpha.5", features = ["tokio-compat"] }
http = "0.1.10"
hyper = "0.12.7"
hyperx = "0.13.1"
Expand Down
2 changes: 1 addition & 1 deletion examples/todos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ doc = false

[dependencies]
finchers = { path = "../.." }
futures-preview = { git = "https://github.com/rust-lang-nursery/futures-rs.git", branch = "master" }
futures-preview = { version = "0.3.0-alpha.5" }
serde = { version = "1.0", features = ["derive"] }
failure = "0.1"
http = "0.1.10"
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
//! ```

#![doc(
html_root_url = "https://docs.rs/finchers/0.12.0-alpha.2",
html_root_url = "https://docs.rs/finchers/0.12.0-alpha.3",
test(attr(feature(rust_2018_preview))),
)]
#![warn(
Expand Down