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-06-25 13:30:51 +02:00
|
|
|
actix-files = "0.6.6"
|
2024-06-24 22:46:04 +02:00
|
|
|
actix-web = "4.8.0"
|
2024-07-03 14:19:58 +02:00
|
|
|
askama = { version = "0.12.1", features = ["with-actix-web"] }
|
|
|
|
askama_actix = "0.14.0"
|
2024-06-24 22:46:04 +02:00
|
|
|
diesel = { version = "2.2.1", features = ["postgres", "r2d2", "uuid"] }
|
2024-07-07 13:48:31 +02:00
|
|
|
diesel-derive-enum = { version = "2.1.0", features = ["postgres"] }
|
2024-06-24 22:46:04 +02:00
|
|
|
diesel_migrations = { version = "2.2.0", features = ["postgres"] }
|
|
|
|
env_logger = "0.11.3"
|
|
|
|
log = "0.4.21"
|
|
|
|
serde = { version = "1.0.203", features = ["serde_derive"] }
|
|
|
|
uuid = { version = "1.9.0", features = ["serde", "v4"] }
|