Library that powers the distant
binary.
🚧 (Alpha stage software) This library is in rapid development and may break or change frequently! 🚧
The distant-core
library supplies the client, manager, and server
implementations for use with the distant API in order to communicate with
remote machines and perform actions. This library acts as the primary
implementation that powers the CLI, but is also available for other extensions
like distant-ssh2
.
You can import the dependency by adding the following to your Cargo.toml
:
toml
[dependencies]
distant-core = "0.19"
Currently, the library supports the following features:
clap
: generates Clap
bindings for
DistantRequestData
(used by cli to expose request actions)schemars
: derives the schemars::JsonSchema
interface on
DistantMsg
, DistantRequestData
, and DistantResponseData
data typesBy default, no features are enabled on the library.
Below is an example of connecting to a distant server over TCP without any encryption or authentication:
```rust use distant_core::{ DistantClient, DistantChannelExt, net::{PlainCodec, TcpClientExt}, }; use std::{net::SocketAddr, path::Path};
// Connect to a server located at example.com on port 8080 that is using // no encryption or authentication (PlainCodec) let addr: SocketAddr = "example.com:8080".parse().unwrap(); let mut client = DistantClient::connect(addr, PlainCodec).await .expect("Failed to connect");
// Append text to a file // NOTE: This method comes from DistantChannelExt client.appendfiletext(Path::new("path/to/file.txt"), "new contents").await .expect("Failed to append to file"); ```
This project is licensed under either of
Apache License, Version 2.0, (LICENSE-APACHE or apache-license) MIT license (LICENSE-MIT or mit-license) at your option.