[package]
edition = "2024"
name = "hooksmith-core"
version = "0.1.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared HTTP client and WebhookSender trait for the hooksmith crates"
homepage = "https://github.com/RayburnCode/hooksmith"
documentation = "https://docs.rs/hooksmith-core"
readme = "README.md"
keywords = [
"webhook",
"http",
"async",
"notification",
"client",
]
categories = [
"web-programming",
"web-programming::http-client",
"network-programming",
]
license = "MIT"
repository = "https://github.com/RayburnCode/hooksmith"
resolver = "2"
[features]
default = []
mock = []
tracing = ["dep:tracing"]
[lib]
name = "hooksmith_core"
path = "src/lib.rs"
[dependencies.reqwest]
version = "0.13.2"
features = ["json"]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
]
[dependencies.tracing]
version = "0.1"
optional = true