Skip to content

Commit

Permalink
fixed issue with bundling of openssl and reqwest
Browse files Browse the repository at this point in the history
  • Loading branch information
QpxDesign committed Jul 24, 2024
1 parent 222d3fb commit 831fff2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@

[package]
name = "webgrep"
version = "0.3.1"
version = "0.3.2"
edition = "2021"
license = "MIT"
description = "grep the web: a full-browser-spec search-focused ultra-simple way to read the web without having to leave the terminal"
readme = "README.md"
repository = "https://github.com/qpxdesign/webgrep-rs/"

authors = ["Quinn Patwardhan <[email protected]>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "4.4.18", features = ["derive"] }
lazy_static = "1.5.0"
regex = "1.10.5"
reqwest = { version = "0.12.5"}
reqwest = { version = "0.12.5", features = ["native-tls-vendored"]}
scraper = "0.19.0"
url = "2.5.2"
tokio = { version = "1", features = ["full"] }
Expand Down

0 comments on commit 831fff2

Please sign in to comment.