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

34 lines
839 B
TOML

3 years ago
[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]
bytes = "1.0.1"
3 years ago
derive_more = { version = "0.99.16", default-features = false, features = ["display", "from", "error"] }
directories = "3.0.2"
fork = "0.1.18"
futures = "0.3.16"
hex = "0.4.3"
3 years ago
log = "0.4.14"
orion = "0.16.0"
3 years ago
serde = { version = "1.0.126", features = ["derive"] }
serde_cbor = "0.11.1"
serde_json = "1.0.64"
3 years ago
tokio = { version = "1.9.0", features = ["full"] }
tokio-stream = "0.1.7"
tokio-util = { version = "0.6.7", features = ["codec"] }
3 years ago
# Binary-specific dependencies
lazy_static = "1.4.0"
stderrlog = "0.5.1"
structopt = "0.3.22"
whoami = "1.1.2"