mapradar 0.2.0

Turn addresses into coordinates and find nearby amenities using Google Maps API
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "mapradar"
version = "0.2.0"
authors = ["iamprecieee"]
build = false
exclude = [
    "pyproject.toml",
    ".venv/",
    "*test.py",
    "test*.py",
    "__pycache__/",
    "*.whl",
    "target/wheels/",
    ".env",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Turn addresses into coordinates and find nearby amenities using Google Maps API"
readme = "README.md"
keywords = [
    "geocoding",
    "location",
    "maps",
    "places",
    "cli",
]
categories = [
    "api-bindings",
    "web-programming",
]
license = "MIT"
repository = "https://github.com/iamprecieee/mapradar"

[package.metadata.docs.rs]
no-default-features = true

[features]
default = [
    "python",
    "extension-module",
]
extension-module = [
    "python",
    "pyo3/extension-module",
]
python = [
    "dep:pyo3",
    "dep:pyo3-async-runtimes",
]

[lib]
name = "mapradar"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

[[bin]]
name = "mapradar"
path = "src/main.rs"

[dependencies.clap]
version = "4.5.58"
features = [
    "derive",
    "env",
]

[dependencies.colored]
version = "3.1.1"

[dependencies.dotenvy]
version = "0.15.7"

[dependencies.futures]
version = "0.3.31"

[dependencies.moka]
version = "0.12"
features = ["future"]

[dependencies.pyo3]
version = "0.27.2"
optional = true

[dependencies.pyo3-async-runtimes]
version = "0.27.0"
features = ["tokio-runtime"]
optional = true

[dependencies.reqwest]
version = "0.13.1"
features = [
    "json",
    "native-tls",
    "query",
]

[dependencies.serde]
version = "1.0.228"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.149"

[dependencies.thiserror]
version = "2.0.18"

[dependencies.tokio]
version = "1.49.0"
features = ["full"]

[dev-dependencies.tokio-test]
version = "0.4.5"