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
|
2024-07-14 19:19:41 +00:00
|
|
|
axum = { version = "0.7.5", default-features = false, features = ["tokio", "http1", "http2", "json"] }
|
2024-07-15 03:08:10 +00:00
|
|
|
k8s-openapi = { version = "0.22.0", default-features = false, features = ["v1_30"] }
|
|
|
|
# default client, config, rustls-tls
|
|
|
|
kube = { version = "0.92.1", default-features = false, features = ["client", "config", "rustls-tls", "derive", "runtime"] }
|
2024-07-14 19:19:41 +00:00
|
|
|
serde = { version = "1.0.204", features = ["derive"] }
|
2024-07-14 20:38:07 +00:00
|
|
|
# default std
|
|
|
|
serde_json = { version = "1.0.120", default-features = false, features = ["std"] }
|
2024-07-15 03:08:10 +00:00
|
|
|
tokio = { version = "1.38.0", default-features = false, features = ["macros", "process", "rt-multi-thread", "signal"] }
|
2024-07-14 23:01:10 +00:00
|
|
|
tower-http = { version = "0.5.2", default-features = false, features = ["trace", "timeout"] }
|
2024-07-14 19:34:14 +00:00
|
|
|
# default attributes, std, tracing-attributes
|
|
|
|
tracing = { version = "0.1.40", default-features = false, features = ["attributes", "std", "tracing-attributes", "async-await"] }
|
|
|
|
# default alloc, ansi, fmt, nu-ansi-term, registry, sharded-slab, smallvec, std, thread_local, tracing-log
|
|
|
|
tracing-subscriber = { version = "0.3.18", default-features = false, features = ["alloc", "ansi", "fmt", "nu-ansi-term", "registry", "sharded-slab", "smallvec", "std", "thread_local", "tracing-log", "env-filter"] }
|
2024-07-14 19:14:52 +00:00
|
|
|
|
|
|
|
[profile.release-lto]
|
|
|
|
inherits = "release"
|
|
|
|
lto = true
|
|
|
|
strip = "symbols"
|