[package]
edition = "2024"
rust-version = "1.94"
name = "faucet-sink-http"
version = "1.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP POST sink connector for the faucet-stream ecosystem"
readme = "README.md"
keywords = [
"http",
"rest",
"api",
"sink",
"pipeline",
]
categories = [
"database",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/PawanSikawat/faucet-stream"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "faucet_sink_http"
path = "src/lib.rs"
[[test]]
name = "batch_size"
path = "tests/batch_size.rs"
[[test]]
name = "partial_failures"
path = "tests/partial_failures.rs"
[[test]]
name = "shared_auth_test"
path = "tests/shared_auth_test.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.faucet-core]
version = "1.0.0"
[dependencies.futures]
version = "0.3"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"form",
"query",
]
[dependencies.schemars]
version = "1.2.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["time"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"time",
"macros",
"rt",
]
[dev-dependencies.wiremock]
version = "0.6"