mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 21:32:40 +00:00
01bb10f518
This fixes a bug where we accidentally added a `gpui` transitive dependency in `collab`. Release Notes: - N/A
22 lines
394 B
Rust
22 lines
394 B
Rust
pub mod auth;
|
|
mod conn;
|
|
mod extension;
|
|
mod llm;
|
|
mod notification;
|
|
mod peer;
|
|
pub mod proto;
|
|
|
|
pub use conn::Connection;
|
|
pub use extension::*;
|
|
pub use llm::*;
|
|
pub use notification::*;
|
|
pub use peer::*;
|
|
pub use proto::{error::*, Receipt, TypedEnvelope};
|
|
mod macros;
|
|
|
|
#[cfg(feature = "gpui")]
|
|
mod proto_client;
|
|
#[cfg(feature = "gpui")]
|
|
pub use proto_client::*;
|
|
|
|
pub const PROTOCOL_VERSION: u32 = 68;
|