aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml7
1 files changed, 5 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 3dc810d..4c8f11f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "itmo_queue_server" 2name = "itmo_queue_server"
3version = "0.1.0" 3version = "1.0.0"
4edition = "2024" 4edition = "2024"
5publish = false 5publish = false
6 6
@@ -18,9 +18,12 @@ jsonwebtoken = "9.3.1"
18migration = { version = "0.1.0", path = "migration" } 18migration = { version = "0.1.0", path = "migration" }
19sea-orm = { version = "1.1.14", features = ["sqlx-postgres", "runtime-tokio-rustls"] } 19sea-orm = { version = "1.1.14", features = ["sqlx-postgres", "runtime-tokio-rustls"] }
20serde = { version = "1.0.219", features = ["derive"] } 20serde = { version = "1.0.219", features = ["derive"] }
21serde_json = "1.0.143" 21serde_json = { version = "1.0.143", features = ["preserve_order"] }
22tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] } 22tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] }
23tower = "0.5.2" 23tower = "0.5.2"
24tower-http = { version = "0.6.6", features = ["trace"] } 24tower-http = { version = "0.6.6", features = ["trace"] }
25tracing = "0.1.41" 25tracing = "0.1.41"
26tracing-subscriber = "0.3.19" 26tracing-subscriber = "0.3.19"
27utoipa = { version = "5.4.0", features = ["axum_extras", "chrono", "preserve_order", "preserve_path_order"] }
28utoipa-axum = "0.2.0"
29utoipa-scalar = { version = "0.3.0", features = ["axum"] }