[package]
edition = "2021"
rust-version = "1.87"
name = "rushdown-footnote"
version = "0.9.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Footnote extension for rushdown markdown parser"
homepage = "https://github.com/yuin/rushdown-footnote"
documentation = "https://docs.rs/rushdown-footnote"
readme = "README.md"
keywords = [
"markdown",
"commonmark",
]
categories = ["text-processing"]
license = "MIT"
repository = "https://github.com/yuin/rushdown-footnote"
resolver = "2"
[features]
alloc = []
default = ["std"]
no-std = [
"alloc",
"rushdown/no-std",
]
std = ["rushdown/default"]
[lib]
name = "rushdown_footnote"
path = "src/lib.rs"
[[test]]
name = "footnote"
path = "tests/footnote.rs"
[dependencies.rushdown]
version = "0.9.4"
default-features = false
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
debug = 0
panic = "abort"