webhook_bridge/Cargo.toml

29 lines
825 B
TOML
Raw Normal View History

2024-07-14 18:52:45 +00:00
[package]
name = "webhook_bridge"
2024-07-14 19:14:52 +00:00
version = "0.0.1"
2024-07-14 18:52:45 +00:00
edition = "2021"
2024-07-14 19:14:52 +00:00
authors = ["Tom Alexander <tom@fizz.buzz>"]
description = "Trigger tekton jobs with gitea webhooks."
license = "0BSD"
repository = "https://code.fizz.buzz/talexander/webhook_bridge"
readme = "README.md"
keywords = ["tekton", "gitea", "webhook"]
categories = ["development-tools"]
resolver = "2"
include = [
"LICENSE",
"**/*.rs",
"Cargo.toml",
"Cargo.lock"
]
2024-07-14 18:52:45 +00:00
[dependencies]
2024-07-14 19:14:52 +00:00
# default form, http1, json, matched-path, original-uri, query, tokio, tower-log, tracing
axum = { version = "0.7.5", default-features = false, features = ["tokio", "http1", "http2"] }
tokio = { version = "1.38.0", default-features = false, features = ["macros", "process", "rt", "rt-multi-thread"] }
[profile.release-lto]
inherits = "release"
lto = true
strip = "symbols"