[dependencies.cmark-writer-macros]
version = "0.7.4"
[dependencies.env_logger]
version = "0.11.8"
[dependencies.html-escape]
version = "0.2.13"
[dependencies.log]
version = "0.4.27"
[features]
default = []
gfm = []
[lib]
name = "cmark_writer"
path = "src/lib.rs"
[package]
authors = ["Hong Jiarong"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["text-processing"]
description = "A CommonMark writer implementation in Rust for serializing AST nodes to CommonMark format"
edition = "2021"
keywords = ["markdown", "commonmark", "writer", "serializer"]
license = "MIT"
name = "cmark-writer"
readme = "README.md"
repository = "https://github.com/hongjr03/cmark-writer"
version = "0.7.4"
[[test]]
name = "ast_test"
path = "tests/ast_test.rs"
[[test]]
name = "attribute_macros_test"
path = "tests/attribute_macros_test.rs"
[[test]]
name = "custom_node_match_test"
path = "tests/custom_node_match_test.rs"
[[test]]
name = "custom_node_test"
path = "tests/custom_node_test.rs"
[[test]]
name = "error_test"
path = "tests/error_test.rs"
[[test]]
name = "gfm_test"
path = "tests/gfm_test.rs"
[[test]]
name = "html_impl_test"
path = "tests/html_impl_test.rs"
[[test]]
name = "html_options_test"
path = "tests/html_options_test.rs"
[[test]]
name = "html_render_test"
path = "tests/html_render_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "setext_test"
path = "tests/setext_test.rs"
[[test]]
name = "writer_test"
path = "tests/writer_test.rs"