Deprecate the DebugMarker and DebugReport extension modules (#317)
* Deprecate the DebugMarker and DebugReport extension modules * Allow deprecated modules only in mod.rs, to suppress clippy warning Co-authored-by: Apoorva Joshi <apoorva.ramesh.joshi@gmail.com>
This commit is contained in:
parent
b6d9a40b0b
commit
31bd928c4b
|
@ -1,10 +1,14 @@
|
|||
#[allow(deprecated)]
|
||||
pub use self::debug_marker::DebugMarker;
|
||||
#[allow(deprecated)]
|
||||
pub use self::debug_report::DebugReport;
|
||||
pub use self::debug_utils::DebugUtils;
|
||||
pub use self::metal_surface::MetalSurface;
|
||||
pub use self::tooling_info::ToolingInfo;
|
||||
|
||||
#[deprecated(note = "Please use the [DebugUtils](struct.DebugUtils.html) extension instead.")]
|
||||
mod debug_marker;
|
||||
#[deprecated(note = "Please use the [DebugUtils](struct.DebugUtils.html) extension instead.")]
|
||||
mod debug_report;
|
||||
mod debug_utils;
|
||||
mod metal_surface;
|
||||
|
|
Loading…
Reference in a new issue