ffsend/Cargo.toml

147 lines
3.8 KiB
TOML
Raw Normal View History

[package]
name = "ffsend"
2020-05-17 16:14:06 +00:00
version = "0.2.64"
authors = ["Tim Visee <3a4fb3964f@sinenomine.email>"]
2018-05-21 20:21:08 +00:00
license = "GPL-3.0"
readme = "README.md"
homepage = "https://timvisee.com/projects/ffsend"
2018-06-04 23:06:12 +00:00
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 = [
2019-08-04 20:49:07 +00:00
"/.github",
"/contrib",
"/pkg",
"/res",
"/*.yml",
"/CONTRIBUTING.md",
"/SECURITY.md",
2018-05-21 20:21:08 +00:00
]
2019-01-12 22:34:38 +00:00
edition = "2018"
build = "build.rs"
2018-05-21 20:21:08 +00:00
[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, \
2019-01-03 12:16:24 +00:00
or through their web browser.\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]
2019-03-03 16:39:43 +00:00
gitlab = { repository = "timvisee/ffsend", branch = "master" }
[[bin]]
name = "ffsend"
path = "src/main.rs"
[features]
default = [
"archive",
"clipboard",
"crypto-ring",
"history",
"infer-command",
"qrcode",
"send3",
"urlshorten",
]
# Compile with file archiving support
archive = ["tar"]
# Support for putting share URLs in clipboard
clipboard = ["clip", "which"]
# Compile with file history support
history = []
# Support for Firefox Send v2
send2 = ["ffsend-api/send2"]
# Support for Firefox Send v3
send3 = ["ffsend-api/send3"]
# Use OpenSSL as cryptography backend
crypto-openssl = ["ffsend-api/crypto-openssl"]
# Use ring as cryptography backend
crypto-ring = ["ffsend-api/crypto-ring"]
# Support for generating QR codes for share URLs
qrcode = ["qr2term"]
# Support for shortening share URLs
urlshorten = ["urlshortener"]
# Support for inferring subcommand when linking binary
infer-command = []
# Compile without colored output support
no-color = ["colored/no-color"]
# Automatic using build.rs: use xclip/xsel binary method for clipboard support
clipboard-bin = ["clipboard"]
# Automatic using build.rs: use native clipboard crate for clipboard support
clipboard-crate = ["clipboard"]
[dependencies]
2020-05-11 19:03:00 +00:00
chbs = "0.0.10"
chrono = "0.4"
2019-04-09 16:12:15 +00:00
clap = "2.33"
2019-11-29 15:13:23 +00:00
colored = "1.9"
derive_builder = "0.9"
2019-05-30 12:17:56 +00:00
directories = "2.0"
failure = "0.1"
ffsend-api = { version = "0.6", default-features = false }
fs2 = "0.4"
2019-11-29 15:13:23 +00:00
lazy_static = "1.4"
open = "1"
2018-06-23 15:02:02 +00:00
openssl-probe = "0.1"
2020-05-11 19:03:00 +00:00
pathdiff = "0.2"
pbr = "1"
2018-10-28 17:21:53 +00:00
prettytable-rs = "0.8"
2020-04-19 12:42:25 +00:00
qr2term = { version = "0.2", optional = true }
rand = "0.7"
2019-11-06 15:52:26 +00:00
regex = "1.3"
rpassword = "4"
serde = "1"
serde_derive = "1"
tar = { version = "0.4", optional = true }
tempfile = "3"
2019-03-16 14:43:23 +00:00
toml = "0.5"
2020-03-07 03:16:29 +00:00
urlshortener = { version = "3", optional = true }
2019-11-06 15:52:26 +00:00
version-compare = "0.0.10"
[target.'cfg(any(target_os = "linux", target_os = "freebsd", target_os = "dragonfly", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
which = { version = "3.1", optional = true }
[target.'cfg(not(any(target_os = "linux", target_os = "freebsd", target_os = "dragonfly", target_os = "openbsd", target_os = "netbsd")))'.dependencies]
# Aliased to clip to prevent name collision with clipboard feature
clip = { version = "0.5", optional = true, package = "clipboard" }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]