[package] name = "portal-client" version = "0.5.0" authors = ["landhb "] edition = "2018" description = """ A Secure file transfer utility, written in Rust. The protocol utilizes SPAKE2 for key negotiation over an insecure channel, and ChaCha20Poly1305 Authenticated Encryption to encrypt the file with the derived shared symmetric key. This enables two peers to transfer a file over any channel without needing to trust the intermediary relay. """ keywords = ["file-transfer", "spake2", "chacha20", "poly1305","wormhole"] homepage = "https://github.com/landhb/portal" documentation = "https://docs.rs/portal-client" repository = "https://github.com/landhb/portal" readme = "README.md" license = "Apache-2.0 OR MIT" [[bin]] name="portal" path="src/main.rs" bench = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] portal-lib = {path ="../lib",version = "0.5.0"} dialoguer = "0.10.0" indicatif = "0.16.2" colored = "2.0.0" serde = "1.0.116" confy = "0.4.0" dns-lookup = "1.0.4" directories = "3.0.1" lazy_static = "1.4.0" rand = "0.7.3" prettytable-rs = "^0.10" structopt = { version = "0.3", default-features = false }