-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathCargo.toml
27 lines (24 loc) · 959 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
[package]
name = "pulldown-cmark-to-cmark"
version = "20.0.0"
authors = [
"Sebastian Thiel <byronimo@gmail.com>",
"Dylan Owen <dyltotheo@gmail.com>",
"Alessandro Ogier <alessandro.ogier@gmail.com>",
"Zixian Cai <2891235+caizixian@users.noreply.github.com>"]
description = "Convert pulldown-cmark Events back to the string they were parsed from"
license = "Apache-2.0"
keywords = ["markdown", "common-mark", "render", "converter"]
repository = "https://github.com/Byron/pulldown-cmark-to-cmark"
homepage = "https://github.com/Byron/pulldown-cmark-to-cmark"
documentation = "https://docs.rs/crate/pulldown-cmark-to-cmark"
readme = "README.md"
edition = "2018"
include = ["src/*.rs", "LICENSE-APACHE", "README.md", "CHANGELOG.md"]
# This follows the MSRV of `pulldown-cmark`
rust-version = "1.71.1"
[dependencies]
pulldown-cmark = { version = "0.12.0", default-features = false }
[dev-dependencies]
indoc = "2.0.5"
pretty_assertions = "1.4.0"