ffsend/Cargo.toml

88 lines
2.2 KiB
TOML
Raw Normal View History

[package]
name = "ffsend"
2018-11-21 21:54:38 +00:00
version = "0.1.1"
authors = ["Tim Visee <timvisee@gmail.com>"]
2018-05-21 20:21:08 +00:00
license = "GPL-3.0"
readme = "README.md"
2018-06-04 23:06:12 +00:00
homepage = "https://gitlab.com/timvisee/ffsend"
repository = "https://gitlab.com/timvisee/ffsend"
description = """\
Easily and securely share files from the command line.\n\
A fully featured Firefox Send client.\
"""
2018-05-21 20:21:08 +00:00
keywords = ["send", "firefox", "cli"]
categories = [
"authentication",
"command-line-interface",
"command-line-utilities",
"cryptography",
"network-programming",
]
exclude = [
"res/*",
]
[package.metadata.deb]
section = "utility"
extended-description = """\
Easily and securely share files and directories from the command line through
a safe, private and encrypted link using a single simple command. \
Files are shared using the Send service and may be up to 2GB. \
Others are able to download these files with this tool, \
or through their webbrowser.\n\
\n\
All files are always encrypted on the client, \
and secrets are never shared with the remote host. \
An optional password may be specified, and a default file lifetime of 1 \
(up to 20) download or 24 hours is enforced to ensure your stuff does not \
remain online forever. This provides a secure platform to share your files."""
priority = "standard"
license-file = ["LICENSE", "3"]
2019-01-03 11:30:41 +00:00
depends = "$auto, libssl1.1, ca-certificates, xclip"
maintainer-scripts = "pkg/deb"
2018-05-21 20:21:08 +00:00
[badges]
travis-ci = { repository = "timvisee/ffsend", branch = "master" }
[[bin]]
name = "ffsend"
path = "src/main.rs"
[features]
default = ["archive", "clipboard", "history"]
# Compile with file archiving support
archive = ["tar"]
# Compile with file history support
history = []
# Compile without colored output support
no-color = ["colored/no-color"]
[dependencies]
2018-09-04 21:50:38 +00:00
chbs = "0.0.8"
chrono = "0.4"
clap = "2.31"
colored = "1.6"
2018-10-28 17:17:29 +00:00
derive_builder = "0.7"
directories = "1.0"
failure = "0.1"
ffsend-api = "0.1.1"
fs2 = "0.4"
lazy_static = "1.0"
open = "1"
2018-06-23 15:02:02 +00:00
openssl-probe = "0.1"
pbr = "1"
2018-10-28 17:21:53 +00:00
prettytable-rs = "0.8"
rpassword = "2.0"
serde = "1.0"
serde_derive = "1.0"
tar = { version = "0.4", optional = true }
tempfile = "3"
toml = "0.4"
version-compare = "0.0.6"
[target.'cfg(not(target_os = "linux"))'.dependencies]
2018-11-20 10:04:27 +00:00
clipboard = { version = "0.5", optional = true }