mirror of
https://github.com/Noratrieb/does-it-build.git
synced 2026-01-14 10:25:01 +01:00
34 lines
866 B
TOML
34 lines
866 B
TOML
[package]
|
|
name = "does-it-build"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
askama = "0.14.0"
|
|
axum = { version = "0.8.6", default-features = false, features = [
|
|
"http1",
|
|
"matched-path",
|
|
"query",
|
|
"tokio",
|
|
"tower-log",
|
|
"tracing",
|
|
"macros",
|
|
] }
|
|
futures = "0.3.30"
|
|
jiff = "0.2.16"
|
|
jsonwebtoken = { version = "9.3.1" }
|
|
octocrab = "0.47.1"
|
|
reqwest = { version = "0.12.7", features = [
|
|
"rustls-tls",
|
|
"http2",
|
|
], default-features = false }
|
|
rootcause = "0.9.0"
|
|
serde = { version = "1.0.210", features = ["derive"] }
|
|
sqlx = { version = "0.8.2", features = ["runtime-tokio", "sqlite"] }
|
|
tempfile = "3.12.0"
|
|
tokio = { version = "1.40.0", features = ["full"] }
|
|
tracing = { version = "0.1.40", features = ["attributes"] }
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
|
|
|
[build-dependencies]
|
|
color-eyre = "0.6.3"
|