2021-07-26 02:02:51 +00:00
|
|
|
[package]
|
|
|
|
name = "distant"
|
|
|
|
description = "Operate on a remote computer through file and process manipulation"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
authors = ["Chip Senkbeil <chip@senkbeil.org>"]
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 'z'
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
derive_more = { version = "0.99.16", default-features = false, features = ["display", "from", "error"] }
|
2021-07-26 05:26:04 +00:00
|
|
|
directories = "3.0.2"
|
|
|
|
fork = "0.1.18"
|
|
|
|
hex = "0.4.3"
|
2021-07-26 02:02:51 +00:00
|
|
|
log = "0.4.14"
|
2021-07-26 05:26:04 +00:00
|
|
|
orion = "0.16.0"
|
2021-07-26 02:02:51 +00:00
|
|
|
serde = { version = "1.0.126", features = ["derive"] }
|
|
|
|
serde_cbor = "0.11.1"
|
|
|
|
tokio = { version = "1.9.0", features = ["full"] }
|
|
|
|
|
|
|
|
# Binary-specific dependencies
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
stderrlog = "0.5.1"
|
|
|
|
structopt = "0.3.22"
|
|
|
|
whoami = "1.1.2"
|