[package]
edition = "2021"
rust-version = "1.75"
name = "verso-reader"
version = "0.1.0"
build = false
exclude = [
".github/",
".internal/",
"tests/fixtures/",
"migrations/V2*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A terminal EPUB reader with vim navigation, a Kindle-style library, and Markdown highlight export"
homepage = "https://github.com/romankhadka/verso"
readme = "README.md"
keywords = [
"epub",
"reader",
"tui",
"vim",
"terminal",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/romankhadka/verso"
[lib]
name = "verso"
path = "src/lib.rs"
[[bin]]
name = "verso"
path = "src/main.rs"
[[test]]
name = "anchor"
path = "tests/anchor.rs"
[[test]]
name = "cache"
path = "tests/cache.rs"
[[test]]
name = "chrome"
path = "tests/chrome.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "defaults"
path = "tests/defaults.rs"
[[test]]
name = "epub_guard"
path = "tests/epub_guard.rs"
[[test]]
name = "epub_meta"
path = "tests/epub_meta.rs"
[[test]]
name = "export_markdown"
path = "tests/export_markdown.rs"
[[test]]
name = "hashing"
path = "tests/hashing.rs"
[[test]]
name = "highlights_delete"
path = "tests/highlights_delete.rs"
[[test]]
name = "keymap_cmd_action"
path = "tests/keymap_cmd_action.rs"
[[test]]
name = "keymap_merge"
path = "tests/keymap_merge.rs"
[[test]]
name = "keymap_table"
path = "tests/keymap_table.rs"
[[test]]
name = "keys"
path = "tests/keys.rs"
[[test]]
name = "library_reanchor_trigger"
path = "tests/library_reanchor_trigger.rs"
[[test]]
name = "library_scan"
path = "tests/library_scan.rs"
[[test]]
name = "library_scan_broken"
path = "tests/library_scan_broken.rs"
[[test]]
name = "library_scan_softdelete"
path = "tests/library_scan_softdelete.rs"
[[test]]
name = "library_view"
path = "tests/library_view.rs"
[[test]]
name = "library_watch"
path = "tests/library_watch.rs"
[[test]]
name = "linebreak"
path = "tests/linebreak.rs"
[[test]]
name = "normalise"
path = "tests/normalise.rs"
[[test]]
name = "page"
path = "tests/page.rs"
[[test]]
name = "paths"
path = "tests/paths.rs"
[[test]]
name = "plaintext"
path = "tests/plaintext.rs"
[[test]]
name = "reader_load_spine"
path = "tests/reader_load_spine.rs"
[[test]]
name = "reader_snapshots"
path = "tests/reader_snapshots.rs"
[[test]]
name = "reanchor"
path = "tests/reanchor.rs"
[[test]]
name = "search"
path = "tests/search.rs"
[[test]]
name = "store_bookmarks"
path = "tests/store_bookmarks.rs"
[[test]]
name = "store_books"
path = "tests/store_books.rs"
[[test]]
name = "store_highlights"
path = "tests/store_highlights.rs"
[[test]]
name = "store_migrate"
path = "tests/store_migrate.rs"
[[test]]
name = "store_progress"
path = "tests/store_progress.rs"
[[test]]
name = "styled"
path = "tests/styled.rs"
[dependencies.ammonia]
version = "4"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.crossterm]
version = "0.27"
[dependencies.directories]
version = "5"
[dependencies.hex]
version = "0.4"
[dependencies.hyphenation]
version = "0.8"
features = ["embed_en-us"]
[dependencies.lru]
version = "0.12"
[dependencies.notify]
version = "6"
[dependencies.ratatui]
version = "0.27"
[dependencies.rbook]
version = "0.5"
[dependencies.refinery]
version = "0.8"
features = ["rusqlite"]
[dependencies.refinery-core]
version = "0.8"
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.scraper]
version = "0.19"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.shellexpand]
version = "3"
[dependencies.textwrap]
version = "0.16"
features = ["hyphenation"]
[dependencies.thiserror]
version = "1"
[dependencies.time]
version = "0.3"
features = [
"formatting",
"parsing",
"serde",
]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-appender]
version = "0.2"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.unicode-bidi]
version = "0.3"
[dependencies.unicode-linebreak]
version = "0.1"
[dependencies.unicode-segmentation]
version = "1"
[dependencies.zip]
version = "0.6"
[dev-dependencies.insta]
version = "1"
features = ["yaml"]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.zip]
version = "0.6"
[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"