mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-22 23:35:44 +00:00
24 lines
824 B
TOML
24 lines
824 B
TOML
[package]
|
|
name = "psysonic-library"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
|
|
[dependencies]
|
|
psysonic-core = { path = "../psysonic-core" }
|
|
psysonic-integration = { path = "../psysonic-integration" }
|
|
|
|
tauri = { version = "2" }
|
|
specta = { version = "=2.0.0-rc.25", features = ["derive"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
rusqlite = { version = "0.40", features = ["bundled"] }
|
|
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls", "gzip", "brotli"] }
|
|
tokio = { version = "1", features = ["rt", "rt-multi-thread", "sync", "macros", "time"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["rt", "macros", "rt-multi-thread", "test-util"] }
|
|
wiremock = { workspace = true }
|