[package] name = "webhook_bridge" version = "0.0.1" edition = "2021" authors = ["Tom Alexander "] 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" ] [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"] } serde = { version = "1.0.204", features = ["derive"] } # default std serde_json = { version = "1.0.120", default-features = false, features = ["std"] } tokio = { version = "1.38.0", default-features = false, features = ["macros", "process", "rt", "rt-multi-thread", "signal"] } 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] inherits = "release" lto = true strip = "symbols"