Fix rustdoc links
Diff
README.md | 4 ++++
stork/Cargo.toml | 2 +-
stork_http/Cargo.toml | 4 ++--
stork/src/lib.rs | 2 +-
4 files changed, 7 insertions(+), 5 deletions(-)
@@ -10,4 +10,6 @@
View the docs for examples of how to use `stork`:
- [stork](https://docs.rs/stork/)
- [stork_http](https://docs.rs/stork_http/)
- [stork_http](https://docs.rs/stork_http/)
or look in the [examples/](https://github.com/w4/stork/tree/master/examples) directory for some real-world examples!
@@ -1,6 +1,6 @@
[package]
name = "stork"
version = "0.0.1"
version = "0.0.2"
authors = ["Jordan Doyle <jordan@doyle.la>"]
description = "simple futures-based library to recursively crawl sources in a search engine-like fashion"
license = "WTFPL OR 0BSD"
@@ -1,13 +1,13 @@
[package]
name = "stork_http"
version = "0.0.1"
version = "0.0.2"
authors = ["Jordan Doyle <jordan@doyle.la>"]
description = "first-party stork implementation for HTML-based web scraping"
license = "WTFPL OR 0BSD"
edition = "2018"
[dependencies]
stork = { path = "../stork", version = "0.0.1" }
stork = { path = "../stork", version = "0.0.2" }
select = "0.4.3"
reqwest = { version = "0.10.1", features = ["gzip"] }
@@ -11,7 +11,7 @@
#![recursion_limit = "256"]
#[macro_use]