summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Wiesner <sebastian@swsnr.de>2019-08-03 15:11:13 +0200
committerSebastian Wiesner <sebastian@swsnr.de>2019-08-03 15:12:05 +0200
commit49641919538c5ec9cd53076cc3d6fb8af8d857d0 (patch)
treed1ea0fc212ed98ca2030330cfdc8252acc04723b
parent8b4619d1b04883c3040f5c8066af40098ac8c637 (diff)
Enable SIMD in pulldown-cmark
-rw-r--r--CHANGELOG.md1
-rw-r--r--Cargo.toml2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9fb64b5..f4e5d93 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,7 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
### Changed
- Update pulldown-cmark to 0.5 which supports CommonMark 0.29 and improves
parser speed and correctness.
+- Enable SIMD in pulldown-cmark to squeeze out the last bit of performance.
[GH-84]: https://github.com/lunaryorn/mdcat/issues/84
diff --git a/Cargo.toml b/Cargo.toml
index 11425eb..276b967 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -57,7 +57,7 @@ features = ["color", "wrap_help"]
[dependencies.pulldown-cmark]
version = "^0.5"
default-features = false
-features = []
+features = ['simd']
[dependencies.syntect]
version = "^3"