Some basic rust code for new backend

This commit is contained in:
Mawoka
2024-07-12 11:54:32 +02:00
parent 0ad07eced6
commit 2a691817fa
12 changed files with 2588 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# SPDX-FileCopyrightText: 2023 Marlon W (Mawoka)
#
# SPDX-License-Identifier: MPL-2.0
[package]
name = "shared"
version = "0.1.0"
edition = "2021"
[dependencies]
strum = { version = "0.26", features = ["derive"] }
sqlx = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
uuid = { workspace = true }
chrono = { workspace = true }
validator = { version = "0.18", features = ["derive"] }
garde = { version = "0.20", features = ["full"] }