Skip to content

Commit

Permalink
chore: Add license to API bump version to 0.6.3, update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
St4NNi committed Dec 18, 2024
1 parent 91990d3 commit 807046a
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 29 deletions.
40 changes: 20 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
[package]
name = "bakta-web-backend"
version = "0.6.2"
version = "0.6.3"
edition = "2021"

[dependencies]
anyhow = "1.0.93"
anyhow = "1.0.94"
axum = "0.7.9"
chrono = { version = "0.4.38", features = ["serde"] }
chrono = { version = "0.4.39", features = ["serde"] }
dotenvy = "0.15.7"
lazy_static = "1.5.0"
rand = "0.8.5"
regex = "1.11.1"
reqsign = "0.16.1"
reqwest = { version = "0.12.9", features = ["json"] }
serde = { version = "1.0.214", features = ["derive"] }
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.133"
tokio = { version = "1.41.1", features = ["full"] }
tokio = { version = "1.42.0", features = ["full"] }
tower-http = { version = "0.6.2", features = ["cors", "trace"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "fmt"] }
url = "2.5.4"
utoipa = { version = "5.2.0", features = ["uuid", "chrono"] }
utoipa-swagger-ui = { version = "8.0.3", features = ["axum"] }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<p align="center">Backend to schedule Bakta jobs on a Kubernetes cluster.</p>


<p align="center"><a href="https://github.com/ag-computational-bio/bakta-web-backend" target="_blank"><img src="https://img.shields.io/badge/version-v0.6.1-blue?style=for-the-badge&logo=none"/></a>&nbsp;<a href="https://github.com/ag-computational-bio/bakta-web-backend" target="_blank"></a>&nbsp;<img src="https://img.shields.io/badge/license-gpl-red?style=for-the-badge&logo=none" alt="license" /></p>
<p align="center"><a href="https://github.com/ag-computational-bio/bakta-web-backend" target="_blank"><img src="https://img.shields.io/badge/version-v0.6.3-blue?style=for-the-badge&logo=none"/></a>&nbsp;<a href="https://github.com/ag-computational-bio/bakta-web-backend" target="_blank"></a>&nbsp;<img src="https://img.shields.io/badge/license-gpl-red?style=for-the-badge&logo=none" alt="license" /></p>

# Concept
The Bakta-Web backend implements a simple job scheduling system for the Bakta-Web UI. It requires an S3 compatible object storage, a Kubernetes cluster with ArgoWorkflows to run the jobs. Jobs can be submitted via an API. The API is a simple [REST API](https://api.bakta.computational.bio/). The corresponding repositories can be found here:
Expand Down
5 changes: 4 additions & 1 deletion src/api_structs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ use uuid::Uuid;

#[derive(OpenApi)]
#[openapi(
info(title = "Bakta Web API"),
info(
title = "Bakta Web API",
license(name = "MIT", url = "https://opensource.org/license/mit/")
),
paths(delete_job, init_job, list_jobs, query_result, start_job, version),
components(schemas(
Job,
Expand Down

0 comments on commit 807046a

Please sign in to comment.