Skip to content

Commit eeae634

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 d849698 commit eeae634

File tree

10 files changed

+0
-10
lines changed

10 files changed

+0
-10
lines changed

Diff for: futures-channel/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors = ["Alex Crichton <[email protected]>"]
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.3"
109
description = """
1110
Channels for asynchronous communication using futures-rs.
1211
"""

Diff for: futures-core/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors = ["Alex Crichton <[email protected]>"]
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/0.3"
109
description = """
1110
The core traits and types in for the `futures` library.
1211
"""

Diff for: futures-executor/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors = ["Alex Crichton <[email protected]>"]
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.3"
109
description = """
1110
Executors for asynchronous tasks based on the futures-rs library.
1211
"""

Diff for: futures-io/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors = ["Alex Crichton <[email protected]>"]
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
"""

Diff for: futures-macro/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors = ["Taylor Cramer <[email protected]>", "Taiki Endo <[email protected]
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.3"
109
description = """
1110
The futures-rs procedural macro implementations.
1211
"""

Diff for: futures-sink/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors = ["Alex Crichton <[email protected]>"]
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.3"
109
description = """
1110
The asynchronous `Sink` trait for the futures-rs library.
1211
"""

Diff for: futures-task/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors = ["Alex Crichton <[email protected]>"]
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.3"
109
description = """
1110
Tools for working with tasks.
1211
"""

Diff for: futures-test/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors = ["Wim Looman <[email protected]>"]
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.3"
109
description = """
1110
Common utilities for testing components built off futures-rs.
1211
"""

Diff for: futures-util/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors = ["Alex Crichton <[email protected]>"]
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.3"
109
description = """
1110
Common utilities and extension traits for the futures-rs library.
1211
"""

Diff for: futures/Cargo.toml

-1
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.3"
1211
description = """
1312
An implementation of futures and streams featuring zero allocations,
1413
composability, and iterator-like interfaces.

0 commit comments

Comments
 (0)