d4c025511d
* Added endpoint - no code - for updating the song from the queue * Added endpoint to update song from queue * Endpoint is now available * Fixed endoint uri * Added tempfile crate for tests * Test is working * Test is operational * Code formatting * Code cleanup
29 lines
1.1 KiB
TOML
29 lines
1.1 KiB
TOML
[package]
|
|
name = "icarus"
|
|
version = "0.2.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
axum = { version = "0.8.3", features = ["multipart"] }
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde_json = { version = "1.0.140" }
|
|
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"] }
|
|
time = { version = "0.3.41", features = ["formatting", "macros", "parsing", "serde"] }
|
|
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" }
|
|
tempfile = { version = "3.19.1" }
|