File tree Expand file tree Collapse file tree 14 files changed +7
-14
lines changed
tracing-opentelemetry/src Expand file tree Collapse file tree 14 files changed +7
-14
lines changed Original file line number Diff line number Diff line change 127
127
html_favicon_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/favicon.ico" ,
128
128
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"
129
129
) ]
130
- #![ cfg_attr( docsrs, deny( broken_intra_doc_links) ) ]
131
130
#![ warn(
132
131
missing_debug_implementations,
133
132
missing_docs,
Original file line number Diff line number Diff line change 58
58
html_favicon_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/favicon.ico" ,
59
59
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"
60
60
) ]
61
- #![ cfg_attr( docsrs, deny( broken_intra_doc_links) ) ]
62
61
#![ warn(
63
62
missing_debug_implementations,
64
63
missing_docs,
Original file line number Diff line number Diff line change 139
139
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"
140
140
) ]
141
141
#![ cfg_attr( not( feature = "std" ) , no_std) ]
142
- #![ cfg_attr( docsrs, feature( doc_cfg) , deny ( broken_intra_doc_links ) ) ]
142
+ #![ cfg_attr( docsrs, feature( doc_cfg) ) ]
143
143
#![ warn(
144
144
missing_debug_implementations,
145
145
missing_docs,
Original file line number Diff line number Diff line change 177
177
//! supported compiler version is not considered a semver breaking change as
178
178
//! long as doing so complies with this policy.
179
179
//!
180
- #![ cfg_attr( docsrs, feature( doc_cfg) , deny ( broken_intra_doc_links ) ) ]
180
+ #![ cfg_attr( docsrs, feature( doc_cfg) ) ]
181
181
#![ doc( html_root_url = "https://docs.rs/tracing-error/0.1.2" ) ]
182
182
#![ doc(
183
183
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png" ,
Original file line number Diff line number Diff line change 111
111
html_favicon_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/favicon.ico" ,
112
112
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"
113
113
) ]
114
- #![ cfg_attr( docsrs, deny( broken_intra_doc_links) ) ]
115
114
#![ warn(
116
115
missing_debug_implementations,
117
116
missing_docs,
Original file line number Diff line number Diff line change 100
100
while_true
101
101
) ]
102
102
#![ cfg_attr( not( feature = "std" ) , no_std) ]
103
- #![ cfg_attr( docsrs, feature( doc_cfg) , deny ( broken_intra_doc_links ) ) ]
103
+ #![ cfg_attr( docsrs, feature( doc_cfg) ) ]
104
104
#[ cfg( feature = "std-future" ) ]
105
105
use pin_project:: pin_project;
106
106
Original file line number Diff line number Diff line change 37
37
html_favicon_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/favicon.ico" ,
38
38
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"
39
39
) ]
40
- #![ cfg_attr( docsrs, deny( broken_intra_doc_links) ) ]
41
40
#[ cfg( unix) ]
42
41
use std:: os:: unix:: net:: UnixDatagram ;
43
42
use std:: { fmt, io, io:: Write } ;
Original file line number Diff line number Diff line change 102
102
html_favicon_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/favicon.ico" ,
103
103
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"
104
104
) ]
105
- #![ cfg_attr( docsrs, feature( doc_cfg) , deny ( broken_intra_doc_links ) ) ]
105
+ #![ cfg_attr( docsrs, feature( doc_cfg) ) ]
106
106
#![ warn(
107
107
missing_debug_implementations,
108
108
missing_docs,
Original file line number Diff line number Diff line change 1
- #![ cfg_attr( docsrs, deny( broken_intra_doc_links) ) ]
2
1
#[ doc( hidden) ]
3
2
pub use tracing;
4
3
Original file line number Diff line number Diff line change 98
98
html_favicon_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/favicon.ico" ,
99
99
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"
100
100
) ]
101
- #![ cfg_attr( docsrs, deny( broken_intra_doc_links) ) ]
102
101
103
102
/// Implementation of the trace::Subscriber as a source of OpenTelemetry data.
104
103
mod layer;
You can’t perform that action at this time.
0 commit comments