Added callers moulde (#120)

* Added callers moulde

* Code formatting

* Added uuid dependency

* Added queue_song endpoint

* Added endpoint to router

* Added dependencies for postgres

* Added migrations directory

* Added more code

* Added migrations

* Removed migration

* Docker fixes

* Updated gitignore

* Updated env sample file

* Endpoint url fix

* Updated env sample

* Updated docker file to copy migrations

* Might undo later

* Updated env sample and docker compose

* Updated cargo dependencies

* Saving changes

* Workflow fix

* Will need to take another look at the dependencies again

* Added code

* Test is not finished yet

* Warning fix for now

* Updated workflow to setup database

* Workflow fix

* Workflow fix attempt

* Warning fix

* Warning fix

* Updated workflow

* Added test files

Might change later

* Added more crates

* Added more test code

Not finished

* Formatting

* Close, but far

* I believe it is now working

* Formatting

* Added more crates

* Code cleanup

* Code reformatting

* Code cleanup

* Crate cleanup

* Cleanup
This commit was merged in pull request #120.
This commit is contained in:
KD
2025-04-22 20:08:24 -04:00
committed by GitHub
parent 0ba2d4e8b9
commit 2823452198
13 changed files with 411 additions and 26 deletions
+15 -2
View File
@@ -4,10 +4,23 @@ version = "0.2.0"
edition = "2024"
[dependencies]
axum = { version = "0.8.3" }
axum = { version = "0.8.3", features = ["multipart"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = { version = "1.0.140" }
tokio = { version = "1.44.2", features = ["rt-multi-thread"] }
tower = { version = "0.5.2" }
tokio = { version = "1.44.2", features = ["full"] }
tokio-util = { version = "0.7.14" }
tower-http = { version = "0.6.2", features = ["timeout"] }
tracing-subscriber = "0.3.19"
# mime = { version = "0.3.17" }
# mime_guess = { version = "2.0.5" }
futures = { version = "0.3.31" }
uuid = { version = "1.16.0", features = ["v4", "serde"] }
sqlx = { version = "0.8.5", features = ["postgres", "runtime-tokio-native-tls", "time", "uuid"] }
dotenvy = { version = "0.15.7" }
icarus_meta = { git = "ssh://git@git.kundeng.us/phoenix/icarus_meta.git", tag = "v0.1.30" }
icarus_models = { git = "ssh://git@git.kundeng.us/phoenix/icarus_models.git", tag = "v0.4.3" }
[dev-dependencies]
common-multipart-rfc7578 = { version = "0.7.0" }
url = { version = "2.5.4" }