[package]
edition = "2021"
name = "google-search-console-api"
version = "0.2.0"
authors = ["uiuifree"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unofficial Rust client for Google Search Console API"
readme = "README.md"
keywords = [
"google",
"search-console",
"seo",
"webmaster",
"api",
]
license = "MIT"
repository = "https://github.com/uiuifree/rust-google-search-console-api"
[lib]
name = "google_search_console_api"
path = "src/lib.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[[test]]
name = "test_inspection"
path = "tests/test_inspection.rs"
[[test]]
name = "test_sitemaps"
path = "tests/test_sitemaps.rs"
[[test]]
name = "test_sites"
path = "tests/test_sites.rs"
[dependencies.reqwest]
version = "0.11.10"
features = ["json"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_derive]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.urlencoding]
version = "2.1.0"
[dev-dependencies.csv]
version = "1.1.6"
[dev-dependencies.tokio]
version = "1.19.2"
features = ["full"]
[dev-dependencies.yup-oauth2]
version = "7.0.0"