about summary refs log tree commit diff stats
path: root/crates/rocie-server/Cargo.toml
blob: 36b271b0e621f7f0115ad412f9a106a796677215 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# rocie - An enterprise grocery management system
#
# Copyright (C) 2024 Benedikt Peetz <benedikt.peetz@b-peetz.de>
# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of Rocie.
#
# You should have received a copy of the License along with this program.
# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.

[package]
name = "rocie-server"
keywords = []
categories = []
default-run = "rocie-server"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
description.workspace = true
publish = true

[lints]
workspace = true

[dev-dependencies]
rocie-client.workspace = true
tokio.workspace = true

[dependencies]
actix-identity = "0.9.0"
actix-session = { version = "0.11.0", features = ["cookie-session"] }
actix-web = "4.12.1"
argon2 = "0.5.3"
chrono = "0.4.42"
clap = { version = "4.5.53", features = ["derive", "env"] }
cooklang = "0.17.14"
env_logger = "0.11.8"
log = "0.4.29"
percent-encoding = "2.3.2"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
serde_yaml = "0.9.34"
sqlx = { version = "0.8.6", features = ["runtime-tokio", "sqlite"] }
thiserror = "2.0.17"
tokio.workspace = true
utoipa = { version = "5.4.0", features = ["actix_extras", "uuid"] }
uuid = { version = "1.19.0", features = ["v4", "serde"] }

[package.metadata.docs.rs]
all-features = true