🏡 index : ~doyle/stork.git

author Jordan Doyle <jordan@doyle.la> 2020-02-13 5:57:51.0 +00:00:00
committer Jordan Doyle <jordan@doyle.la> 2020-02-13 6:00:15.0 +00:00:00
commit
2863dac99553fc41c939ea3cf3e9536b9c97b8ad [patch]
tree
37f17df40d01174f9e4583c45e133ec17b3de01f
parent
11f04d8d5984ba239f3c9af79db398a31576b0b1
download
2863dac99553fc41c939ea3cf3e9536b9c97b8ad.tar.gz

Fix rustdoc links



Diff

 README.md             | 4 +++-
 stork/Cargo.toml      | 2 +-
 stork/src/lib.rs      | 2 +-
 stork_http/Cargo.toml | 4 ++--
 4 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index 0c1176f..6e841aa 100644
--- a/README.md
+++ b/README.md
@@ -10,4 +10,6 @@ freedom to do BFS, DFS or any type of search they may so wish.

View the docs for examples of how to use `stork`:
- [stork]https://docs.rs/stork/
- [stork_http]https://docs.rs/stork_http/
\ No newline at end of file
- [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!
\ No newline at end of file
diff --git a/stork/Cargo.toml b/stork/Cargo.toml
index 378eac9..d225acd 100644
--- a/stork/Cargo.toml
+++ b/stork/Cargo.toml
@@ -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"
diff --git a/stork/src/lib.rs b/stork/src/lib.rs
index 5cd5b76..89c2efe 100644
--- a/stork/src/lib.rs
+++ b/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/index.html)
#![recursion_limit = "256"]

#[macro_use]
diff --git a/stork_http/Cargo.toml b/stork_http/Cargo.toml
index e4f514f..b1867db 100644
--- a/stork_http/Cargo.toml
+++ b/stork_http/Cargo.toml
@@ -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"] }