refactor: remove entity crate and update dependencies in backend
Some checks failed
ci/woodpecker/push/check_fmt Pipeline failed

This commit is contained in:
Mika Bomm 2025-04-03 11:11:26 +02:00
parent 60805ea449
commit c8c6d4cf0a
8 changed files with 5 additions and 28 deletions

View file

@ -1,10 +1,5 @@
[workspace]
members = [
"crates/backend",
"crates/entity",
"crates/migration",
"crates/xtask",
]
members = ["crates/backend", "crates/migration", "crates/xtask"]
resolver = "3"
[workspace.package]
@ -13,7 +8,6 @@ version = "0.1.0"
edition = "2024"
[workspace.dependencies]
entity = { path = "crates/entity" }
migration = { path = "crates/migration" }
serde = { version = "*", features = ["derive"] }

View file

@ -4,7 +4,6 @@ version = { workspace = true }
edition = { workspace = true }
[dependencies]
entity = { workspace = true }
migration = { workspace = true }
actix-web = "4"

View file

@ -1,6 +1,5 @@
use sea_orm::{ConnectOptions, DatabaseConnection};
mod auth;
pub mod entity;
mod group;
pub mod project;

View file

@ -1 +0,0 @@

View file

@ -3,7 +3,9 @@ use super::Database;
impl Database {
async fn create_user() {}
async fn verify_user() {}
async fn verify_local_user() {}
async fn verify_ldap_user() {}
async fn change_user_password() {}
}

View file

@ -1,8 +0,0 @@
[package]
name = "entity"
version = { workspace = true }
edition = { workspace = true }
[dependencies]
serde = { workspace = true }
sea-orm = { workspace = true }

View file

@ -1,8 +0,0 @@
//! `SeaORM` Entity, @generated by sea-orm-codegen 1.1.4
pub mod prelude;
pub mod group;
pub mod project;
pub mod user;
pub mod user_group_project;

View file

@ -50,7 +50,7 @@ fn main() {
.expect("running entity generate");
}
Some(("clean", _)) => {
let dir = workspace_dir.join("crates/entity/src");
let dir = workspace_dir.join("crates/backend/src/db/entity");
let files = dir.read_dir().expect("Failed to read entity directory");
for file in files {
let file = file.expect("failed to get file path");