-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
34 lines (29 loc) · 1.21 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "image_search"
authors = ["Kestrel"]
version = "0.4.5"
edition = "2021"
license = "MIT"
categories = ["asynchronous", "network-programming", "web-programming"]
keywords = ["google", "image", "search", "async"]
description = "A crate designed to search Google Images based on provided arguments."
repository = "https://github.com/commonkestrel/image_search"
homepage = "https://pseudoservices.com/gis"
readme = "README.md"
exclude = ["/misc"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
glob = "0.3"
surf = { version = "2", default-features = false }
infer = "0.15"
futures = "0.3"
async-std = "1.12.0"
serde_json = "1"
[features]
default = ["hyper"]
curl = ["surf/curl-client"] ## Use curl (through isahc) as the HTTP backend
hyper = ["surf/hyper-client"] ## Use hyper as the HTTP backend (default)
wasm = ["surf/wasm-client"] ## Use window.fetch as the HTTP backend for WASM
h1 = ["surf/h1-client"] ## Use async-h1 as the HTTP backend with native TLS for HTTPS
rustls = ["surf/h1-client-rustls"] ## Use async-h1 as the HTTP backend with rustls for HTTPS
blocking = [] ## Blocking enables fetching images synchronously.