api-backend/Cargo.toml
Neshura 99a7811459
Some checks failed
Run Tests on Code / run-tests (push) Successful in 29s
Build and release binary file and packages / test (push) Successful in 27s
Build and release binary file and packages / build (push) Successful in 25s
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) Failing after 1s
Build and release binary file and packages / create-release (push) Successful in 9s
Release Candidate 0.0.1-rc.6
2024-08-07 19:36:00 +02:00

36 lines
786 B
TOML

[package]
authors = ["Neshura"]
name = "api-backend"
version = "0.0.1-rc.6"
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 = { enable = false }
[dependencies]
axum = "0.7"
chrono = "0.4"
dotenv = "0.15"
futures = "0.3"
log = "0.4"
parking_lot = "0.12"
systemd-journal-logger = "2.1"
tokio = {version = "1.39", features = ["full"]}
tokio-util = { version = "0.7", features = ["io"] }
urlencoding = "2.1"