diff options
author | Aleksey Kladov <[email protected]> | 2020-08-26 17:56:41 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-08-26 19:24:00 +0100 |
commit | f8a59adf5e9633aa5d10efcdbf70b408d280ef01 (patch) | |
tree | d088d683f75bbd2bed837f1ca0aca61fdba5c11b /Cargo.lock | |
parent | 3d6c4c143b4b4c74810318eca1b5493e43535fff (diff) |
Tease apart orthogonal concerns in markdown link rewriting
`hir` should know nothing about URLs, markdown and html. It should
only be able to:
* resolve stringy path from documentation
* generate canonical stringy path for a def
In contrast, link rewriting should not care about semantics of paths
and names resolution, and should be concern only with text mangling
bits.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock index 015f84ba8..f1a17fa90 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -498,7 +498,6 @@ dependencies = [ | |||
498 | "stdx", | 498 | "stdx", |
499 | "syntax", | 499 | "syntax", |
500 | "tt", | 500 | "tt", |
501 | "url", | ||
502 | ] | 501 | ] |
503 | 502 | ||
504 | [[package]] | 503 | [[package]] |
@@ -606,6 +605,7 @@ dependencies = [ | |||
606 | "syntax", | 605 | "syntax", |
607 | "test_utils", | 606 | "test_utils", |
608 | "text_edit", | 607 | "text_edit", |
608 | "url", | ||
609 | ] | 609 | ] |
610 | 610 | ||
611 | [[package]] | 611 | [[package]] |