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 error; 4mod notification; 5mod peer; 6pub mod proto; 7 8pub use conn::Connection; 9pub use error::*; 10pub use notification::*; 11pub use peer::*; 12mod macros; 13 14pub const PROTOCOL_VERSION: u32 = 68;