Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.

Commit 9021d79

Browse files
committed
Deprecated lint
1 parent 2b88e9d commit 9021d79

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

grpc-compiler/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
#![deny(intra_doc_link_resolution_failure)]
1+
#![deny(broken_intra_doc_links)]
22

33
pub mod codegen;

grpc-protobuf/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![deny(intra_doc_link_resolution_failure)]
1+
#![deny(broken_intra_doc_links)]
22

33
//! Implementation of marshaller for rust-protobuf parameter types.
44

grpc/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![deny(intra_doc_link_resolution_failure)]
1+
#![deny(broken_intra_doc_links)]
22

33
#[macro_use]
44
extern crate log;

protoc-rust-grpc/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! API to generate `.rs` files.
22
3-
#![deny(intra_doc_link_resolution_failure)]
3+
#![deny(broken_intra_doc_links)]
44
#![deny(missing_docs)]
55

66
use protoc::Protoc;

0 commit comments

Comments
 (0)