mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-21 23:05:46 +00:00
28 lines
1005 B
TOML
28 lines
1005 B
TOML
[package]
|
|
name = "psysonic-analysis"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
|
|
[dependencies]
|
|
psysonic-core = { path = "../psysonic-core" }
|
|
|
|
tauri = { version = "2" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
specta = { version = "=2.0.0-rc.25", features = ["derive"] }
|
|
tokio = { version = "1", features = ["rt", "time", "sync"] }
|
|
reqwest = { version = "0.13", default-features = false, features = ["stream", "rustls", "gzip", "brotli"] }
|
|
futures-util = "0.3"
|
|
ebur128 = "0.1"
|
|
md5 = "0.8"
|
|
rusqlite = { version = "0.40", features = ["bundled"] }
|
|
symphonia = { version = "0.6", default-features = false, features = ["flac", "mp3", "pcm", "aac", "alac", "isomp4", "vorbis", "ogg", "wav", "adpcm", "all-meta"] }
|
|
symphonia-adapter-libopus = "0.3"
|
|
oximedia-mir = { version = "0.1.7", default-features = false, features = ["tempo", "mood"] }
|
|
|
|
[dev-dependencies]
|
|
tauri = { version = "2", features = ["test"] }
|