-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #838 from raphlinus/fix-526
feat: separate escape.rs in another crate
- Loading branch information
Showing
97 changed files
with
354 additions
and
379 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,85 +1,3 @@ | ||
[package] | ||
name = "pulldown-cmark" | ||
version = "0.9.2" | ||
authors = [ | ||
"Raph Levien <[email protected]>", | ||
"Marcus Klaas de Vries <[email protected]>", | ||
] | ||
license = "MIT" | ||
description = "A pull parser for CommonMark" | ||
repository = "https://github.com/raphlinus/pulldown-cmark" | ||
keywords = ["markdown", "commonmark"] | ||
categories = ["text-processing"] | ||
edition = "2021" | ||
rust-version = "1.70" # Update README.md and azure-pipelines.yml if this changes. | ||
readme = "README.md" | ||
exclude = [ | ||
"/third_party/**/*", | ||
"/tools/**/*", | ||
"/specs/**/*", | ||
"/fuzzer/**/*", | ||
"/azure-pipelines.yml", | ||
] | ||
|
||
build = "build.rs" | ||
|
||
[[bin]] | ||
name = "pulldown-cmark" | ||
required-features = ["getopts"] | ||
doc = false | ||
|
||
[[bench]] | ||
name = "html_rendering" | ||
harness = false | ||
|
||
[[bench]] | ||
name = "lib" | ||
harness = false | ||
|
||
[[bench]] | ||
name = "markdown-it" | ||
harness = false | ||
|
||
[[example]] | ||
name = "event-filter" | ||
required-features = ["html"] | ||
|
||
[[example]] | ||
name = "footnote-rewrite" | ||
required-features = ["html"] | ||
|
||
[[example]] | ||
name = "parser-map-event-print" | ||
required-features = ["html"] | ||
|
||
[[example]] | ||
name = "parser-map-tag-print" | ||
required-features = ["html"] | ||
|
||
[[example]] | ||
name = "string-to-string" | ||
required-features = ["html"] | ||
|
||
[[example]] | ||
name = "broken-link-callbacks" | ||
required-features = ["html"] | ||
|
||
[dependencies] | ||
bitflags = "2" | ||
unicase = "2.6" | ||
memchr = "2.5" | ||
getopts = { version = "0.2", optional = true } | ||
serde = { version = "1.0", optional = true, features = ["derive"] } | ||
|
||
[dev-dependencies] | ||
lazy_static = "1.4" | ||
criterion = "0.5" | ||
regex = "1.6" | ||
serde_json = "1.0.61" | ||
bincode = "1.3.1" | ||
|
||
[features] | ||
default = ["getopts", "html"] | ||
gen-tests = [] | ||
simd = [] | ||
html = [] | ||
[workspace] | ||
members = ["pulldown-cmark", "pulldown-cmark-escape"] | ||
resolver = "2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.