[READ-ONLY] Mirror of https://github.com/probablykasper/mr-tagger. Music file tagging app for Mac, Linux and Windows
audio linux macos music tagger tauri windows
0

Configure Feed

Select the types of activity you want to include in your feed.

mr-tagger / src-tauri / Cargo.toml
863 B 30 lines
1[package] 2name = "mr-tagger" 3version = "0.2.1" 4description = "Spotlight alternative" 5edition = "2021" 6 7# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 9[lib] 10# The `_lib` suffix may seem redundant but it is necessary 11# to make the lib name unique and wouldn't conflict with the bin name. 12# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519 13name = "tauri_app_lib" 14crate-type = ["staticlib", "cdylib", "rlib"] 15 16[build-dependencies] 17tauri-build = { version = "2", features = [] } 18 19[dependencies] 20serde_json = "1.0" 21backtrace = "0.3" 22serde = { version = "1.0", features = ["derive"] } 23tauri = { version = "2", features = ["devtools"] } 24id3 = "1.7" 25mp4ameta = "0.11" 26base64 = "0.21" 27lofty = "0.13" 28tauri-plugin-dialog = "2" 29tauri-plugin-shell = "2" 30tauri-plugin-opener = "2"