[package]
edition = "2021"
name = "repub-rs"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust library and binary for converting mhtml webpages into remarkable-style summarized epubs"
readme = "README.md"
keywords = [
"mhtml",
"epub",
"remarkable",
]
license = "MIT"
repository = "https://github.com/erikbrinkman/repub-rs"
[features]
binary = [
"clap",
"stderrlog",
"image",
]
[lib]
name = "repub"
path = "src/lib.rs"
[[bin]]
name = "repub-rs"
path = "src/main.rs"
required-features = ["binary"]
[dependencies.clap]
version = "4.0"
features = [
"wrap_help",
"derive",
]
optional = true
[dependencies.epub-builder]
version = "0.8"
features = ["zip-library"]
default-features = false
[dependencies.image]
version = "0.25"
optional = true
[dependencies.kuchiki]
version = "0.8"
[dependencies.log]
version = "0.4"
[dependencies.mail-parser]
version = "0.11"
[dependencies.markup5ever]
version = "0.10"
[dependencies.percent-encoding]
version = "2.2"
[dependencies.readable-readability]
version = "0.4"
[dependencies.stderrlog]
version = "0.6"
optional = true
[dependencies.strsim]
version = "0.11"
[dev-dependencies.base64]
version = "0.22"
[dev-dependencies.epub]
version = "2.0"
[dev-dependencies.quoted_printable]
version = "0.5"