@@ -55,7 +55,10 @@ macro_rules! re_bytes_find (
55
55
///
56
56
/// Requires the `regexp` feature.
57
57
#[ macro_export( local_inner_macros) ]
58
- #[ cfg_attr( feature = "docsrs" , doc( cfg( all( feature = "regexp" , feature = "alloc" ) ) ) ) ]
58
+ #[ cfg_attr(
59
+ feature = "docsrs" ,
60
+ doc( cfg( all( feature = "regexp" , feature = "alloc" ) ) )
61
+ ) ]
59
62
macro_rules! re_matches (
60
63
( $i: expr, $re: expr) => ( {
61
64
let r = $crate:: lib:: regex:: Regex :: new( $re) . unwrap( ) ;
@@ -68,7 +71,10 @@ macro_rules! re_matches (
68
71
///
69
72
/// Requires the `regexp` feature.
70
73
#[ macro_export( local_inner_macros) ]
71
- #[ cfg_attr( feature = "docsrs" , doc( cfg( all( feature = "regexp" , feature = "alloc" ) ) ) ) ]
74
+ #[ cfg_attr(
75
+ feature = "docsrs" ,
76
+ doc( cfg( all( feature = "regexp" , feature = "alloc" ) ) )
77
+ ) ]
72
78
macro_rules! re_bytes_matches (
73
79
( $i: expr, $re: expr) => ( {
74
80
let r = $crate:: lib:: regex:: bytes:: Regex :: new( $re) . unwrap( ) ;
@@ -81,7 +87,10 @@ macro_rules! re_bytes_matches (
81
87
///
82
88
/// Requires the `regexp` feature.
83
89
#[ macro_export( local_inner_macros) ]
84
- #[ cfg_attr( feature = "docsrs" , doc( cfg( all( feature = "regexp" , feature = "alloc" ) ) ) ) ]
90
+ #[ cfg_attr(
91
+ feature = "docsrs" ,
92
+ doc( cfg( all( feature = "regexp" , feature = "alloc" ) ) )
93
+ ) ]
85
94
macro_rules! re_capture (
86
95
( $i: expr, $re: expr) => ( {
87
96
let r = $crate:: lib:: regex:: Regex :: new( $re) . unwrap( ) ;
@@ -94,7 +103,10 @@ macro_rules! re_capture (
94
103
///
95
104
/// Requires the `regexp` feature.
96
105
#[ macro_export( local_inner_macros) ]
97
- #[ cfg_attr( feature = "docsrs" , doc( cfg( all( feature = "regexp" , feature = "alloc" ) ) ) ) ]
106
+ #[ cfg_attr(
107
+ feature = "docsrs" ,
108
+ doc( cfg( all( feature = "regexp" , feature = "alloc" ) ) )
109
+ ) ]
98
110
macro_rules! re_bytes_capture (
99
111
( $i: expr, $re: expr) => ( {
100
112
let r = $crate:: lib:: regex:: bytes:: Regex :: new( $re) . unwrap( ) ;
@@ -108,7 +120,10 @@ macro_rules! re_bytes_capture (
108
120
///
109
121
/// Requires the `regexp` feature.
110
122
#[ macro_export( local_inner_macros) ]
111
- #[ cfg_attr( feature = "docsrs" , doc( cfg( all( feature = "regexp" , feature = "alloc" ) ) ) ) ]
123
+ #[ cfg_attr(
124
+ feature = "docsrs" ,
125
+ doc( cfg( all( feature = "regexp" , feature = "alloc" ) ) )
126
+ ) ]
112
127
macro_rules! re_captures (
113
128
( $i: expr, $re: expr) => ( {
114
129
let r = $crate:: lib:: regex:: Regex :: new( $re) . unwrap( ) ;
@@ -121,7 +136,10 @@ macro_rules! re_captures (
121
136
///
122
137
/// Requires the `regexp` feature.
123
138
#[ macro_export( local_inner_macros) ]
124
- #[ cfg_attr( feature = "docsrs" , doc( cfg( all( feature = "regexp" , feature = "alloc" ) ) ) ) ]
139
+ #[ cfg_attr(
140
+ feature = "docsrs" ,
141
+ doc( cfg( all( feature = "regexp" , feature = "alloc" ) ) )
142
+ ) ]
125
143
macro_rules! re_bytes_captures (
126
144
( $i: expr, $re: expr) => ( {
127
145
let r = $crate:: lib:: regex:: bytes:: Regex :: new( $re) . unwrap( ) ;
0 commit comments