diff --git a/Cargo.toml b/Cargo.toml index ede8a23c..b80eeef7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,8 +5,8 @@ edition = "2021" authors = ["Edgee "] license = "Apache-2.0" description = "Rust SDK for the Edgee AI Gateway" -homepage = "https://github.com/edgee-cloud/edgee" -repository = "https://github.com/edgee-cloud/edgee" +homepage = "https://www.edgee.cloud" +repository = "https://github.com/edgee-cloud/rust-sdk" keywords = ["ai", "llm", "gateway", "openai", "anthropic"] categories = ["api-bindings", "asynchronous"] rust-version = "1.75" diff --git a/README.md b/README.md index 254436aa..989bef66 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Edgee Rust SDK -A modern, idiomatic Rust SDK for the [Edgee AI Gateway](https://edgee.ai). +A modern, idiomatic Rust SDK for the [Edgee AI Gateway](https://www.edgee.cloud). [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE) [![Rust](https://img.shields.io/badge/rust-1.75%2B-orange.svg)](https://www.rust-lang.org) @@ -22,7 +22,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -edgee = "0.1" +edgee = "2.0" tokio = { version = "1", features = ["full"] } ``` @@ -327,6 +327,6 @@ Licensed under the Apache License, Version 2.0. See [LICENSE](LICENSE) for detai ## Links -- [Edgee AI Gateway](https://edgee.ai) +- [Edgee AI Gateway](https://www.edgee.cloud) - [Documentation](https://docs.rs/edgee) -- [GitHub Repository](https://github.com/edgee-cloud/edgee) +- [GitHub Repositories](https://github.com/edgee-cloud) diff --git a/src/lib.rs b/src/lib.rs index 64611632..dc73199f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ //! # Edgee Rust SDK //! -//! A Rust SDK for the [Edgee AI Gateway](https://edgee.ai). +//! A Rust SDK for the [Edgee AI Gateway](https://www.edgee.cloud). //! //! This SDK provides a simple, idiomatic Rust interface for interacting with the Edgee AI Gateway, //! which supports multiple LLM providers including OpenAI, Anthropic, Mistral, and more.