File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ config_data! {
142
142
// than `checkOnSave_target`
143
143
cargo_target: Option <String > = None ,
144
144
/// Unsets the implicit `#[cfg(test)]` for the specified crates.
145
- cargo_unsetTest: Vec <String > = @from_str : r#"["core"]"# ,
145
+ cargo_unsetTest: Vec <String > = @verbatim : r#"["core"]"# ,
146
146
147
147
/// Run the check command for diagnostics on save.
148
148
checkOnSave | checkOnSave_enable: bool = true ,
@@ -2303,7 +2303,7 @@ pub enum TargetDirectory {
2303
2303
}
2304
2304
2305
2305
macro_rules! _default_val {
2306
- ( @from_str : $s: literal, $ty: ty) => { {
2306
+ ( @verbatim : $s: literal, $ty: ty) => { {
2307
2307
let default_: $ty = serde_json:: from_str( & $s) . unwrap( ) ;
2308
2308
default_
2309
2309
} } ;
@@ -2314,7 +2314,7 @@ macro_rules! _default_val {
2314
2314
}
2315
2315
2316
2316
macro_rules! _default_str {
2317
- ( @from_str : $s: literal, $_ty: ty) => {
2317
+ ( @verbatim : $s: literal, $_ty: ty) => {
2318
2318
$s. to_string( )
2319
2319
} ;
2320
2320
( $default: expr, $ty: ty) => { {
You can’t perform that action at this time.
0 commit comments