Skip to content
This repository was archived by the owner on Jan 27, 2025. It is now read-only.

Commit 81d5d9f

Browse files
committed
chore(deps): unpin tokio + spider
1 parent e0316ae commit 81d5d9f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "website_crawler"
3-
version = "0.9.6"
3+
version = "0.9.7"
44
authors = ["Jeff Mendez <[email protected]>"]
55
edition = "2021"
6-
description = "gRPC tokio based web crawler"
6+
description = "gRPC tokio based web crawler built with spider"
77
license = "MIT"
88
readme = "README.md"
99
repository = "https://github.com/a11ywatch/crawler"
@@ -12,14 +12,14 @@ categories = ["accessibility", "asynchronous"]
1212
include = ["src/*", "build.rs", "proto/*", "LICENSE", "README.md"]
1313

1414
[dependencies]
15-
tokio = { version = "1.37.0", features = [ "rt-multi-thread", "macros", "sync", "time", "parking_lot" ] }
15+
tokio = { version = "1", features = [ "rt-multi-thread", "macros", "sync", "time", "parking_lot" ] }
1616
tonic = { version = "0.9.2" }
1717
prost = "0.11.3"
1818
prost-types = "0.11.2"
1919
lazy_static = "1.4.0"
2020
env_logger = "0.9.0"
2121
string_concat = "0.0.1"
22-
spider = { version = "1.93.3", features = ["sync", "control", "sitemap"]}
22+
spider = { version = "1", features = ["sync", "control", "sitemap"]}
2323

2424
[target.'cfg(all(not(target_os = "android"), not(target_os = "freebsd")))'.dependencies]
2525
jemallocator = { version = "0.5.0", optional = true }

examples/client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ pub mod crawler {
99
#[macro_use]
1010
extern crate lazy_static;
1111
use crate::tokio::macros::support::Pin;
12-
use tokio::sync::mpsc;
1312
use spider::tokio_stream::{wrappers::ReceiverStream, Stream, StreamExt};
13+
use tokio::sync::mpsc;
1414
use tonic::{Request, Response, Status};
1515
pub use website::website_service_server::{WebsiteService, WebsiteServiceServer};
1616
pub use website::{Empty, ScanInitParams, ScanParams, ScanStreamResponse};

0 commit comments

Comments
 (0)