aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2020-05-08 19:25:51 -0700
committerHaibo Huang <hhb@google.com>2020-05-08 19:25:51 -0700
commit40feb9526dcc0e50544db66dce455a30e52c13c5 (patch)
tree47cac41edf46d66689dd826c539c5bcdf2526d6e
parent7562ee553dc6d81244d764aa6cfd4e682e522025 (diff)
downloadfutures-sink-40feb9526dcc0e50544db66dce455a30e52c13c5.tar.gz
Upgrade rust/crates/futures-sink to 0.3.5
Test: None Change-Id: If65a7dd1adb2998dabdf099880865edc37e0f875
-rw-r--r--Cargo.toml4
-rw-r--r--Cargo.toml.orig4
-rw-r--r--METADATA12
-rw-r--r--src/lib.rs2
4 files changed, 12 insertions, 10 deletions
diff --git a/Cargo.toml b/Cargo.toml
index e470900..58aef7c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -13,11 +13,11 @@
[package]
edition = "2018"
name = "futures-sink"
-version = "0.3.4"
+version = "0.3.5"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
description = "The asynchronous `Sink` trait for the futures-rs library.\n"
homepage = "https://rust-lang.github.io/futures-rs"
-documentation = "https://docs.rs/futures-sink/0.3.0"
+documentation = "https://docs.rs/futures-sink/0.3.5"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
[package.metadata.docs.rs]
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index fadb6b0..3fc7733 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,12 +1,12 @@
[package]
name = "futures-sink"
edition = "2018"
-version = "0.3.4"
+version = "0.3.5"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
homepage = "https://rust-lang.github.io/futures-rs"
-documentation = "https://docs.rs/futures-sink/0.3.0"
+documentation = "https://docs.rs/futures-sink/0.3.5"
description = """
The asynchronous `Sink` trait for the futures-rs library.
"""
diff --git a/METADATA b/METADATA
index 9710590..fd37a45 100644
--- a/METADATA
+++ b/METADATA
@@ -1,7 +1,5 @@
name: "futures-sink"
-description:
- "The asynchronous `Sink` trait for the futures-rs library."
-
+description: "The asynchronous `Sink` trait for the futures-rs library."
third_party {
url {
type: HOMEPAGE
@@ -11,7 +9,11 @@ third_party {
type: GIT
value: "https://github.com/rust-lang/futures-rs"
}
- version: "0.3.4"
- last_upgrade_date { year: 2020 month: 3 day: 17 }
+ version: "0.3.5"
license_type: NOTICE
+ last_upgrade_date {
+ year: 2020
+ month: 5
+ day: 8
+ }
}
diff --git a/src/lib.rs b/src/lib.rs
index fea98fa..9308af4 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -11,7 +11,7 @@
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
-#![doc(html_root_url = "https://docs.rs/futures-sink/0.3.0")]
+#![doc(html_root_url = "https://docs.rs/futures-sink/0.3.5")]
#[cfg(feature = "alloc")]
extern crate alloc;