tcpasters/tcpaste/Cargo.toml

60 lines
1.5 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.3.4"
license = "AGPL-3.0-or-later"
readme = "README.md"
repository = "https://betaco.de/strom/tcpasters"
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-adm"
path = "src/admin/filter/bin/admin.rs"
[[bin]]
name = "tcp-filter-hasher"
path = "src/admin/filter/bin/hasher.rs"
[dependencies]
base64 = "0.22"
blake3 = { version = "1.5", features = ["rayon"] }
build-info = { version = "=0.0.37", default-features = false }
chrono = "0.4"
clap = { version = "4.5", default-features = false, features = [ "std", "derive", "env", "usage", "help", "error-context" ] }
dashmap = "6.0.1"
env_logger = { version = "0.11", default-features = false } #, features = [ "atty" ] }
filetime = "0.2"
futures = { version = "0.3", default-features = false, features = [ "std"] }
log = { version = "0.4", features = [ "std", "max_level_debug", "release_max_level_debug", ] }
memmap2 = "0.9"
mimalloc = "0.1"
odht = { version = "=0.3.1", features = ["nightly"] }
rand = "0.8"
rayon = "1.10"
xattr = "1.3"
[dependencies.async-std]
version = "1"
features = ["unstable", "attributes"]
[dev-dependencies]
tempfile = "*"
[build-dependencies]
build-info-build = "=0.0.37"