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

Commit

Permalink
chore(deps): unpin tokio + spider
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mendez committed Jul 23, 2024
1 parent e0316ae commit 81d5d9f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "website_crawler"
version = "0.9.6"
version = "0.9.7"
authors = ["Jeff Mendez <jeff@a11ywatch.com>"]
edition = "2021"
description = "gRPC tokio based web crawler"
description = "gRPC tokio based web crawler built with spider"
license = "MIT"
readme = "README.md"
repository = "https://github.com/a11ywatch/crawler"
Expand All @@ -12,14 +12,14 @@ categories = ["accessibility", "asynchronous"]
include = ["src/*", "build.rs", "proto/*", "LICENSE", "README.md"]

[dependencies]
tokio = { version = "1.37.0", features = [ "rt-multi-thread", "macros", "sync", "time", "parking_lot" ] }
tokio = { version = "1", features = [ "rt-multi-thread", "macros", "sync", "time", "parking_lot" ] }
tonic = { version = "0.9.2" }
prost = "0.11.3"
prost-types = "0.11.2"
lazy_static = "1.4.0"
env_logger = "0.9.0"
string_concat = "0.0.1"
spider = { version = "1.93.3", features = ["sync", "control", "sitemap"]}
spider = { version = "1", features = ["sync", "control", "sitemap"]}

[target.'cfg(all(not(target_os = "android"), not(target_os = "freebsd")))'.dependencies]
jemallocator = { version = "0.5.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion examples/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ pub mod crawler {
#[macro_use]
extern crate lazy_static;
use crate::tokio::macros::support::Pin;
use tokio::sync::mpsc;
use spider::tokio_stream::{wrappers::ReceiverStream, Stream, StreamExt};
use tokio::sync::mpsc;
use tonic::{Request, Response, Status};
pub use website::website_service_server::{WebsiteService, WebsiteServiceServer};
pub use website::{Empty, ScanInitParams, ScanParams, ScanStreamResponse};
Expand Down

0 comments on commit 81d5d9f

Please sign in to comment.