serper-sdk 0.1.3

A minimalistic yet ergonomic Rust SDK for the Serper Google Search API
Documentation
1
2
3
4
5
6
7
8
9
pub mod client;
/// HTTP module containing transport and client functionality
///
/// This module provides HTTP transport layer abstractions and high-level
/// client functionality for interacting with the Serper API.
pub mod transport;

pub use client::{SerperHttpClient, SerperHttpClientBuilder};
pub use transport::{HttpTransport, HttpTransportBuilder, TransportConfig};