-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Export SessionExt and related components
- Loading branch information
1 parent
8c9a350
commit f4eae0a
Showing
6 changed files
with
11 additions
and
21 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "distant" | |
description = "Operate on a remote computer through file and process manipulation" | ||
categories = ["command-line-utilities"] | ||
keywords = ["cli"] | ||
version = "0.14.1" | ||
version = "0.14.2" | ||
authors = ["Chip Senkbeil <[email protected]>"] | ||
edition = "2018" | ||
homepage = "https://github.com/chipsenkbeil/distant" | ||
|
@@ -21,7 +21,7 @@ codegen-units = 1 | |
|
||
[dependencies] | ||
derive_more = { version = "0.99.16", default-features = false, features = ["display", "from", "error", "is_variant"] } | ||
distant-core = { version = "=0.14.1", path = "core", features = ["structopt"] } | ||
distant-core = { version = "=0.14.2", path = "core", features = ["structopt"] } | ||
flexi_logger = "0.18.0" | ||
fork = "0.1.18" | ||
lazy_static = "1.4.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "distant-core" | ||
description = "Core library for distant, enabling operation on a remote computer through file and process manipulation" | ||
categories = ["network-programming"] | ||
version = "0.14.1" | ||
version = "0.14.2" | ||
authors = ["Chip Senkbeil <[email protected]>"] | ||
edition = "2018" | ||
homepage = "https://github.com/chipsenkbeil/distant" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,13 @@ | ||
mod client; | ||
pub use client::{ | ||
LspContent, LspContentParseError, LspData, LspDataParseError, LspHeader, LspHeaderParseError, | ||
LspSessionInfoError, Mailbox, RemoteLspProcess, RemoteLspStderr, RemoteLspStdin, | ||
RemoteLspStdout, RemoteProcess, RemoteProcessError, RemoteStderr, RemoteStdin, RemoteStdout, | ||
Session, SessionInfo, SessionInfoFile, SessionInfoParseError, | ||
}; | ||
pub use client::*; | ||
|
||
mod constants; | ||
|
||
mod net; | ||
pub use net::{ | ||
Codec, DataStream, InmemoryStream, InmemoryStreamReadHalf, InmemoryStreamWriteHalf, Listener, | ||
PlainCodec, SecretKey, SecretKey32, SecretKeyError, Transport, TransportError, | ||
TransportListener, TransportReadHalf, TransportWriteHalf, UnprotectedToHexKey, | ||
XChaCha20Poly1305Codec, | ||
}; | ||
pub use net::*; | ||
|
||
pub mod data; | ||
pub use data::{Request, RequestData, Response, ResponseData}; | ||
pub use data::*; | ||
|
||
mod server; | ||
pub use server::{DistantServer, DistantServerOptions, PortRange, RelayServer}; | ||
pub use server::*; |