aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml7
1 files changed, 7 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index bd321fd..9b59ed0 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,9 +2,16 @@
2name = "itmo_queue_server" 2name = "itmo_queue_server"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2024" 4edition = "2024"
5publish = false
6
7[workspace]
8members = [".", "entity", "migration"]
5 9
6[dependencies] 10[dependencies]
7axum = "0.8.4" 11axum = "0.8.4"
12entity = { version = "0.1.0", path = "entity" }
13migration = { version = "0.1.0", path = "migration" }
14sea-orm = { version = "1.1.14", features = ["sqlx-postgres", "runtime-tokio-rustls"] }
8serde = { version = "1.0.219", features = ["derive"] } 15serde = { version = "1.0.219", features = ["derive"] }
9serde_json = "1.0.143" 16serde_json = "1.0.143"
10tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] } 17tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] }