[package]
edition = "2021"
name = "linemd"
version = "0.5.0"
authors = ["dawn <dawn@mm.st>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple and opinionated markdown parser (and renderer) written in Rust."
readme = "README.md"
keywords = [
"markdown",
"parser",
"html",
"svg",
]
categories = [
"parser-implementations",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/90-008/linemd"
[package.metadata.docs.rs]
features = [
"svg",
"html",
]
[package.metadata.nix]
build = true
app = true
[features]
default = ["html"]
html = []
svg = []
[lib]
name = "linemd"
path = "src/lib.rs"
[[bin]]
name = "linemd"
path = "src/main.rs"
required-features = [
"html",
"svg",
]
[[example]]
name = "all"
path = "examples/all.rs"
required-features = [
"html",
"svg",
]
[profile.release]
opt-level = 3
panic = "abort"