librius 0.2.4

A personal library manager CLI written in Rust.
Documentation
[package]
name = "librius"
version = "0.2.4"
edition = "2024"
authors = ["Alessandro Maestri <umpire274@github.com>"]
description = "A personal library manager CLI written in Rust."
license = "MIT"
readme = "README.md"
homepage = "https://github.com/umpire274/librius"
repository = "https://github.com/umpire274/librius"
keywords = ["books", "library", "cli", "sqlite", "manager"]
categories = ["command-line-utilities", "database", "data-structures", "rust-patterns"]
exclude = [
    "target/*",
    ".idea/*",
    ".github/*",
    ".gitignore",
    "config/*",
    "*.sh",
    "*.bat",
]

[dependencies]
clap = { version = "4.5.48", features = ["derive"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
once_cell = "1.21.3"
chrono = { version = "0.4.42", features = ["serde"] }
serde_yaml = "0.9.33"
rusqlite = { version = "0.37.0", features = ["bundled"] }
colored = "3.0.0"
zip = { version = "6.0.0", optional = true }
flate2 = { version = "1.1.4", optional = true }
tar = { version = "0.4.44", optional = true }
dirs = "6.0.0"
umya-spreadsheet = "2.3.3"
csv = "1.3.1"

[target.'cfg(windows)'.dependencies]
zip = "6.0.0"

[target.'cfg(not(windows))'.dependencies]
flate2 = "1.1.4"
tar = "0.4.44"

[profile.release]
opt-level = 3