# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "markdowny" version = "0.5.0" authors = ["Bernard van Gastel "] build = false include = [ "**/*.rs", "Cargo.toml", ] autobins = false autoexamples = false autotests = false autobenches = false description = "Markdown parser with focus on error reporting, and with support for hairy templates, HTML, HTML-attributes, HTML-spans, HTML-blocks specified in Markdown." homepage = "https://www.bitpowder.com/libs/indigo/" readme = "README.md" keywords = ["markdown"] categories = ["parser-implementations"] license = "Apache-2.0" repository = "https://gitlab.com/bitpowder/indigo-ng" [package.metadata.deb] assets = [[ "target/release/markdowny-lsp", "usr/bin/markdowny-lsp", "555", ]] name = "markdownylsp" [package.metadata.freebsd] assets = [[ "target/release/markdowny-lsp", "bin/markdowny-lsp", "555", ]] name = "markdownylsp" [lib] name = "markdowny" path = "src/lib.rs" [[bin]] name = "markdown2html" path = "src/bin/markdown2html.rs" test = false bench = false [[bin]] name = "markdowny-lsp" path = "src/bin/lsp.rs" test = false bench = false required-features = ["lsp"] [dependencies.expry] version = "^0.4.2" [dependencies.latex2mathml] version = "0.2.*" optional = true [dependencies.syntect] version = "5.0" optional = true [dependencies.tokio] version = "1.40.0" features = ["full"] optional = true [dependencies.tower-lsp] version = "0.20" features = ["tokio"] optional = true [features] default = [ "latex2mathml", "syntect", ] lsp = [ "tokio", "tower-lsp", ]