809f27cf01
* Queue song (#57) * Added code to queue song * Making functions async * Able to queue song * Cleanup * Link user to queued song (#59) * Renaming queue_song function * Queued song linked to user * Cleanup and code formatting * Queue metadata (#60) * Added code to queue metadata * Code formatting * Queue coverart (#61) * Added queued coverart code * Code formatting and cleanup * Link queued coverart to queued song (#62) * Added code to link queued coverart to queued song * Code formatting * Update queued song status (#63) * Added function call to update queued song status * Added skeleton method * Added more code to the method * Got it working * Code formatting * Multi upload (#64) * Added comments * Added TODO * Got it working * Updated documentation * Version bump * Code formatting and cleanup
18 lines
692 B
TOML
18 lines
692 B
TOML
[package]
|
|
name = "icarus-dm"
|
|
version = "0.6.2"
|
|
rust-version = "1.88"
|
|
edition = "2024"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[dependencies]
|
|
futures = { version = "0.3.31" }
|
|
http = { version = "1.3.1" }
|
|
reqwest = { version = "0.12.20", features = ["json", "blocking", "multipart", "stream"] }
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde_json = "1.0.140"
|
|
tokio = { version = "1.45.1", features = ["full"] }
|
|
tokio-util = { version = "0.7.15", features = ["codec"] }
|
|
uuid = { version = "1.17.0", features = ["v4", "serde"] }
|
|
icarus_models = { git = "ssh://git@git.kundeng.us/phoenix/icarus_models.git", tag = "v0.5.6" }
|