2021-12-03 21:13:19 +00:00
|
|
|
[package]
|
2022-07-01 22:33:37 +01:00
|
|
|
name = "muss"
|
2022-07-09 02:24:46 +01:00
|
|
|
version = "0.9.0"
|
2021-12-03 21:13:19 +00:00
|
|
|
edition = "2021"
|
|
|
|
authors = ["NGnius (Graham) <ngniusness@gmail.com>"]
|
2022-07-01 22:33:37 +01:00
|
|
|
description = "Music Set Script language (MuSS)"
|
2022-02-02 21:08:10 +00:00
|
|
|
license = "LGPL-2.1-only OR GPL-3.0-only"
|
2023-07-15 21:15:50 +01:00
|
|
|
repository = "https://git.ngni.us/NGnius/muss"
|
2022-01-25 15:03:27 +00:00
|
|
|
keywords = ["audio", "playlist", "scripting", "language"]
|
2022-01-01 04:39:06 +00:00
|
|
|
readme = "README.md"
|
2022-01-26 20:36:31 +00:00
|
|
|
exclude = ["extras/"]
|
2021-12-03 21:13:19 +00:00
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = [
|
2022-07-01 21:20:52 +01:00
|
|
|
"interpreter",
|
|
|
|
"player",
|
|
|
|
"m3u8"
|
2021-12-03 21:13:19 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# local
|
2022-07-09 02:24:46 +01:00
|
|
|
muss-interpreter = { version = "0.9.0", path = "./interpreter" }
|
2022-01-03 01:20:09 +00:00
|
|
|
# external
|
|
|
|
clap = { version = "3.0", features = ["derive"] }
|
2022-03-05 01:37:59 +00:00
|
|
|
console = { version = "0.15" }
|
2022-07-09 02:24:46 +01:00
|
|
|
lazy_static = { version = "1.4" }
|
2022-01-07 18:22:22 +00:00
|
|
|
|
2023-08-23 02:05:41 +01:00
|
|
|
# cli add to playlist functionality
|
|
|
|
m3u8-rs = { version = "^3.0.0" }
|
|
|
|
|
2022-01-07 18:22:22 +00:00
|
|
|
[target.'cfg(not(target_os = "linux"))'.dependencies]
|
2022-07-09 02:24:46 +01:00
|
|
|
muss-player = { version = "0.9.0", path = "./player", default-features = false, features = ["mpd"] }
|
2022-01-07 18:22:22 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
|
|
# TODO fix need to specify OS-specific dependency of mps-player
|
2022-07-09 02:24:46 +01:00
|
|
|
muss-player = { version = "0.9.0", path = "./player", features = ["mpris-player", "mpd"] }
|
2022-02-24 21:09:27 +00:00
|
|
|
|
|
|
|
[profile.release]
|
2022-03-25 19:58:15 +00:00
|
|
|
debug = false
|
2022-02-24 21:09:27 +00:00
|
|
|
strip = true
|
|
|
|
lto = true
|
|
|
|
codegen-units = 4
|
|
|
|
|
2022-03-26 02:52:17 +00:00
|
|
|
[profile.bench]
|
|
|
|
lto = false
|
|
|
|
|
2022-03-27 18:30:47 +01:00
|
|
|
[profile.dev.package.bliss-audio-symphonia]
|
2022-02-24 21:09:27 +00:00
|
|
|
debug-assertions = false
|
|
|
|
overflow-checks = false
|
|
|
|
debug = true
|
|
|
|
opt-level = 3
|
|
|
|
|
|
|
|
[profile.dev.package."*"]
|
|
|
|
debug-assertions = false
|
|
|
|
overflow-checks = false
|
|
|
|
debug = true
|
|
|
|
opt-level = 3
|