author | Jordan Doyle <jordan@doyle.la> | 2020-02-13 6:11:25.0 +00:00:00 |
---|---|---|
committer | Jordan Doyle <jordan@doyle.la> | 2020-02-13 6:13:36.0 +00:00:00 |
commit | 1ad3b61d7abfe7a9e777bdae571b8e2009e88310 [patch] |
|
tree | f248c6fdd970f2ebdb12368a72379a48ed992d3a |
|
parent | 9c854bc376404a1d89434988af3d70effb527a44 |
|
download | 1ad3b61d7abfe7a9e777bdae571b8e2009e88310.tar.gz |
Third time lucky with the rustdoc links on docs.rs
Diff
stork/Cargo.toml | 3 ++- stork_http/Cargo.toml | 5 ++++- stork/src/lib.rs | 2 +- stork_http/src/lib.rs | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/stork/Cargo.toml b/stork/Cargo.toml index d225acd..8982023 100644 --- a/stork/Cargo.toml +++ a/stork/Cargo.toml @@ -1,8 +1,9 @@ [package] name = "stork" version = "0.0.2" version = "0.0.3" authors = ["Jordan Doyle <jordan@doyle.la>"] description = "simple futures-based library to recursively crawl sources in a search engine-like fashion" repository = "https://github.com/w4/stork" license = "WTFPL OR 0BSD" edition = "2018" diff --git a/stork_http/Cargo.toml b/stork_http/Cargo.toml index b1867db..04a64ee 100644 --- a/stork_http/Cargo.toml +++ a/stork_http/Cargo.toml @@ -1,13 +1,14 @@ [package] name = "stork_http" version = "0.0.2" version = "0.0.3" authors = ["Jordan Doyle <jordan@doyle.la>"] description = "first-party stork implementation for HTML-based web scraping" repository = "https://github.com/w4/stork" license = "WTFPL OR 0BSD" edition = "2018" [dependencies] stork = { path = "../stork", version = "0.0.2" } stork = { path = "../stork", version = "0.0.3" } select = "0.4.3" reqwest = { version = "0.10.1", features = ["gzip"] } diff --git a/stork/src/lib.rs b/stork/src/lib.rs index 89c2efe..2e76f33 100644 --- a/stork/src/lib.rs +++ a/stork/src/lib.rs @@ -11,7 +11,7 @@ //! *Note: you're probably not looking for this library on its own but //! a protocol implementation of it. See below for some first-party //! implementations:* //! - [stork_http](../../../stork_http/index.html) //! - [stork_http](../../../stork_http/) #![recursion_limit = "256"] #[macro_use] diff --git a/stork_http/src/lib.rs b/stork_http/src/lib.rs index 5e25ac4..30566c2 100644 --- a/stork_http/src/lib.rs +++ a/stork_http/src/lib.rs @@ -1,5 +1,5 @@ //! # stork_http //! This is a [stork](../../../stork/index.html) implementation for the HTTP //! This is a [stork](../../../stork/) implementation for the HTTP //! protocol and specifically HTML-based web scraping. Given an initial //! page to scrape, stork_http will find all indexable links on the page //! and yield them back to you - ready to scrape again in an instant