refactor: remove entity crate and update dependencies in backend
Some checks failed
ci/woodpecker/push/check_fmt Pipeline failed
Some checks failed
ci/woodpecker/push/check_fmt Pipeline failed
This commit is contained in:
parent
60805ea449
commit
c8c6d4cf0a
8 changed files with 5 additions and 28 deletions
|
@ -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"] }
|
||||
|
|
|
@ -4,7 +4,6 @@ version = { workspace = true }
|
|||
edition = { workspace = true }
|
||||
|
||||
[dependencies]
|
||||
entity = { workspace = true }
|
||||
migration = { workspace = true }
|
||||
|
||||
actix-web = "4"
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
use sea_orm::{ConnectOptions, DatabaseConnection};
|
||||
|
||||
mod auth;
|
||||
pub mod entity;
|
||||
mod group;
|
||||
pub mod project;
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
|
|
@ -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() {}
|
||||
}
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
[package]
|
||||
name = "entity"
|
||||
version = { workspace = true }
|
||||
edition = { workspace = true }
|
||||
|
||||
[dependencies]
|
||||
serde = { workspace = true }
|
||||
sea-orm = { workspace = true }
|
|
@ -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;
|
|
@ -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");
|
||||
|
|
Loading…
Add table
Reference in a new issue