mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-22 07:15:47 +00:00
34 lines
1.1 KiB
TOML
34 lines
1.1 KiB
TOML
[package]
|
|
name = "psysonic-syncfs"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
|
|
[dependencies]
|
|
psysonic-core = { path = "../psysonic-core" }
|
|
psysonic-library = { path = "../psysonic-library" }
|
|
psysonic-analysis = { path = "../psysonic-analysis" }
|
|
psysonic-audio = { path = "../psysonic-audio" }
|
|
|
|
tauri = { version = "2" }
|
|
tauri-plugin-shell = "2"
|
|
tauri-plugin-process = "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", "json", "rustls", "blocking", "gzip", "brotli"] }
|
|
futures-util = "0.3"
|
|
sysinfo = { version = "0.39", default-features = false, features = ["disk"] }
|
|
url = "2"
|
|
md5 = "0.8"
|
|
lofty = "0.24"
|
|
id3 = "1.17"
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|
|
tokio = { version = "1", features = ["rt", "time", "sync", "macros", "fs", "rt-multi-thread"] }
|
|
wiremock = { workspace = true }
|