songbook 0.1.1

Songbook with TUI and CLI
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "songbook"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Songbook with TUI and CLI"
readme = "README.md"
keywords = [
    "song",
    "chord",
    "songbook",
    "tui",
]
categories = ["command-line-utilities"]
license = "GPL-3.0"
repository = "https://github.com/KiberBomzh/songbook-tui"

[features]
cli = [
    "dep:clap",
    "song_library",
]
default = []
song_library = [
    "dep:dirs",
    "dep:edit",
    "dep:include_dir",
    "dep:serde_yaml",
]
tui = [
    "dep:ratatui",
    "dep:rfd",
    "dep:toml",
    "cli",
]

[lib]
name = "songbook"
path = "src/core/lib.rs"

[[bin]]
name = "songbook"
path = "src/main.rs"
required-features = ["cli"]

[dependencies.anyhow]
version = "1.0.100"

[dependencies.clap]
version = "4.5.56"
features = ["derive"]
optional = true

[dependencies.crossterm]
version = "0.29.0"

[dependencies.dirs]
version = "6.0.0"
optional = true

[dependencies.edit]
version = "0.1.5"
optional = true

[dependencies.include_dir]
version = "0.7.4"
optional = true

[dependencies.ratatui]
version = "0.30.0"
optional = true

[dependencies.rfd]
version = "0.17.2"
features = ["gtk3"]
optional = true
default-features = false

[dependencies.serde]
version = "1.0.228"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.149"

[dependencies.serde_yaml]
version = "0.9.34"
optional = true

[dependencies.toml]
version = "1.0.3"
optional = true

[dependencies.zip]
version = "8.2.0"