-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
29 lines (26 loc) · 975 Bytes
/
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
[package]
name = "serpapi"
version = "1.0.0"
edition = "2021"
description = "Integrate search data into your Ruby application. This library is the official wrapper for SerpApi. SerpApi supports Google, Google Maps, Google Shopping, Baidu, Yandex, Yahoo, eBay, App Stores, and more."
readme = "README.md"
homepage = "https://serpapi.com"
documentation = "https://serpapi.com/search-api"
repository = "https://github.com/serpapi/serpapi-rust"
license = "MIT"
authors = ["Victor Benarbia <victor@serpapi.com>"]
keywords = ["google", "search", "engine", "scrape", "serpapi"]
categories = ["network-programming", "parsing", "web-programming::http-client", "api-bindings"]
include = [
"Cargo.toml",
"LICENSE",
"src/**/*",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# json parser
serde_json = "1.0"
# Asynchronous runtime
tokio = { version = "1", features = ["full"] }
# HTTP client
reqwest = "0.11.7"