[package]
edition = "2021"
rust-version = "1.74"
name = "ipdatainfo"
version = "0.1.0"
authors = ["ipdata.info"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Official Rust client for the ipdata.info IP geolocation, ASN, and threat-intelligence API"
homepage = "https://ipdata.info"
documentation = "https://docs.rs/ipdatainfo"
readme = "README.md"
keywords = [
"ip",
"geolocation",
"geoip",
"asn",
"threat-intelligence",
]
categories = [
"web-programming::http-client",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/IPDataInfo/ipdata-rust"
[lib]
name = "ipdatainfo"
path = "src/lib.rs"
[[example]]
name = "quickstart"
path = "examples/quickstart.rs"
[[test]]
name = "client_test"
path = "tests/client_test.rs"
[[test]]
name = "live_smoke_test"
path = "tests/live_smoke_test.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.ureq]
version = "2"
features = ["json"]
[dev-dependencies]