tcpasters/tcpaste/Cargo.toml
Thorsten Schubert a4e04da411
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
Drop connection after timeout
2022-05-06 17:04:47 +00:00

67 lines
No EOL
1.4 KiB
TOML

# SPDX-License-Identifier: AGPL-3.0-or-later
# Copyright © 2022 Thorsten Schubert <tschubert@bafh.org>
[package]
name = "tcpaste"
authors = ["Thorsten Schubert <tschubert@bafh.org>"]
version = "1.1.4"
license = "AGPL-3.0-or-later"
readme = "README.md"
repository = "https://betaco.de/zeno/rust-tcpaste"
edition = "2021"
publish = false
[[bin]]
name = "tcp-pasted"
path = "src/daemon/pasted/pasted.rs"
[[bin]]
name = "tcp-erased"
path = "src/daemon/erased/erased.rs"
[[bin]]
name = "tcp-expire"
path = "src/admin/expire/expire.rs"
[[bin]]
name = "tcp-filter-cli"
path = "src/admin/filter/bin/admin.rs"
[[bin]]
name = "tcp-filter-hasher"
path = "src/admin/filter/bin/hasher.rs"
[[bin]]
name = "tcp-filter-nude"
path = "src/admin/filter/bin/nude.rs"
[dependencies]
build-info = { version = "=0.0.26", default-features = false }
clap = { version = "3", features = ["derive"] }
log = { version = "0.4", features = [
"std",
"max_level_debug",
"release_max_level_debug",
] }
env_logger = "0.9"
xattr = "0.2"
rand = "0.8"
base64 = "0.13"
chrono = "0.4"
blake3 = { version = "1.3", features = ["rayon"] }
odht = { version = "=0.3.1", features = ["nightly"] }
memmap2 = "0.5"
rayon = "1.5"
filetime = "0.2"
nude = "0.3"
image = "0.24"
[build-dependencies]
build-info-build = "=0.0.26"
[dependencies.async-std]
version = "1"
features = ["unstable", "attributes"]
[dev-dependencies]
tempfile = "*"