Skip to content

Commit d9880fa

Browse files
authored
.natvis workaround for cargo vendor (#3607)
1 parent 2c9d81b commit d9880fa

File tree

6 files changed

+3
-3
lines changed

6 files changed

+3
-3
lines changed

crates/libs/core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![doc = include_str!("../readme.md")]
22
#![doc(html_no_source)]
33
#![allow(non_snake_case)]
4-
#![debugger_visualizer(natvis_file = "../.natvis")]
4+
#![debugger_visualizer(natvis_file = "../debug.natvis")]
55
#![cfg_attr(all(not(feature = "std")), no_std)]
66

77
#[cfg(windows)]

crates/libs/result/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![doc = include_str!("../readme.md")]
2-
#![debugger_visualizer(natvis_file = "../.natvis")]
2+
#![debugger_visualizer(natvis_file = "../debug.natvis")]
33
#![cfg_attr(all(not(feature = "std"), not(test)), no_std)]
44
#![cfg_attr(not(windows), allow(unused_imports))]
55

crates/libs/strings/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![doc = include_str!("../readme.md")]
22
#![cfg(windows)]
33
#![allow(non_snake_case)]
4-
#![debugger_visualizer(natvis_file = "../.natvis")]
4+
#![debugger_visualizer(natvis_file = "../debug.natvis")]
55
#![cfg_attr(all(not(feature = "std")), no_std)]
66

77
extern crate alloc;

0 commit comments

Comments
 (0)