From 55e1f7b2be132f6f4e9020b659e8d66c20ac2b3e Mon Sep 17 00:00:00 2001 From: Dylan Bowker Date: Thu, 17 Oct 2024 15:24:49 -0600 Subject: [PATCH] chore: update web address for image assets --- Cargo.toml | 4 ++-- README.md | 2 +- src/lib.rs | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 874e7a9..8e5842b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "indicium" version = "0.6.3" -authors = ["Dylan Bowker "] +authors = ["Dylan Bowker "] edition = "2021" categories = [ "database-implementations" ] description = "Simple in-memory search for collections and key-value stores." @@ -36,4 +36,4 @@ tracing = "0.1" pretty_assertions = "1" [badges] -maintenance = { status = "actively-developed" } \ No newline at end of file +maintenance = { status = "passively-maintained" } \ No newline at end of file diff --git a/README.md b/README.md index 141e7ae..9afa8cf 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ require compiling a separate server binary. I wanted something simple and light-weight - an easy-to-use crate that could conveniently search structs and collections within my own binary. So, I made `indicium`. -![alt text](https://www.arkiteq.ca/crates/indicium/banner.jpg "Indicium: A Simple In-Memory Search for Rust") +![alt text](https://www.arkiteq.io.ca/crates/indicium/banner.jpg "Indicium: A Simple In-Memory Search for Rust") While `indicium` was made with web apps in mind, it is an in-memory search and it does not scale indefinitely or to cloud size (i.e. Facebook or Google size). diff --git a/src/lib.rs b/src/lib.rs index eed6db3..b3a7daf 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,7 +8,7 @@ //! weight, easy to use, and that could conveniently search structs and //! collections in my binary. So, I made `indicium`. //! -//! ![alt text](https://www.arkiteq.ca/crates/indicium/banner.jpg "Indicium Search - In-Memory Search for Rust Collections") +//! ![alt text](https://www.arkiteq.io.ca/crates/indicium/banner.jpg "Indicium Search - In-Memory Search for Rust Collections") //! //! # What's New? //! @@ -249,8 +249,8 @@ clippy::module_name_repetitions, clippy::too_long_first_doc_paragraph )] -#![doc(html_favicon_url = "https://www.arkiteq.ca/crates/indicium/icon.png")] -#![doc(html_logo_url = "https://www.arkiteq.ca/crates/indicium/logo.png")] +#![doc(html_favicon_url = "https://www.arkiteq.io.ca/crates/indicium/icon.png")] +#![doc(html_logo_url = "https://www.arkiteq.io.ca/crates/indicium/logo.png")] #[cfg(feature = "simple")] pub mod simple;