bibliofile/Cargo.toml

25 lines
757 B
TOML
Raw Normal View History

2023-03-17 01:11:57 +00:00
[package]
name = "bibliofile"
version = "0.1.0"
edition = "2021"
2023-11-20 14:54:11 +00:00
license-file = "LICENSE"
description = "A TUI epub reader inspired by DOS-era programs"
readme="README.md"
documentation = "https://git.whoisthisjoker.com/Daniel/bibliofile#bibliofile"
keywords = ["ebook", "epub", "reader", "ebook reader", "termion", "TUI", "tui"]
category = ["parsing", "command-line-utilities"]
authors = ["Daniel Jones <daniel@whoisthisjoker.com>"]
rust-version = "1.73"
repository = "https://git.whoisthisjoker.com/Daniel/bibliofile"
2023-03-17 01:11:57 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-05-29 22:41:05 +00:00
epub = "2.0.0"
2023-07-24 23:36:08 +00:00
scraper = "*"
[dependencies.cursive]
version = "*"
default-features = false
features = ["termion-backend"]