Add parsing of the in-repo config file format.
This commit is contained in:
@@ -7,7 +7,7 @@ description = "Trigger tekton jobs with gitea webhooks."
|
||||
license = "0BSD"
|
||||
repository = "https://code.fizz.buzz/talexander/webhook_bridge"
|
||||
readme = "README.md"
|
||||
keywords = ["tekton", "gitea", "webhook"]
|
||||
keywords = ["gitea", "webhook"]
|
||||
categories = ["development-tools"]
|
||||
resolver = "2"
|
||||
include = [
|
||||
@@ -18,25 +18,21 @@ include = [
|
||||
]
|
||||
|
||||
[dependencies]
|
||||
# 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", "json"] }
|
||||
base64 = "0.22.1"
|
||||
hmac = "0.12.1"
|
||||
http-body-util = "0.1.2"
|
||||
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"] }
|
||||
reqwest = "0.12.5"
|
||||
schemars = "0.8.21"
|
||||
serde = { version = "1.0.204", features = ["derive"] }
|
||||
# default std
|
||||
serde_json = { version = "1.0.120", default-features = false, features = ["std"] }
|
||||
sha2 = "0.10.8"
|
||||
tokio = { version = "1.38.0", default-features = false, features = ["macros", "process", "rt-multi-thread", "signal"] }
|
||||
toml = { version = "0.8.19", default-features = false, features = ["display", "parse"] }
|
||||
tower-http = { version = "0.5.2", default-features = false, features = ["trace", "timeout"] }
|
||||
# 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"] }
|
||||
|
||||
[profile.release-lto]
|
||||
|
||||
Reference in New Issue
Block a user