20 lines
438 B
TOML
20 lines
438 B
TOML
[package]
|
|
name = "mps"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["NGnius (Graham) <ngniusness@gmail.com>"]
|
|
description = "Music Playlist Scripting language (MPS)"
|
|
license = "LGPL-2.1-only OR GPL-2.0-or-later"
|
|
license-file = "LICENSE"
|
|
readme = "README.md"
|
|
|
|
[workspace]
|
|
members = [
|
|
"mps-interpreter",
|
|
"mps-player"
|
|
]
|
|
|
|
[dependencies]
|
|
# local
|
|
mps-interpreter = { path = "./mps-interpreter" }
|
|
mps-player = { path = "./mps-player" }
|