Skip to content

Commit

Permalink
chore: update web address for image assets
Browse files Browse the repository at this point in the history
  • Loading branch information
leontoeides committed Oct 17, 2024
1 parent f220b26 commit 55e1f7b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "indicium"
version = "0.6.3"
authors = ["Dylan Bowker <[email protected]>"]
authors = ["Dylan Bowker <dylan.bowker@arkiteq.io.ca>"]
edition = "2021"
categories = [ "database-implementations" ]
description = "Simple in-memory search for collections and key-value stores."
Expand Down Expand Up @@ -36,4 +36,4 @@ tracing = "0.1"
pretty_assertions = "1"

[badges]
maintenance = { status = "actively-developed" }
maintenance = { status = "passively-maintained" }
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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?
//!
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 55e1f7b

Please sign in to comment.