You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
distant/Cargo.toml

45 lines
1.2 KiB
TOML

3 years ago
[package]
name = "distant"
description = "Operate on a remote computer through file and process manipulation"
categories = ["command-line-utilities"]
version = "0.13.0"
3 years ago
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"
3 years ago
[profile.release]
opt-level = 'z'
lto = true
codegen-units = 1
[dependencies]
bytes = "1.0.1"
derive_more = { version = "0.99.16", default-features = false, features = ["display", "from", "error", "is_variant"] }
futures = "0.3.16"
hex = "0.4.3"
k256 = { version = "0.9.6", features = ["ecdh"] }
3 years ago
log = "0.4.14"
orion = "0.16.0"
rand = { version = "0.8.4", features = ["getrandom"] }
3 years ago
serde = { version = "1.0.126", features = ["derive"] }
serde_cbor = "0.11.1"
serde_json = "1.0.64"
strum = { version = "0.21.0", features = ["derive"] }
3 years ago
tokio = { version = "1.9.0", features = ["full"] }
tokio-util = { version = "0.6.7", features = ["codec"] }
walkdir = "2.3.2"
3 years ago
# Binary-specific dependencies
flexi_logger = "0.18.0"
fork = "0.1.18"
3 years ago
lazy_static = "1.4.0"
structopt = "0.3.22"
whoami = "1.1.2"
[dev-dependencies]
assert_cmd = "2.0.0"
tempfile = "3.2.0"