2021-07-26 02:02:51 +00:00
|
|
|
[package]
|
|
|
|
name = "distant"
|
|
|
|
description = "Operate on a remote computer through file and process manipulation"
|
2021-07-29 04:28:18 +00:00
|
|
|
categories = ["command-line-utilities"]
|
2021-08-28 23:42:28 +00:00
|
|
|
keywords = ["cli"]
|
2023-10-22 03:07:05 +00:00
|
|
|
version = "0.21.0"
|
2021-07-26 02:02:51 +00:00
|
|
|
authors = ["Chip Senkbeil <chip@senkbeil.org>"]
|
2022-08-08 06:10:32 +00:00
|
|
|
edition = "2021"
|
2021-07-29 04:28:18 +00:00
|
|
|
homepage = "https://github.com/chipsenkbeil/distant"
|
|
|
|
repository = "https://github.com/chipsenkbeil/distant"
|
|
|
|
readme = "README.md"
|
|
|
|
license = "MIT OR Apache-2.0"
|
2021-07-26 02:02:51 +00:00
|
|
|
|
2021-08-28 23:15:00 +00:00
|
|
|
[workspace]
|
2023-06-01 06:48:25 +00:00
|
|
|
members = [
|
|
|
|
"distant-core",
|
2023-10-22 03:07:05 +00:00
|
|
|
"distant-core-auth",
|
|
|
|
"distant-core-net",
|
|
|
|
"distant-core-protocol",
|
2023-10-29 16:49:13 +00:00
|
|
|
"distant-plugin",
|
2023-10-22 03:07:05 +00:00
|
|
|
"distant-plugin-local",
|
|
|
|
"distant-plugin-ssh",
|
2023-06-01 06:48:25 +00:00
|
|
|
]
|
2021-08-28 23:15:00 +00:00
|
|
|
|
2021-07-26 02:02:51 +00:00
|
|
|
[profile.release]
|
|
|
|
opt-level = 'z'
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|
2023-07-05 23:30:44 +00:00
|
|
|
strip = true
|
2021-07-26 02:02:51 +00:00
|
|
|
|
2021-09-28 05:04:26 +00:00
|
|
|
[features]
|
2023-07-28 21:13:05 +00:00
|
|
|
default = ["vendored-openssl"]
|
2023-10-22 03:07:05 +00:00
|
|
|
openssl = ["distant-plugin-ssh/openssl"]
|
|
|
|
vendored-openssl = ["distant-plugin-ssh/vendored-openssl"]
|
2021-09-28 05:04:26 +00:00
|
|
|
|
2021-07-26 02:02:51 +00:00
|
|
|
[dependencies]
|
2023-06-01 06:48:25 +00:00
|
|
|
anyhow = "1.0.71"
|
2023-04-01 00:31:28 +00:00
|
|
|
async-trait = "0.1.68"
|
2023-06-01 06:48:25 +00:00
|
|
|
clap = { version = "4.3.0", features = ["derive"] }
|
|
|
|
clap_complete = "4.3.0"
|
2023-04-01 00:31:28 +00:00
|
|
|
config = { version = "0.13.3", default-features = false, features = ["toml"] }
|
2022-06-04 22:01:47 +00:00
|
|
|
derive_more = { version = "0.99.17", default-features = false, features = ["display", "from", "error", "is_variant"] }
|
2023-06-01 06:48:25 +00:00
|
|
|
dialoguer = { version = "0.10.4", default-features = false }
|
2023-10-22 03:07:05 +00:00
|
|
|
distant-core = { version = "=0.21.0", path = "distant-core" }
|
|
|
|
distant-plugin-local = { version = "=0.21.0", path = "distant-plugin-local" }
|
2023-06-01 06:48:25 +00:00
|
|
|
directories = "5.0.1"
|
2023-05-27 07:02:59 +00:00
|
|
|
file-mode = "0.1.2"
|
2023-06-01 06:48:25 +00:00
|
|
|
flexi_logger = "0.25.5"
|
2023-04-01 00:31:28 +00:00
|
|
|
indoc = "2.0.1"
|
2023-06-01 06:48:25 +00:00
|
|
|
log = "0.4.18"
|
|
|
|
once_cell = "1.17.2"
|
2022-06-04 22:01:47 +00:00
|
|
|
rand = { version = "0.8.5", features = ["getrandom"] }
|
2023-04-01 00:31:28 +00:00
|
|
|
rpassword = "7.2.0"
|
2023-06-01 06:48:25 +00:00
|
|
|
serde = { version = "1.0.163", features = ["derive"] }
|
|
|
|
serde_json = "1.0.96"
|
2022-08-08 16:51:18 +00:00
|
|
|
shell-words = "1.1.0"
|
2022-11-20 23:13:00 +00:00
|
|
|
service-manager = { version = "0.2.0", features = ["clap", "serde"] }
|
2023-06-01 06:48:25 +00:00
|
|
|
tabled = "0.12.0"
|
|
|
|
tokio = { version = "1.28.2", features = ["full"] }
|
|
|
|
toml_edit = { version = "0.19.10", features = ["serde"] }
|
|
|
|
terminal_size = "0.2.6"
|
2023-03-31 21:16:17 +00:00
|
|
|
termwiz = "0.20.0"
|
2023-10-22 03:07:05 +00:00
|
|
|
typed-path = "0.6.0"
|
2023-04-01 00:31:28 +00:00
|
|
|
which = "4.4.0"
|
2022-08-08 16:51:18 +00:00
|
|
|
winsplit = "0.1.0"
|
2023-04-01 00:31:28 +00:00
|
|
|
whoami = "1.4.0"
|
2021-08-22 23:58:55 +00:00
|
|
|
|
2021-09-28 05:04:26 +00:00
|
|
|
# Optional native SSH functionality
|
2023-10-22 03:07:05 +00:00
|
|
|
distant-plugin-ssh = { version = "=0.21.0", path = "distant-plugin-ssh", optional = true }
|
2021-09-28 05:04:26 +00:00
|
|
|
|
2021-10-07 04:17:07 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2023-04-01 00:31:28 +00:00
|
|
|
fork = "0.1.21"
|
2021-10-07 04:17:07 +00:00
|
|
|
|
2022-08-08 06:10:32 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2023-06-01 06:48:25 +00:00
|
|
|
sysinfo = "0.29.0"
|
2023-04-01 00:31:28 +00:00
|
|
|
windows-service = "0.6.0"
|
2022-02-14 01:05:56 +00:00
|
|
|
|
2021-08-22 23:58:55 +00:00
|
|
|
[dev-dependencies]
|
2023-06-01 06:48:25 +00:00
|
|
|
assert_cmd = "2.0.11"
|
|
|
|
assert_fs = "1.0.13"
|
2023-04-01 00:31:28 +00:00
|
|
|
env_logger = "0.10.0"
|
|
|
|
indoc = "2.0.1"
|
2023-06-01 06:48:25 +00:00
|
|
|
predicates = "3.0.3"
|
2023-04-01 00:31:28 +00:00
|
|
|
rstest = "0.17.0"
|
2022-11-20 02:27:49 +00:00
|
|
|
test-log = "0.2.11"
|