aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Galenson <jgalenson@google.com>2021-10-14 17:56:46 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2021-10-14 17:56:46 +0000
commit8f5f17e80d388ab5dd1dad325800f9fff84af67e (patch)
tree67c49dac64dfddbdda49b5da06c4ab6bb2961f35
parent8e89e53bd1f12fe5f8bec06bd46856042d5e6023 (diff)
parent985f70f1543e64e4ff79b823511d66ad7367b8d0 (diff)
downloadfutures-core-android-s-v2-preview-1.tar.gz
-rw-r--r--.cargo_vcs_info.json2
-rw-r--r--Android.bp4
-rw-r--r--Cargo.toml2
-rw-r--r--Cargo.toml.orig2
-rw-r--r--METADATA8
-rw-r--r--src/lib.rs4
6 files changed, 13 insertions, 9 deletions
diff --git a/.cargo_vcs_info.json b/.cargo_vcs_info.json
index 99dc8b0..ffd4f55 100644
--- a/.cargo_vcs_info.json
+++ b/.cargo_vcs_info.json
@@ -1,5 +1,5 @@
{
"git": {
- "sha1": "ab38fd29d3f84f8fc028fa7883e53dba423da0ee"
+ "sha1": "7caefa51304e78fd5018cd5d2a03f3b9089cc010"
}
}
diff --git a/Android.bp b/Android.bp
index c2ed620..580eee4 100644
--- a/Android.bp
+++ b/Android.bp
@@ -41,6 +41,8 @@ rust_defaults {
name: "futures-core_test_defaults",
crate_name: "futures_core",
srcs: ["src/lib.rs"],
+ cargo_env_compat: true,
+ cargo_pkg_version: "0.3.17",
test_suites: ["general-tests"],
auto_gen_config: true,
edition: "2018",
@@ -68,6 +70,8 @@ rust_library {
name: "libfutures_core",
host_supported: true,
crate_name: "futures_core",
+ cargo_env_compat: true,
+ cargo_pkg_version: "0.3.17",
srcs: ["src/lib.rs"],
edition: "2018",
features: [
diff --git a/Cargo.toml b/Cargo.toml
index 202ef6c..683786a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -12,7 +12,7 @@
[package]
edition = "2018"
name = "futures-core"
-version = "0.3.16"
+version = "0.3.17"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
description = "The core traits and types in for the `futures` library.\n"
homepage = "https://rust-lang.github.io/futures-rs"
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 6c1b5e7..29134f2 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,7 +1,7 @@
[package]
name = "futures-core"
edition = "2018"
-version = "0.3.16"
+version = "0.3.17"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
diff --git a/METADATA b/METADATA
index 46ca8cc..dcebdb0 100644
--- a/METADATA
+++ b/METADATA
@@ -7,13 +7,13 @@ third_party {
}
url {
type: ARCHIVE
- value: "https://static.crates.io/crates/futures-core/futures-core-0.3.16.crate"
+ value: "https://static.crates.io/crates/futures-core/futures-core-0.3.17.crate"
}
- version: "0.3.16"
+ version: "0.3.17"
license_type: NOTICE
last_upgrade_date {
year: 2021
- month: 8
- day: 9
+ month: 9
+ day: 22
}
}
diff --git a/src/lib.rs b/src/lib.rs
index 3566606..9c31d8d 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -16,11 +16,11 @@
extern crate alloc;
pub mod future;
-#[doc(hidden)]
+#[doc(no_inline)]
pub use self::future::{FusedFuture, Future, TryFuture};
pub mod stream;
-#[doc(hidden)]
+#[doc(no_inline)]
pub use self::stream::{FusedStream, Stream, TryStream};
#[macro_use]