api-backend/Cargo.toml
Neshura ba07d40090
Some checks failed
Run Tests on Code / run-tests (push) Successful in 26s
Build and release binary file and packages / test (push) Successful in 11s
Build and release binary file and packages / build (push) Failing after 25s
Build and release binary file and packages / upload-generic-package (push) Has been skipped
Build and release binary file and packages / upload-debian-package (push) Has been skipped
Build and release binary file and packages / create-release (push) Has been skipped
Release Candidate 0.0.1-rc.1
2024-08-07 18:36:31 +02:00

35 lines
806 B
TOML

[package]
authors = ["Neshura"]
name = "kavita-web-manager-api"
version = "0.0.1-rc.1"
edition = "2021"
description = "API Backend For Easier Uploading To Kavita"
license = "GPL-3.0-or-later"
[package.metadata.deb]
extended-description = "API Backend For Easier Uploading To Kavita"
maintainer-scripts = "debian/"
revision = "1"
depends = ["libc6", "libssl3", "systemd"]
assets = [
[
"target/release/kavita-web-manager-api",
"/usr/local/bin/kavita-web-manager-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"