[package] name = "flatiron" version = "1.0.5" edition = "2021" description = "A parser and HTML renderer for the Textile markup language" license-file = "LICENSE.textile" readme = "README.md" homepage = "https://git.sr.ht/~autumnull/flatiron" repository = "https://git.sr.ht/~autumnull/flatiron" keywords = ["textile", "parser", "html", "markup", "converter"] categories = ["parser-implementations", "command-line-utilities"] [profile.release] opt-level = 'z' # Optimize for size. lto = true # Enable Link Time Optimization codegen-units = 1 # Reduce number of codegen units to increase optimizations. panic = 'abort' # Abort on panic strip = true # Strip symbols from binary [dependencies] nom = "7.1"