Closes #36188 ## Todo * [x] CLI * [x] terminals * [x] tasks ## For future PRs * debugging * UI for opening WSL projects * fixing workspace state restoration Release Notes: - Windows alpha: Zed now supports editing folders in WSL. --------- Co-authored-by: Junkui Zhang <364772080@qq.com>
13 lines
377 B
Rust
13 lines
377 B
Rust
pub mod json_log;
|
|
pub mod protocol;
|
|
pub mod proxy;
|
|
pub mod remote_client;
|
|
mod transport;
|
|
|
|
pub use remote_client::{
|
|
ConnectionIdentifier, ConnectionState, RemoteClient, RemoteClientDelegate, RemoteClientEvent,
|
|
RemoteConnectionOptions, RemotePlatform,
|
|
};
|
|
pub use transport::ssh::{SshConnectionOptions, SshPortForwardOption};
|
|
pub use transport::wsl::WslConnectionOptions;
|