xmpd/xmpd-core/Cargo.toml

34 lines
603 B
TOML
Raw Normal View History

2024-10-22 18:54:32 +00:00
[package]
name = "xmpd-core"
edition = "2021"
readme="README.md"
version.workspace = true
authors.workspace = true
repository.workspace = true
license.workspace = true
autobins = false
autotests = false
autoexamples = false
[features]
default=["cli", "gui"]
cli=[]
gui=[]
[[bin]]
name="xmpd"
path="src/main.rs"
[dependencies]
2024-11-15 10:33:11 +00:00
xmpd-cli.path="../xmpd-cli"
xmpd-gui.path="../xmpd-gui"
xmpd-manifest.path="../xmpd-manifest"
xmpd-settings.path = "../xmpd-settings"
clap.workspace=true
camino.workspace = true
anyhow.workspace = true
log.workspace = true
env_logger.workspace = true
2024-11-15 10:33:11 +00:00
dirs.workspace = true