Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1pub mod prod; 2 3#[cfg(not(any(test, feature = "test-support")))] 4pub use prod::*; 5 6#[cfg(any(test, feature = "test-support"))] 7pub mod test; 8 9#[cfg(any(test, feature = "test-support"))] 10pub use test::*;