musichoard/Cargo.toml

47 lines
1.3 KiB
TOML
Raw Normal View History

2023-03-28 22:49:59 +02:00
[package]
name = "musichoard"
version = "0.2.0"
2023-03-28 22:49:59 +02:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aho-corasick = { version = "1.1.2", optional = true }
crossterm = { version = "0.27.0", optional = true}
once_cell = { version = "1.19.0", optional = true}
openssh = { version = "0.10.3", features = ["native-mux"], default-features = false, optional = true}
ratatui = { version = "0.26.0", optional = true}
serde = { version = "1.0.196", features = ["derive"], optional = true }
serde_json = { version = "1.0.113", optional = true}
structopt = { version = "0.3.26", optional = true}
tokio = { version = "1.36.0", features = ["rt"], optional = true}
url = { version = "2.5.0" }
uuid = { version = "1.7.0" }
[build-dependencies]
version_check = "0.9.4"
[dev-dependencies]
mockall = "0.12.1"
once_cell = "1.19.0"
tempfile = "3.10.0"
[features]
default = ["database-json", "library-beets"]
bin = ["structopt"]
database-json = ["serde", "serde_json"]
library-beets = []
ssh-library = ["openssh", "tokio"]
tui = ["aho-corasick", "crossterm", "once_cell", "ratatui"]
[[bin]]
name = "musichoard"
required-features = ["bin", "database-json", "library-beets", "ssh-library", "tui"]
[[bin]]
name = "musichoard-edit"
required-features = ["bin", "database-json"]
[package.metadata.docs.rs]
all-features = true