From eeae63413b2cfbe84b1a8bf2b33b7a227928db39 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Tue, 23 Nov 2021 08:53:51 +0900 Subject: [PATCH] Remove doc URL from Cargo.toml https://doc.rust-lang.org/cargo/reference/manifest.html#the-documentation-field > If no URL is specified in the manifest file, crates.io will > automatically link your crate to the corresponding docs.rs page. --- futures-channel/Cargo.toml | 1 - futures-core/Cargo.toml | 1 - futures-executor/Cargo.toml | 1 - futures-io/Cargo.toml | 1 - futures-macro/Cargo.toml | 1 - futures-sink/Cargo.toml | 1 - futures-task/Cargo.toml | 1 - futures-test/Cargo.toml | 1 - futures-util/Cargo.toml | 1 - futures/Cargo.toml | 1 - 10 files changed, 10 deletions(-) diff --git a/futures-channel/Cargo.toml b/futures-channel/Cargo.toml index 6bd240cacf..91c3b71590 100644 --- a/futures-channel/Cargo.toml +++ b/futures-channel/Cargo.toml @@ -6,7 +6,6 @@ authors = ["Alex Crichton "] 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-channel/0.3" description = """ Channels for asynchronous communication using futures-rs. """ diff --git a/futures-core/Cargo.toml b/futures-core/Cargo.toml index 29134f2954..485fb02551 100644 --- a/futures-core/Cargo.toml +++ b/futures-core/Cargo.toml @@ -6,7 +6,6 @@ authors = ["Alex Crichton "] 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-core/0.3" description = """ The core traits and types in for the `futures` library. """ diff --git a/futures-executor/Cargo.toml b/futures-executor/Cargo.toml index 6d6f71bded..359576f101 100644 --- a/futures-executor/Cargo.toml +++ b/futures-executor/Cargo.toml @@ -6,7 +6,6 @@ authors = ["Alex Crichton "] 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-executor/0.3" description = """ Executors for asynchronous tasks based on the futures-rs library. """ diff --git a/futures-io/Cargo.toml b/futures-io/Cargo.toml index 2e5abba5f0..9558b9167f 100644 --- a/futures-io/Cargo.toml +++ b/futures-io/Cargo.toml @@ -6,7 +6,6 @@ authors = ["Alex Crichton "] 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-io/0.3" description = """ The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library. """ diff --git a/futures-macro/Cargo.toml b/futures-macro/Cargo.toml index 3b2740c4fd..9512f71a98 100644 --- a/futures-macro/Cargo.toml +++ b/futures-macro/Cargo.toml @@ -6,7 +6,6 @@ authors = ["Taylor Cramer ", "Taiki Endo "] 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" description = """ The asynchronous `Sink` trait for the futures-rs library. """ diff --git a/futures-task/Cargo.toml b/futures-task/Cargo.toml index 23e5aed8b3..31ee26118a 100644 --- a/futures-task/Cargo.toml +++ b/futures-task/Cargo.toml @@ -6,7 +6,6 @@ authors = ["Alex Crichton "] 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-task/0.3" description = """ Tools for working with tasks. """ diff --git a/futures-test/Cargo.toml b/futures-test/Cargo.toml index efd18db2e0..d68296000e 100644 --- a/futures-test/Cargo.toml +++ b/futures-test/Cargo.toml @@ -6,7 +6,6 @@ authors = ["Wim Looman "] 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-test/0.3" description = """ Common utilities for testing components built off futures-rs. """ diff --git a/futures-util/Cargo.toml b/futures-util/Cargo.toml index a8e93620b3..6dae53d56e 100644 --- a/futures-util/Cargo.toml +++ b/futures-util/Cargo.toml @@ -6,7 +6,6 @@ authors = ["Alex Crichton "] 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-util/0.3" description = """ Common utilities and extension traits for the futures-rs library. """ diff --git a/futures/Cargo.toml b/futures/Cargo.toml index b01b12e06d..e3d8ce7b9d 100644 --- a/futures/Cargo.toml +++ b/futures/Cargo.toml @@ -8,7 +8,6 @@ readme = "../README.md" keywords = ["futures", "async", "future"] repository = "https://github.com/rust-lang/futures-rs" homepage = "https://rust-lang.github.io/futures-rs" -documentation = "https://docs.rs/futures/0.3" description = """ An implementation of futures and streams featuring zero allocations, composability, and iterator-like interfaces.