[package]
edition = "2024"
name = "hibp-sync-client"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Syncs a local HIBP binary dataset from an hibp-bin-fetch serve instance"
homepage = "https://github.com/PrismaPhonic/hibp-rs"
readme = "README.md"
license = "MIT"
repository = "https://github.com/PrismaPhonic/hibp-rs"
[lib]
name = "hibp_sync_client"
path = "src/lib.rs"
[[bin]]
name = "hibp-sync-client"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.async-compression]
version = "0.4.41"
features = [
"tokio",
"zstd",
]
[dependencies.async-stream]
version = "0.3.6"
[dependencies.bytes]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.compact_str]
version = "0.8"
features = ["serde"]
[dependencies.futures-util]
version = "0.3.32"
[dependencies.http]
version = "1"
[dependencies.http-body-util]
version = "0.1"
[dependencies.hyper]
version = "1"
features = [
"client",
"http1",
]
[dependencies.hyper-util]
version = "0.1"
features = [
"client",
"client-legacy",
"http1",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"fs",
"macros",
"io-util",
"time",
]
[dependencies.tokio-util]
version = "0.7.18"
features = ["io"]
[dependencies.tracing]
version = "0.1"
features = ["attributes"]
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.zstd]
version = "0.13"
[dev-dependencies.ntex]
version = "3"
features = ["tokio"]
[dev-dependencies.tempfile]
version = "3"