From dc33fa8416ce6b447494c6efdf46518da37ac1cc Mon Sep 17 00:00:00 2001 From: Tolmachev Igor Date: Tue, 26 Aug 2025 21:13:53 +0900 Subject: Add database migration and entities --- Cargo.toml | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index bd321fd..9b59ed0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,9 +2,16 @@ name = "itmo_queue_server" version = "0.1.0" edition = "2024" +publish = false + +[workspace] +members = [".", "entity", "migration"] [dependencies] axum = "0.8.4" +entity = { version = "0.1.0", path = "entity" } +migration = { version = "0.1.0", path = "migration" } +sea-orm = { version = "1.1.14", features = ["sqlx-postgres", "runtime-tokio-rustls"] } serde = { version = "1.0.219", features = ["derive"] } serde_json = "1.0.143" tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] } -- cgit v1.2.3