-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (32 loc) · 927 Bytes
/
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
[package]
name = "concisemark"
version = "0.4.2"
edition = "2021"
authors = ["zhq <[email protected]>"]
description = "A simplified markdown parsing library"
homepage = "https://github.com/ikey4u/concisemark"
documentation = "https://docs.rs/concisemark/0.4.0/concisemark"
repository = "https://github.com/ikey4u/concisemark"
license = "MIT"
readme = "README.md"
categories = ["parsing", "parser-implementations", "rendering"]
keywords = ["parser", "markdown"]
[dependencies]
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.67"
toml = "0.5.8"
indoc = "1.0"
once_cell = "1.8.0"
gh-emoji = "1.0.6"
anyhow = "1.0.66"
chrono = { version = "0.4.22", features = ["serde"] }
log = "0.4.17"
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
ureq = "=2.5.0"
getrandom = { version = "0.2.14", features = ["js"] }
[dev-dependencies]
html5ever = "0.26.0"
markup5ever_rcdom = "0.2.0"
[profile.dev]
debug = true