Skip to content

Commit 714797a

Browse files
committed
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.
1 parent 3ccce33 commit 714797a

File tree

10 files changed

+0
-10
lines changed

10 files changed

+0
-10
lines changed

futures-channel/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors = ["Alex Crichton <alex@alexcrichton.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-channel/0.4.0-alpha.0"
109
description = """
1110
Channels for asynchronous communication using futures-rs.
1211
"""

futures-core/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors = ["Alex Crichton <alex@alexcrichton.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-core/1.0.0-alpha.0"
109
description = """
1110
The core traits and types in for the `futures` library.
1211
"""

futures-executor/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors = ["Alex Crichton <alex@alexcrichton.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-executor/0.4.0-alpha.0"
109
description = """
1110
Executors for asynchronous tasks based on the futures-rs library.
1211
"""

futures-io/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors = ["Alex Crichton <alex@alexcrichton.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-io/0.3"
109
description = """
1110
The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library.
1211
"""

futures-macro/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors = ["Taylor Cramer <cramertj@google.com>", "Taiki Endo <te316e89@gmail.co
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-macro/0.4.0-alpha.0"
109
description = """
1110
The futures-rs procedural macro implementations.
1211
"""

futures-sink/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors = ["Alex Crichton <alex@alexcrichton.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-sink/0.4.0-alpha.0"
109
description = """
1110
The asynchronous `Sink` trait for the futures-rs library.
1211
"""

futures-task/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors = ["Alex Crichton <alex@alexcrichton.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-task/0.4.0-alpha.0"
109
description = """
1110
Tools for working with tasks.
1211
"""

futures-test/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors = ["Wim Looman <wim@nemo157.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-test/0.4.0-alpha.0"
109
description = """
1110
Common utilities for testing components built off futures-rs.
1211
"""

futures-util/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors = ["Alex Crichton <alex@alexcrichton.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-util/0.4.0-alpha.0"
109
description = """
1110
Common utilities and extension traits for the futures-rs library.
1211
"""

futures/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ readme = "../README.md"
88
keywords = ["futures", "async", "future"]
99
repository = "https://github.com/rust-lang/futures-rs"
1010
homepage = "https://rust-lang.github.io/futures-rs"
11-
documentation = "https://docs.rs/futures/0.4.0-alpha.0"
1211
description = """
1312
An implementation of futures and streams featuring zero allocations,
1413
composability, and iterator-like interfaces.

0 commit comments

Comments
 (0)