bliplab/Cargo.toml
2025-07-02 11:43:47 +02:00

43 lines
1.1 KiB
TOML

[package]
name = "bliplab"
version = "0.0.3"
edition = "2024"
authors = ["Breval Ferrari <breval.ferrari@fish.golf>"]
description = "Tool to combine several BLIP channels in a song"
license = "MIT"
repository = "https://gitdab.com/breval/blip"
[lib]
name = "bliplab"
[dependencies]
anyhow = { version = "1", optional = true }
bliplib = { version = "0.2.5", default-features = false }
derive-new = "0.7.0"
serde = { version = "1.0", features = ["derive"] }
serde_with = "3.13"
serde_json = { version = "1.0", optional = true }
serde_yaml = { version = "0.9.33", optional = true }
ron = { version = "0.10", optional = true }
json5 = { version = "0.4", optional = true }
serde-lexpr = { version = "0.1", optional = true }
cfg-exclusive = { version = "0.0.1", optional = true }
cfg-if = { version = "1.0", optional = true }
[features]
bin = ["anyhow", "cfg-exclusive", "cfg-if"]
example-skip-defaults = []
json = ["serde_json"]
json5 = ["dep:json5"]
yaml = ["serde_yaml"]
ron = ["dep:ron"]
lexpr = ["serde-lexpr"]
[[bin]]
name = "bliplab"
path = "src/cli/main.rs"
required-features = ["bin"]
[lints.rust]
missing_docs = "warn"