# 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" rust-version = "1.56.0" name = "html-generator" version = "0.0.1" build = "build.rs" autobins = false autoexamples = false autotests = false autobenches = false description = """ A robust Rust library designed for transforming Markdown into SEO-optimized, accessible HTML. Featuring front matter extraction, custom header processing, table of contents generation, and performance optimization for web projects of any scale. """ homepage = "https://html-generator.co/" documentation = "https://doc.html-generator.co/html_generator/" readme = "README.md" keywords = [ "html", "web_development", "seo", "html-generator", ] categories = [ "web-programming", "command-line-utilities", "data-structures", "parsing", "development-tools", ] license = "MIT OR Apache-2.0" repository = "https://github.com/sebastienrousseau/html-generator" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "html_generator" path = "src/lib.rs" [[example]] name = "accessibility_example" path = "examples/accessibility_example.rs" [[example]] name = "error_example" path = "examples/error_example.rs" [[example]] name = "generator_example" path = "examples/generator_example.rs" [[example]] name = "lib_example" path = "examples/lib_example.rs" [[example]] name = "performance_example" path = "examples/performance_example.rs" [[example]] name = "seo_example" path = "examples/seo_example.rs" [[example]] name = "utils_example" path = "examples/utils_example.rs" [[bench]] name = "html_benchmark" path = "benches/html_benchmark.rs" [dependencies.comrak] version = "0.28" [dependencies.frontmatter-gen] version = "0.0.2" [dependencies.lazy_static] version = "1.5" [dependencies.mdx-gen] version = "0.0.1" [dependencies.minify-html] version = "0.15" [dependencies.once_cell] version = "1.20" [dependencies.regex] version = "1.11" [dependencies.scraper] version = "0.20" [dependencies.serde] version = "1.0" features = ["derive"] [dependencies.serde_json] version = "1.0" [dependencies.tempfile] version = "3.13" [dependencies.thiserror] version = "1.0" [dependencies.tokio] version = "1.40" features = ["full"] [dev-dependencies.criterion] version = "0.5" [build-dependencies.version_check] version = "0.9.4" [features] async = [] default = []