moved entry points to bin to clarify

This commit is contained in:
Per Stark
2024-11-22 12:33:47 +01:00
parent 5f64fbd3fb
commit b5ad101d3f
6 changed files with 12 additions and 6 deletions

View File

@@ -8,7 +8,6 @@ async-openai = "0.24.1"
axum = { version = "0.7.5", features = ["multipart", "macros"] }
axum_typed_multipart = "0.12.1"
futures = "0.3.31"
futures-lite = "2.3.0"
lapin = { version = "2.5.0", features = ["serde_json"] }
mime = "0.3.17"
mime_guess = "2.0.5"
@@ -29,8 +28,8 @@ uuid = { version = "1.10.0", features = ["v4", "serde"] }
[[bin]]
name = "server"
path = "src/server.rs"
path = "src/bin/server.rs"
[[bin]]
name = "consumer"
path = "src/consumer.rs"
name = "worker"
path = "src/bin/worker.rs"