mirror of
https://github.com/chipsenkbeil/distant.git
synced 2024-11-05 12:00:36 +00:00
54 lines
1.5 KiB
TOML
54 lines
1.5 KiB
TOML
[package]
|
|
name = "distant"
|
|
description = "Operate on a remote computer through file and process manipulation"
|
|
categories = ["command-line-utilities"]
|
|
keywords = ["cli"]
|
|
version = "0.15.0-alpha.9"
|
|
authors = ["Chip Senkbeil <chip@senkbeil.org>"]
|
|
edition = "2018"
|
|
homepage = "https://github.com/chipsenkbeil/distant"
|
|
repository = "https://github.com/chipsenkbeil/distant"
|
|
readme = "README.md"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[workspace]
|
|
members = ["distant-core", "distant-lua", "distant-lua-tests", "distant-ssh2"]
|
|
|
|
[profile.release]
|
|
opt-level = 'z'
|
|
lto = true
|
|
codegen-units = 1
|
|
|
|
[patch.crates-io]
|
|
ssh2 = { git = "https://github.com/wez/ssh2-rs.git", branch="win32ssl" }
|
|
|
|
[features]
|
|
default = ["ssh2"]
|
|
ssh2 = ["distant-ssh2"]
|
|
|
|
[dependencies]
|
|
derive_more = { version = "0.99.16", default-features = false, features = ["display", "from", "error", "is_variant"] }
|
|
distant-core = { version = "=0.15.0-alpha.9", path = "distant-core", features = ["structopt"] }
|
|
flexi_logger = "0.18.0"
|
|
log = "0.4.14"
|
|
once_cell = "1.8.0"
|
|
rand = { version = "0.8.4", features = ["getrandom"] }
|
|
tokio = { version = "1.12.0", features = ["full"] }
|
|
serde_json = "1.0.64"
|
|
structopt = "0.3.22"
|
|
strum = { version = "0.21.0", features = ["derive"] }
|
|
whoami = "1.1.2"
|
|
|
|
# Optional native SSH functionality
|
|
distant-ssh2 = { version = "=0.15.0-alpha.9", path = "distant-ssh2", optional = true }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
fork = "0.1.18"
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2.0.0"
|
|
assert_fs = "1.0.4"
|
|
indoc = "1.0.3"
|
|
predicates = "2.0.2"
|
|
rstest = "0.11.0"
|