Remove getopts dependency for pulldown-cmark

This commit is contained in:
Konrad Borowski 2020-09-18 08:57:45 +02:00
parent dca5154263
commit dffad83981
2 changed files with 1 additions and 2 deletions

1
Cargo.lock generated
View File

@ -1057,7 +1057,6 @@ version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"getopts 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)",
"memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
"unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

View File

@ -19,7 +19,7 @@ itertools = "0.9.0"
log = "0.4.8"
mime = "0.3.16"
once_cell = "1.3.1"
pulldown-cmark = { version = "0.8.0", features = ["simd"] }
pulldown-cmark = { version = "0.8.0", default-features = false, features = ["simd"] }
rand = "0.7.3"
reqwest = { version = "0.10.4", features = ["json"] }
serde = { version = "1.0.106", features = ["derive"] }