-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(sync): fix initial link sub capture
- Loading branch information
Showing
9 changed files
with
104 additions
and
29 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "spider_examples" | ||
version = "1.36.1" | ||
version = "1.36.3" | ||
authors = ["madeindjs <[email protected]>", "j-mendez <[email protected]>"] | ||
description = "Multithreaded web crawler written in Rust." | ||
repository = "https://github.com/spider-rs/spider" | ||
|
@@ -22,7 +22,7 @@ htr = "0.5.27" | |
flexbuffers = "2.0.0" | ||
|
||
[dependencies.spider] | ||
version = "1.36.1" | ||
version = "1.36.3" | ||
path = "../spider" | ||
features = ["serde"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,4 @@ async fn main() { | |
}); | ||
|
||
website.crawl().await; | ||
|
||
let _ = join_handle.await.unwrap(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "spider" | ||
version = "1.36.1" | ||
version = "1.36.3" | ||
authors = ["madeindjs <[email protected]>", "j-mendez <[email protected]>"] | ||
description = "The fastest web crawler written in Rust." | ||
repository = "https://github.com/spider-rs/spider" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "spider_cli" | ||
version = "1.36.1" | ||
version = "1.36.3" | ||
authors = ["madeindjs <[email protected]>", "j-mendez <[email protected]>"] | ||
description = "The fastest web crawler CLI written in Rust." | ||
repository = "https://github.com/spider-rs/spider" | ||
|
@@ -26,7 +26,7 @@ quote = "1.0.18" | |
failure_derive = "0.1.8" | ||
|
||
[dependencies.spider] | ||
version = "1.36.1" | ||
version = "1.36.3" | ||
path = "../spider" | ||
|
||
[[bin]] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,7 @@ spider --domain http://localhost:3000 download | |
``` | ||
|
||
```sh | ||
spider_cli 1.36.1 | ||
spider_cli 1.36.3 | ||
madeindjs <[email protected]>, j-mendez <[email protected]> | ||
The fastest web crawler CLI written in Rust. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "spider_worker" | ||
version = "1.36.1" | ||
version = "1.36.3" | ||
authors = ["madeindjs <[email protected]>", "j-mendez <[email protected]>"] | ||
description = "The fastest web crawler CLI written in Rust." | ||
repository = "https://github.com/spider-rs/spider" | ||
|
@@ -22,7 +22,7 @@ lazy_static = "1.4.0" | |
env_logger = "0.10.0" | ||
|
||
[dependencies.spider] | ||
version = "1.36.1" | ||
version = "1.36.3" | ||
path = "../spider" | ||
features = ["serde", "flexbuffers"] | ||
|
||
|