
As a part of https://github.com/zed-industries/zed/pull/17488 I flattened module structure of ui crate to fix module_inception lint. However, that's actually unnecessary as we can pass that lint via a custom knob for clippy. Closes #ISSUE Release Notes: - N/A
7 lines
122 B
Rust
7 lines
122 B
Rust
mod highlighted_label;
|
|
mod label;
|
|
mod label_like;
|
|
|
|
pub use highlighted_label::*;
|
|
pub use label::*;
|
|
pub use label_like::*;
|