distant/Cargo.toml

42 lines
1.2 KiB
TOML
Raw Normal View History

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"]
version = "0.11.0"
2021-07-26 02:02:51 +00:00
authors = ["Chip Senkbeil <chip@senkbeil.org>"]
2021-07-29 04:28:18 +00:00
edition = "2018"
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
[profile.release]
opt-level = 'z'
lto = true
codegen-units = 1
[dependencies]
2021-07-27 05:14:35 +00:00
bytes = "1.0.1"
2021-07-28 02:14:01 +00:00
derive_more = { version = "0.99.16", default-features = false, features = ["display", "from", "error", "is_variant"] }
2021-07-27 05:14:35 +00:00
futures = "0.3.16"
hex = "0.4.3"
k256 = { version = "0.9.6", features = ["ecdh"] }
2021-07-26 02:02:51 +00:00
log = "0.4.14"
orion = "0.16.0"
rand = { version = "0.8.4", features = ["getrandom"] }
2021-07-26 02:02:51 +00:00
serde = { version = "1.0.126", features = ["derive"] }
serde_cbor = "0.11.1"
serde_json = "1.0.64"
strum = { version = "0.21.0", features = ["derive"] }
2021-07-26 02:02:51 +00:00
tokio = { version = "1.9.0", features = ["full"] }
tokio-stream = { version = "0.1.7", features = ["sync"] }
2021-07-27 05:14:35 +00:00
tokio-util = { version = "0.6.7", features = ["codec"] }
2021-07-28 02:14:01 +00:00
walkdir = "2.3.2"
2021-07-26 02:02:51 +00:00
# Binary-specific dependencies
flexi_logger = "0.18.0"
fork = "0.1.18"
2021-07-26 02:02:51 +00:00
lazy_static = "1.4.0"
structopt = "0.3.22"
whoami = "1.1.2"