[package]
edition = "2021"
name = "webbie"
version = "0.1.0"
authors = ["Alexander Baron <hey@alexbaron.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A tiny local HTTP server to test web hooks or other incoming HTTP requests"
readme = "README.md"
license = "MIT"
[lib]
name = "webbie"
path = "src/lib.rs"
[[bin]]
name = "webbie"
path = "src/main.rs"
[dependencies.bytes]
version = "1.10.1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.colored]
version = "3.0.0"
[dependencies.getset]
version = "0.1.6"
[dependencies.lazy_static]
version = "1.5.0"
[dependencies.syntect]
version = "5.2.0"
[dependencies.tokio]
version = "1.47.0"
features = ["full"]
[dependencies.warp]
version = "0.3.7"