[package]
name = "rtrend"
version = "0.1.7"
edition = "2018"
authors = ["shadawck"]
description = "Unofficial API for interacting with Google Trend"
readme = "README.md"
repository = "https://github.com/shadawck/rust-trend"
homepage = "https://github.com/shadawck/rust-trend"
license = "MIT OR Apache-2.0"
keywords = ["google_trend", "trend", "google", "api", "web"]
categories = ["api-bindings"]
[dependencies]
reqwest = { version = "0.11", default-features = false, features = [
"cookies",
"blocking",
"rustls-tls",
] }
serde = "1.0"
serde_json = "1.0"
chrono = "0.4"
strum = "0.24"
strum_macros = "0.24"
[profile.release]
lto = true
opt-level = 3
panic = "unwind"