Neshura
7905faa411
All checks were successful
Run Tests on Code / run-tests (push) Successful in 42s
Build and release binary file and packages / test (push) Successful in 44s
Build and release binary file and packages / build (push) Successful in 41s
Build and release binary file and packages / upload-generic-package (push) Successful in 1s
Build and release binary file and packages / upload-debian-package (push) Successful in 2s
Build and release binary file and packages / create-release (push) Successful in 13s
39 lines
891 B
TOML
39 lines
891 B
TOML
[package]
|
|
authors = ["Neshura"]
|
|
name = "api-backend"
|
|
version = "0.0.8"
|
|
edition = "2021"
|
|
description = "API Backend For Easier Uploading To Kavita"
|
|
license = "GPL-3.0-or-later"
|
|
|
|
|
|
[package.metadata.deb]
|
|
name = "kwm-api"
|
|
extended-description = "API Backend For Easier Uploading To Kavita"
|
|
maintainer-scripts = "debian/"
|
|
revision = "1"
|
|
depends = ["libc6", "libssl3", "systemd"]
|
|
assets = [
|
|
[
|
|
"target/release/api-backend",
|
|
"/usr/local/bin/kwm-api",
|
|
"755",
|
|
]
|
|
]
|
|
systemd-units = { unit-name = "kwm-api", enable = false }
|
|
|
|
[dependencies]
|
|
axum = "0.7"
|
|
chrono = "0.4"
|
|
dotenv = "0.15"
|
|
futures = "0.3"
|
|
log = "0.4"
|
|
parking_lot = "0.12"
|
|
reqwest = "0.12"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
systemd-journal-logger = "2.1"
|
|
tokio = {version = "1.39", features = ["full"]}
|
|
tokio-util = { version = "0.7", features = ["io"] }
|
|
urlencoding = "2.1"
|