mirror of
https://github.com/KRTirtho/spotube.git
synced 2026-09-20 06:34:00 +00:00
20 lines
492 B
TOML
20 lines
492 B
TOML
[package]
|
|
name = "compose-app"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
uniffi = { version = "0.29.4", features = ["tokio"] }
|
|
lofty = "0.24.0"
|
|
discord-rich-presence = "1.1.0"
|
|
thiserror = "2.0"
|
|
parking_lot = "0.12"
|
|
webrtc = { path = "../build/webrtc-rs" }
|
|
rtc = { path = "../build/webrtc-rs/rtc" }
|
|
async-trait = "0.1"
|
|
bytes = "1"
|
|
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "staticlib"]
|
|
path = "src/commonMain/rust/lib.rs" |