blob: 16c06220c80d08fc50649470dc903897fa0c0ec5 (
plain) (
tree)
|
|
[package]
name = "micromark"
version = "0.0.0"
authors = ["Titus Wormer <tituswormer@gmail.com>"]
edition = "2018"
rust-version = "1.56"
description = "small commonmark compliant markdown parser with positional info and concrete tokens"
homepage = "https://github.com/micromark/micromark-rs"
repository = "https://github.com/micromark/micromark-rs"
license = "MIT"
keywords = ["commonmark", "markdown", "parse", "render", "tokenize"]
categories = ["compilers", "encoding", "parser-implementations", "parsing", "text-processing"]
include = ["src/", "license"]
publish = false
[[bench]]
name = "bench"
harness = false
[dependencies]
log = "0.4"
unicode-id = { version = "0.3", features = ["no_std"] }
[dev-dependencies]
env_logger = "0.9"
criterion = "0.4"
pretty_assertions = "1"
swc_common = "0.28"
swc_ecma_parser = "0.119"
swc_ecma_ast = "0.91"
[build-dependencies]
regex = "1"
reqwest = "0.11"
tokio = { version = "1", features = ["full"] }
|