[package]
edition = "2021"
rust-version = "1.70"
name = "bigdatacloud"
version = "1.0.0"
authors = ["BigDataCloud Pty Ltd <support@bigdatacloud.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Official Rust SDK for BigDataCloud APIs — IP Geolocation, Reverse Geocoding, Phone & Email Verification, Network Engineering"
homepage = "https://www.bigdatacloud.com"
documentation = "https://docs.rs/bigdatacloud"
readme = "README.md"
keywords = [
"ip-geolocation",
"reverse-geocoding",
"bigdatacloud",
"geolocation",
"network",
]
categories = [
"api-bindings",
"web-programming",
]
license = "MIT"
repository = "https://github.com/bigdatacloudapi/bigdatacloud-rust"
[lib]
name = "bigdatacloud"
path = "src/lib.rs"
[[example]]
name = "ip_geolocation"
path = "examples/ip_geolocation.rs"
[[example]]
name = "network_engineering"
path = "examples/network_engineering.rs"
[[example]]
name = "reverse_geocoding"
path = "examples/reverse_geocoding.rs"
[[example]]
name = "verification"
path = "examples/verification.rs"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"blocking",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]