diff options
| author | Tolmachev Igor <me@igorek.dev> | 2025-08-23 20:34:47 +0900 |
|---|---|---|
| committer | Tolmachev Igor <me@igorek.dev> | 2025-08-23 20:34:47 +0900 |
| commit | 9cb5689c87978c4e05e87f631ebf92a626d583b0 (patch) | |
| tree | 357f507b1f7ad3736d7c90fffc7f064689089f74 /Cargo.toml | |
| parent | b7cecc7c48ec55aa757011937bdee06852b303af (diff) | |
| download | queue_server-9cb5689c87978c4e05e87f631ebf92a626d583b0.tar.gz queue_server-9cb5689c87978c4e05e87f631ebf92a626d583b0.zip | |
Init project
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..bd321fd --- /dev/null +++ b/Cargo.toml | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | [package] | ||
| 2 | name = "itmo_queue_server" | ||
| 3 | version = "0.1.0" | ||
| 4 | edition = "2024" | ||
| 5 | |||
| 6 | [dependencies] | ||
| 7 | axum = "0.8.4" | ||
| 8 | serde = { version = "1.0.219", features = ["derive"] } | ||
| 9 | serde_json = "1.0.143" | ||
| 10 | tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] } | ||
| 11 | tower = "0.5.2" | ||
| 12 | tower-http = { version = "0.6.6", features = ["trace"] } | ||
| 13 | tracing = "0.1.41" | ||
| 14 | tracing-subscriber = "0.3.19" | ||
