Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1pub mod auth; 2mod conn; 3mod notification; 4mod peer; 5pub mod proto; 6 7pub use conn::Connection; 8pub use notification::*; 9pub use peer::*; 10mod macros; 11 12pub const PROTOCOL_VERSION: u32 = 67;