[package]
edition = "2021"
name = "pulldown-cmark-to-flowed"
version = "0.1.0"
build = false
include = [
"LICENSE",
"README.md",
"src/**/*.rs",
"tests/tests.rs",
"tests/example.md",
"tests/example.txt",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Convert Markdown to Plain Text with format=flowed"
readme = "README.md"
keywords = [
"markdown",
"text",
"plain",
"flowed",
"email",
]
categories = [
"email",
"text-processing",
]
license = "EUPL-1.2"
repository = "https://codeberg.org/proto-x/pulldown-cmark-to-flowed"
[lib]
name = "pulldown_cmark_to_flowed"
path = "src/lib.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
harness = false
[dependencies.hashbrown]
version = "0.16.1"
[dependencies.pulldown-cmark]
version = "0.13.3"
default-features = false
[dev-dependencies.libtest]
version = "0.8.2"
package = "libtest-mimic"
[dev-dependencies.pretty_assertions]
version = "1.4"
[lints.clippy]
doc_lazy_continuation = "allow"
manual_is_multiple_of = "allow"
manual_range_contains = "allow"
tabs_in_doc_comments = "allow"
[lints.rust]
elided_lifetimes_in_paths = "forbid"
improper_ctypes_definitions = "deny"
type_alias_bounds = "allow"
unreachable_pub = "warn"