2024-06-24 22:46:04 +02:00
|
|
|
# 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]
|
2024-07-13 13:41:23 +02:00
|
|
|
actix-identity = "0.7.1"
|
|
|
|
actix-session = { version = "0.9.0", features = ["cookie-session"] }
|
|
|
|
actix-web = { version = "4.8.0", features = ["cookies"] }
|
2024-07-08 19:35:22 +02:00
|
|
|
barcoders = { version = "2.0.0", default-features = false, features = ["std"] }
|
2024-07-13 13:41:23 +02:00
|
|
|
base64 = "0.22.1"
|
2024-07-08 19:35:22 +02:00
|
|
|
datamatrix = "0.3.1"
|
2024-07-14 01:28:56 +02:00
|
|
|
enum-iterator = "2.1.0"
|
2024-06-24 22:46:04 +02:00
|
|
|
env_logger = "0.11.3"
|
2024-07-13 13:41:23 +02:00
|
|
|
futures-util = "0.3.30"
|
2024-06-24 22:46:04 +02:00
|
|
|
log = "0.4.21"
|
2024-07-11 01:12:34 +02:00
|
|
|
maud = { version = "0.26.0", features = ["actix-web"] }
|
2024-07-08 19:35:22 +02:00
|
|
|
mime = "0.3.17"
|
2024-07-14 18:31:08 +02:00
|
|
|
mime_guess = "2.0.5"
|
2024-07-08 19:35:22 +02:00
|
|
|
printpdf = "0.7.0"
|
2024-07-14 18:31:08 +02:00
|
|
|
rust-embed = { version = "8.5.0", features = ["actix"] }
|
2024-06-24 22:46:04 +02:00
|
|
|
serde = { version = "1.0.203", features = ["serde_derive"] }
|
2024-07-14 13:11:42 +02:00
|
|
|
serde_urlencoded = "0.7.1"
|
2024-07-14 01:28:56 +02:00
|
|
|
serde_variant = "0.1.3"
|
2024-07-11 21:50:03 +02:00
|
|
|
sqlx = { version = "0.7.4", features = ["runtime-tokio", "postgres", "uuid", "time"] }
|
2024-07-08 19:35:22 +02:00
|
|
|
thiserror = "1.0.61"
|
2024-07-11 21:50:03 +02:00
|
|
|
time = { version = "0.3.36", features = ["serde"] }
|
2024-06-24 22:46:04 +02:00
|
|
|
uuid = { version = "1.9.0", features = ["serde", "v4"] }
|
2024-07-11 17:25:01 +02:00
|
|
|
|
|
|
|
[profile.dev.package.sqlx-macros]
|
|
|
|
opt-level = 3
|