Skip to content

Commit 0757f97

Browse files
committed
chore: Remove documentation config in manifest
1 parent 72b0fd5 commit 0757f97

File tree

7 files changed

+0
-13
lines changed

7 files changed

+0
-13
lines changed

prepare-release.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@ CRATES=( \
3333
)
3434

3535
for CRATE in "${CRATES[@]}"; do
36-
# Update documentation url in Cargo.toml
37-
sed -i -E "s~documentation = \"https://docs\.rs/$CRATE/$VERSION_MATCHER\"~documentation = \"https://docs.rs/${CRATE}/${VERSION}\"~" \
38-
"$DIR/$CRATE/Cargo.toml"
39-
4036
# Update Cargo.toml version fields.
4137
sed -i -E "s/^version = \"${VERSION_MATCHER}\"$/version = \"${VERSION}\"/" \
4238
"$DIR/$CRATE/Cargo.toml"

tonic-build/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ categories = ["network-programming", "asynchronous"]
44
description = """
55
Codegen module of `tonic` gRPC implementation.
66
"""
7-
documentation = "https://docs.rs/tonic-build/0.13.0"
87
edition = "2021"
98
homepage = "https://github.com/hyperium/tonic"
109
keywords = ["rpc", "grpc", "async", "codegen", "protobuf"]

tonic-health/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ categories = ["network-programming", "asynchronous"]
44
description = """
55
Health Checking module of `tonic` gRPC implementation.
66
"""
7-
documentation = "https://docs.rs/tonic-health/0.13.0"
87
edition = "2021"
98
homepage = "https://github.com/hyperium/tonic"
109
keywords = ["rpc", "grpc", "async", "healthcheck"]

tonic-reflection/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ Server Reflection module of `tonic` gRPC implementation.
99
"""
1010
edition = "2021"
1111
homepage = "https://github.com/hyperium/tonic"
12-
documentation = "https://docs.rs/tonic-reflection/0.13.0"
1312
keywords = ["rpc", "grpc", "async", "reflection"]
1413
license = "MIT"
1514
name = "tonic-reflection"

tonic-types/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ categories = ["web-programming", "network-programming", "asynchronous"]
77
description = """
88
A collection of useful protobuf types that can be used with `tonic`.
99
"""
10-
documentation = "https://docs.rs/tonic-types/0.13.0"
1110
edition = "2021"
1211
homepage = "https://github.com/hyperium/tonic"
1312
keywords = ["rpc", "grpc", "protobuf"]

tonic-web/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ categories = ["network-programming", "asynchronous"]
44
description = """
55
grpc-web protocol translation for tonic services.
66
"""
7-
documentation = "https://docs.rs/tonic-web/0.13.0"
87
edition = "2021"
98
homepage = "https://github.com/hyperium/tonic"
109
keywords = ["rpc", "grpc", "grpc-web"]

tonic/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,13 @@
22
name = "tonic"
33
# When releasing to crates.io:
44
# - Remove path dependencies
5-
# - Update doc url
6-
# - Cargo.toml
7-
# - README.md
85
# - Update CHANGELOG.md.
96
# - Create "v0.11.x" git tag.
107
authors = ["Lucio Franco <luciofranco14@gmail.com>"]
118
categories = ["web-programming", "network-programming", "asynchronous"]
129
description = """
1310
A gRPC over HTTP/2 implementation focused on high performance, interoperability, and flexibility.
1411
"""
15-
documentation = "https://docs.rs/tonic/0.13.0"
1612
edition = "2021"
1713
homepage = "https://github.com/hyperium/tonic"
1814
keywords = ["rpc", "grpc", "async", "futures", "protobuf"]

0 commit comments

Comments
 (0)