2021-12-03 21:13:19 +00:00
|
|
|
[package]
|
|
|
|
name = "mps-interpreter"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-12-12 19:59:43 +00:00
|
|
|
rusqlite = { version = "0.26.3" }
|
2021-12-03 21:13:19 +00:00
|
|
|
symphonia = { version = "0.4.0", optional = true, features = [
|
|
|
|
"aac", "flac", "mp3", "pcm", "vorbis", "isomp4", "ogg", "wav"
|
|
|
|
] }
|
2021-12-29 17:12:58 +00:00
|
|
|
dirs = { version = "4.0.0" }
|
2022-01-01 00:56:46 +00:00
|
|
|
regex = { version = "1" }
|
|
|
|
shellexpand = { version = "2.1", optional = true }
|
2021-12-03 21:13:19 +00:00
|
|
|
|
|
|
|
[features]
|
2022-01-01 00:56:46 +00:00
|
|
|
default = [ "music_library", "ergonomics" ]
|
2021-12-29 17:12:58 +00:00
|
|
|
music_library = [ "symphonia" ] # song metadata parsing and database auto-population
|
2022-01-01 00:56:46 +00:00
|
|
|
ergonomics = ["shellexpand"]
|