tcpasters/tcpaste/Cargo.toml
Thorsten Schubert 7f9dfac651
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
Use mimalloc allocator
2022-05-17 17:16:19 +00:00

64 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.5"
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]
base64 = "0.13"
blake3 = { version = "1.3", features = ["rayon"] }
build-info = { version = "=0.0.26", default-features = false }
chrono = "0.4"
clap = { version = "3", features = ["derive"] }
env_logger = "0.9"
filetime = "0.2"
image = "0.24"
log = { version = "0.4", features = [ "std", "max_level_debug", "release_max_level_debug", ] }
memmap2 = "0.5"
mimalloc = "*"
nude = "0.3"
odht = { version = "=0.3.1", features = ["nightly"] }
rand = "0.8"
rayon = "1.5"
xattr = "0.2"
[dependencies.async-std]
version = "1"
features = ["unstable", "attributes"]
[dev-dependencies]
tempfile = "*"
[build-dependencies]
build-info-build = "=0.0.26"