Bump to v0.9.5 and update couple of cli descriptions

pull/38/head v0.9.5
Chip Senkbeil 3 years ago
parent fac7687f27
commit 24d0c3b2ab
No known key found for this signature in database
GPG Key ID: 35EF1F8EC72A4131

2
Cargo.lock generated

@ -179,7 +179,7 @@ dependencies = [
[[package]]
name = "distant"
version = "0.9.4"
version = "0.9.5"
dependencies = [
"bytes",
"derive_more",

@ -2,7 +2,7 @@
name = "distant"
description = "Operate on a remote computer through file and process manipulation"
categories = ["command-line-utilities"]
version = "0.9.4"
version = "0.9.5"
authors = ["Chip Senkbeil <chip@senkbeil.org>"]
edition = "2018"
homepage = "https://github.com/chipsenkbeil/distant"

@ -138,6 +138,7 @@ pub struct ActionSubcommand {
/// Currently, there are two possible formats:
///
/// 1. "json": printing out JSON for external program usage
///
/// 2. "shell": printing out human-readable results for interactive shell usage
#[structopt(
short,
@ -370,11 +371,13 @@ pub struct LaunchSubcommand {
)]
pub mode: Mode,
/// Path to distant program to execute via ssh
/// Path to distant program on remote machine to execute via ssh;
/// by default, this program needs to be available within PATH as
/// specified when compiling ssh (not your login shell)
#[structopt(long, default_value = "distant")]
pub distant: String,
/// Path to ssh program to execute
/// Path to ssh program on local machine to execute
#[structopt(long, default_value = "ssh")]
pub ssh: String,

Loading…
Cancel
Save