3 Commits

Author SHA1 Message Date
042b5d4980 Update dependency react-easy-crop to v5.0.2
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2023-09-09 00:26:18 +00:00
935deeca2c Switch tree view to its new package
All checks were successful
continuous-integration/drone/push Build is passing
2023-09-08 11:28:24 +02:00
8ac79020d6 Update Rust crate diesel to 2.1.1
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2023-09-08 00:31:35 +00:00
5 changed files with 3521 additions and 1261 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -13,6 +13,7 @@
"@mui/lab": "^5.0.0-alpha.140",
"@mui/material": "^5.14.5",
"@mui/x-data-grid": "^6.9.2",
"@mui/x-tree-view": "^6.0.0-alpha.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",

View File

@@ -2,7 +2,7 @@ import { mdiBabyCarriage, mdiCross } from "@mdi/js";
import Icon from "@mdi/react";
import ChevronRightIcon from "@mui/icons-material/ChevronRight";
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
import { TreeItem, TreeView } from "@mui/lab";
import { TreeItem, TreeView } from "@mui/x-tree-view";
import React from "react";
import { useNavigate } from "react-router-dom";
import { Couple } from "../api/CoupleApi";

View File

@@ -896,9 +896,9 @@ dependencies = [
[[package]]
name = "diesel"
version = "2.1.0"
version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7a532c1f99a0f596f6960a60d1e119e91582b24b39e2d83a190e61262c3ef0c"
checksum = "d98235fdc2f355d330a8244184ab6b4b33c28679c0b4158f63138e51d6cf7e88"
dependencies = [
"bitflags 2.3.3",
"byteorder",

View File

@@ -16,7 +16,7 @@ actix-cors = "0.6.4"
actix-multipart = "0.6.1"
actix-remote-ip = "0.1.0"
futures-util = "0.3.28"
diesel = { version = "2.0.4", features = ["postgres"] }
diesel = { version = "2.1.1", features = ["postgres"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.96"
mailchecker = "5.0.9"