ffsend/Cargo.toml

123 lines
3 KiB
TOML

[package]
name = "ffsend"
version = "0.2.58"
authors = ["Tim Visee <3a4fb3964f@sinenomine.email>"]
license = "GPL-3.0"
readme = "README.md"
homepage = "https://timvisee.com/projects/ffsend"
repository = "https://gitlab.com/timvisee/ffsend"
description = """\
Easily and securely share files from the command line.\n\
A fully featured Firefox Send client.\
"""
keywords = ["send", "firefox", "cli"]
categories = [
"authentication",
"command-line-interface",
"command-line-utilities",
"cryptography",
"network-programming",
]
exclude = [
"/.github",
"/contrib",
"/pkg",
"/res",
"/*.yml",
"/CONTRIBUTING.md",
"/SECURITY.md",
]
edition = "2018"
[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 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"]
depends = "$auto, libssl1.1, ca-certificates, xclip"
maintainer-scripts = "pkg/deb"
[badges]
gitlab = { repository = "timvisee/ffsend", branch = "master" }
[[bin]]
name = "ffsend"
path = "src/main.rs"
[features]
default = [
"archive",
"clipboard",
"history",
"infer-command",
"qrcode",
"send2",
"send3",
"urlshorten"
]
# Compile with file archiving support
archive = ["tar"]
# Support for putting share URLs in clipboard
clipboard = ["clipboard-ext"]
# Compile with file history support
history = []
# Support for Firefox Send v2
send2 = ["ffsend-api/send2"]
# Support for Firefox Send v3
send3 = ["ffsend-api/send3"]
# 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"]
[dependencies]
chbs = "0.0.9"
chrono = "0.4"
clap = "2.33"
clipboard-ext = { version = "0.1", optional = true }
colored = "1.9"
derive_builder = "0.9"
directories = "2.0"
failure = "0.1"
ffsend-api = { version = "0.5.0", default-features = false }
fs2 = "0.4"
lazy_static = "1.4"
open = "1"
openssl-probe = "0.1"
pathdiff = "0.1"
pbr = "1"
prettytable-rs = "0.8"
qr2term = { version = "0.1", optional = true }
regex = "1.3"
rpassword = "4"
serde = "1"
serde_derive = "1"
tar = { version = "0.4", optional = true }
tempfile = "3"
toml = "0.5"
urlshortener = { version = "2", optional = true }
version-compare = "0.0.10"