Disable default features for pulldown-cmark

This commit is contained in:
Konrad Borowski 2022-05-20 17:17:59 +02:00
parent c39190b6c3
commit f8d7027fc9
2 changed files with 1 additions and 17 deletions

16
Cargo.lock generated
View File

@ -711,15 +711,6 @@ dependencies = [
"version_check",
]
[[package]]
name = "getopts"
version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
dependencies = [
"unicode-width",
]
[[package]]
name = "getrandom"
version = "0.2.6"
@ -1703,7 +1694,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34f197a544b0c9ab3ae46c359a7ec9cbbb5c7bf97054266fecb7ead794a181d6"
dependencies = [
"bitflags",
"getopts",
"memchr",
"unicase",
]
@ -2658,12 +2648,6 @@ dependencies = [
"tinyvec",
]
[[package]]
name = "unicode-width"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
[[package]]
name = "unicode-xid"
version = "0.2.3"

View File

@ -14,7 +14,7 @@ diesel_migrations = "1.4.0"
itertools = "0.10.1"
log = "0.4.14"
once_cell = "1.8.0"
pulldown-cmark = "0.9.1"
pulldown-cmark = { version = "0.9.1", default-features = false }
rand = "0.8.3"
reqwest = { version = "0.11.3", features = ["json"] }
rocket = { version = "=0.5.0-rc.2", features = ["json"] }