Crates.io | google-places-api |
lib.rs | google-places-api |
version | 0.5.2 |
source | src |
created_at | 2023-06-11 17:10:11.033049 |
updated_at | 2023-07-12 16:12:06.67279 |
description | Crate to access google places api. Get location data for over 200 million places, and add place details, search, and autocomplete to your apps. |
homepage | https://github.com/jareducherek/google-places-api-rs |
repository | https://github.com/jareducherek/google-places-api-rs |
max_upload_size | |
id | 887490 |
size | 2,009,195 |
cargo run --example nearby_search
cargo run --example place_details
cargo run --example find_place
cargo run --example place_photos
cargo run --example text_search
"rust-analyzer.diagnostics.disabled": ["unresolved-import"]
to your settings.json file to disable proc macro warnings for serde.cargo test
will run integration tests that ensure basic functionality is in check├── src
│ ├── lib.rs
│ ├── error.rs
│ ├── client.rs
│ ├── models
│ │ ├── place_details.rs
│ │ └── ...
│ ├── services
│ │ ├── places.rs
│ │ └── ...
│ └── utils
│ ├── request.rs
│ └── ...
├── tests
│ ├── integration.rs
│ └── unit
│ ├── client.rs
│ ├── services
│ │ ├── places.rs
│ │ └── ...
│ └── ...
├── examples
│ ├── main.rs
│ ├── basic_search.rs
│ └── ...
├── Cargo.toml
└── README.md