Rename crate from google-genai to geologia

geologia is an anagram of "google ai", avoiding use of the "google" name
in the crate identifier while preserving the project's identity.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-18 07:42:39 +01:00
parent e2c0c67b17
commit 09e5d3d1f8
10 changed files with 75 additions and 92 deletions

View File

@@ -7,9 +7,9 @@
//! # Usage
//!
//! ```no_run
//! use google_genai::prelude::*;
//! use geologia::prelude::*;
//!
//! # async fn run() -> google_genai::error::Result<()> {
//! # async fn run() -> geologia::error::Result<()> {
//! let client = GeminiClient::new("YOUR_API_KEY".into());
//!
//! let request = GenerateContentRequest::builder()
@@ -30,7 +30,7 @@ mod types;
/// Convenience re-exports of the most commonly used types.
///
/// Importing `use google_genai::prelude::*` brings [`GeminiClient`](crate::prelude::GeminiClient)
/// Importing `use geologia::prelude::*` brings [`GeminiClient`](crate::prelude::GeminiClient)
/// and all request/response types into scope.
pub mod prelude {
pub use crate::client::*;