| 1 |
[package] |
| 2 |
name = "pter" |
| 3 |
version = "0.1.0" |
| 4 |
edition = "2024" |
| 5 |
description = "Plain Text Email Renderer — convert HTML email bodies into readable markdown" |
| 6 |
license = "MIT" |
| 7 |
repository = "https://github.com/maxjacobson/pter" |
| 8 |
keywords = ["email", "html", "markdown", "plaintext", "converter"] |
| 9 |
categories = ["email", "text-processing", "parser-implementations"] |
| 10 |
|
| 11 |
[dependencies] |
| 12 |
scraper = "0.26" |
| 13 |
|
| 14 |
[dev-dependencies] |
| 15 |
proptest = "1" |
| 16 |
criterion = { version = "0.5", features = ["html_reports"] } |
| 17 |
|
| 18 |
[[bench]] |
| 19 |
name = "convert_bench" |
| 20 |
harness = false |
| 21 |
|