diff options
author | Zac Pullar-Strecker <[email protected]> | 2020-08-01 03:08:24 +0100 |
---|---|---|
committer | Zac Pullar-Strecker <[email protected]> | 2020-08-01 03:08:24 +0100 |
commit | b7bbfc2543af326783cce7d6975efb809766a534 (patch) | |
tree | e4df948aad9c6b64ba6c1fca33755b56920e4313 | |
parent | 19c2830ff86b8765754827b03826870f8640dec2 (diff) |
pulldown_cmark no-default-features
-rw-r--r-- | Cargo.lock | 16 | ||||
-rw-r--r-- | crates/ra_ide/Cargo.toml | 2 |
2 files changed, 1 insertions, 17 deletions
diff --git a/Cargo.lock b/Cargo.lock index 24fa38d5e..19be9b3fa 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -400,15 +400,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
400 | checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" | 400 | checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" |
401 | 401 | ||
402 | [[package]] | 402 | [[package]] |
403 | name = "getopts" | ||
404 | version = "0.2.21" | ||
405 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
406 | checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" | ||
407 | dependencies = [ | ||
408 | "unicode-width", | ||
409 | ] | ||
410 | |||
411 | [[package]] | ||
412 | name = "gimli" | 403 | name = "gimli" |
413 | version = "0.22.0" | 404 | version = "0.22.0" |
414 | source = "registry+https://github.com/rust-lang/crates.io-index" | 405 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -906,7 +897,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
906 | checksum = "ca36dea94d187597e104a5c8e4b07576a8a45aa5db48a65e12940d3eb7461f55" | 897 | checksum = "ca36dea94d187597e104a5c8e4b07576a8a45aa5db48a65e12940d3eb7461f55" |
907 | dependencies = [ | 898 | dependencies = [ |
908 | "bitflags", | 899 | "bitflags", |
909 | "getopts", | ||
910 | "memchr", | 900 | "memchr", |
911 | "unicase", | 901 | "unicase", |
912 | ] | 902 | ] |
@@ -1783,12 +1773,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1783 | checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0" | 1773 | checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0" |
1784 | 1774 | ||
1785 | [[package]] | 1775 | [[package]] |
1786 | name = "unicode-width" | ||
1787 | version = "0.1.8" | ||
1788 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1789 | checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3" | ||
1790 | |||
1791 | [[package]] | ||
1792 | name = "unicode-xid" | 1776 | name = "unicode-xid" |
1793 | version = "0.2.1" | 1777 | version = "0.2.1" |
1794 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1778 | source = "registry+https://github.com/rust-lang/crates.io-index" |
diff --git a/crates/ra_ide/Cargo.toml b/crates/ra_ide/Cargo.toml index fdbd7566f..0302924d2 100644 --- a/crates/ra_ide/Cargo.toml +++ b/crates/ra_ide/Cargo.toml | |||
@@ -19,7 +19,7 @@ log = "0.4.8" | |||
19 | rustc-hash = "1.1.0" | 19 | rustc-hash = "1.1.0" |
20 | url = "*" | 20 | url = "*" |
21 | pulldown-cmark-to-cmark = "4.0.2" | 21 | pulldown-cmark-to-cmark = "4.0.2" |
22 | pulldown-cmark = "0.7.0" | 22 | pulldown-cmark = {version = "0.7.2", default-features = false} |
23 | oorandom = "11.1.2" | 23 | oorandom = "11.1.2" |
24 | 24 | ||
25 | stdx = { path = "../stdx" } | 25 | stdx = { path = "../stdx" } |