31 lines
886 B
TOML
31 lines
886 B
TOML
# SPDX-FileCopyrightText: 2024 Simon Bruder <simon@sbruder.de>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
[package]
|
|
name = "li7y"
|
|
version = "0.0.0"
|
|
authors = ["Simon Bruder <simon@sbruder.de>"]
|
|
edition = "2021"
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
[dependencies]
|
|
actix-files = "0.6.6"
|
|
actix-web = "4.8.0"
|
|
barcoders = { version = "2.0.0", default-features = false, features = ["std"] }
|
|
datamatrix = "0.3.1"
|
|
env_logger = "0.11.3"
|
|
log = "0.4.21"
|
|
maud = { version = "0.26.0", features = ["actix-web"] }
|
|
mime = "0.3.17"
|
|
printpdf = "0.7.0"
|
|
rust-fontconfig = "0.1.7"
|
|
serde = { version = "1.0.203", features = ["serde_derive"] }
|
|
sqlx = { version = "0.7.4", features = ["runtime-tokio", "postgres", "uuid", "time"] }
|
|
thiserror = "1.0.61"
|
|
time = { version = "0.3.36", features = ["serde"] }
|
|
uuid = { version = "1.9.0", features = ["serde", "v4"] }
|
|
|
|
[profile.dev.package.sqlx-macros]
|
|
opt-level = 3
|