forked from wooorm/markdown-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (38 loc) · 1.08 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "markdown"
version = "1.0.0-alpha.11"
authors = ["Titus Wormer <[email protected]>"]
edition = "2018"
rust-version = "1.56"
description = "CommonMark compliant markdown parser in Rust with ASTs and extensions"
homepage = "https://github.com/wooorm/markdown-rs"
repository = "https://github.com/wooorm/markdown-rs"
license = "MIT"
keywords = ["commonmark", "markdown", "parse", "render", "tokenize"]
categories = ["compilers", "encoding", "parser-implementations", "parsing", "text-processing"]
include = ["src/", "license"]
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[features]
default = []
json = ["serde"]
serde = ["dep:serde"]
log = ["dep:log"]
[dependencies]
log = { version = "0.4", optional = true }
unicode-id = { version = "0.3", features = ["no_std"] }
serde = { version = "1.0", features = ["derive"], optional = true }
[dev-dependencies]
env_logger = "0.10"
criterion = "0.5"
pretty_assertions = "1"
swc_core = { version = "0.78.0", features = [
"ecma_ast",
"ecma_visit",
"ecma_parser",
"common",
] }
[workspace]
members = ["generate"]