mirror of
https://github.com/Noratrieb/does-it-build.git
synced 2026-01-14 18:35:01 +01:00
Update dependencies
This commit is contained in:
parent
b213eec65d
commit
0f749df239
3 changed files with 928 additions and 630 deletions
1547
Cargo.lock
generated
1547
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -4,8 +4,8 @@ version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
askama = "0.12.1"
|
askama = "0.14.0"
|
||||||
axum = { version = "0.7.5", features = ["macros"] }
|
axum = { version = "0.8.6", features = ["macros"] }
|
||||||
color-eyre = "0.6.3"
|
color-eyre = "0.6.3"
|
||||||
futures = "0.3.30"
|
futures = "0.3.30"
|
||||||
reqwest = { version = "0.12.7", features = [
|
reqwest = { version = "0.12.7", features = [
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ use axum::{
|
||||||
Router,
|
Router,
|
||||||
};
|
};
|
||||||
use color_eyre::{eyre::Context, Result};
|
use color_eyre::{eyre::Context, Result};
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::Deserialize;
|
||||||
use tracing::{error, info};
|
use tracing::{error, info};
|
||||||
|
|
||||||
use crate::db::{BuildInfo, BuildMode, BuildStats, Db, Status};
|
use crate::db::{BuildInfo, BuildMode, BuildStats, Db, Status};
|
||||||
|
|
@ -325,11 +325,6 @@ async fn index_js() -> impl IntoResponse {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize)]
|
|
||||||
struct TriggerBuildBody {
|
|
||||||
nightly: String,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Status {
|
impl Status {
|
||||||
fn to_emoji(&self) -> &'static str {
|
fn to_emoji(&self) -> &'static str {
|
||||||
match self {
|
match self {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue