From 2863dac99553fc41c939ea3cf3e9536b9c97b8ad Mon Sep 17 00:00:00 2001 From: Jordan Doyle Date: Thu, 13 Feb 2020 05:57:51 +0000 Subject: [PATCH] Fix rustdoc links --- 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 "] 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 "] 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"] } -- libgit2 1.7.2