
This PR removes the `llm` module of the `rpc` crate in favor of using the types from the `zed_llm_client`. Release Notes: - N/A
21 lines
389 B
Rust
21 lines
389 B
Rust
pub mod auth;
|
|
mod conn;
|
|
mod extension;
|
|
mod message_stream;
|
|
mod notification;
|
|
mod peer;
|
|
|
|
pub use conn::Connection;
|
|
pub use extension::*;
|
|
pub use notification::*;
|
|
pub use peer::*;
|
|
pub use proto;
|
|
pub use proto::{Receipt, TypedEnvelope, error::*};
|
|
mod macros;
|
|
|
|
#[cfg(feature = "gpui")]
|
|
mod proto_client;
|
|
#[cfg(feature = "gpui")]
|
|
pub use proto_client::*;
|
|
|
|
pub const PROTOCOL_VERSION: u32 = 68;
|