From 0af19f5b15ad3993a252462d64adb001a9691d40 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 26 Dec 2020 23:47:13 +0900 Subject: [PATCH] Update URLs --- Cargo.toml | 2 +- README.md | 8 ++++---- src/lib.rs | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 75294e0..33bf4bf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "1.0.0" authors = ["Stjepan Glavina "] edition = "2018" description = "A simple object arena" -repository = "https://github.com/stjepang/vec-arena" +repository = "https://github.com/smol-rs/vec-arena" documentation = "https://docs.rs/vec-arena" readme = "README.md" license = "Apache-2.0 OR MIT" diff --git a/README.md b/README.md index 87914a5..03f7476 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # vec-arena -[![Build Status](https://travis-ci.org/stjepang/vec-arena.svg?branch=master)](https://travis-ci.org/stjepang/vec-arena) -[![License](https://img.shields.io/badge/license-Apache--2.0%2FMIT-blue.svg)](https://github.com/stjepang/vec-arena) +[![Build Status](https://travis-ci.org/smol-rs/vec-arena.svg?branch=master)](https://travis-ci.org/smol-rs/vec-arena) +[![License](https://img.shields.io/badge/license-Apache--2.0%2FMIT-blue.svg)](https://github.com/smol-rs/vec-arena) [![Cargo](https://img.shields.io/crates/v/vec-arena.svg)](https://crates.io/crates/vec-arena) [![Documentation](https://docs.rs/vec-arena/badge.svg)](https://docs.rs/vec-arena) @@ -25,5 +25,5 @@ It will provide a more convenient API than a plain `Vec`. Some data structures built using `Arena`: -* [Doubly linked list](https://github.com/stjepang/vec-arena/blob/master/examples/linked-list.rs) -* [Splay tree](https://github.com/stjepang/vec-arena/blob/master/examples/splay-tree.rs) +* [Doubly linked list](https://github.com/smol-rs/vec-arena/blob/master/examples/linked-list.rs) +* [Splay tree](https://github.com/smol-rs/vec-arena/blob/master/examples/splay-tree.rs) diff --git a/src/lib.rs b/src/lib.rs index 240265e..32a2fee 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -10,8 +10,8 @@ //! //! Some data structures built using `Arena`: //! -//! * [Doubly linked list](https://github.com/stjepang/vec-arena/blob/master/examples/linked_list.rs) -//! * [Splay tree](https://github.com/stjepang/vec-arena/blob/master/examples/splay_tree.rs) +//! * [Doubly linked list](https://github.com/smol-rs/vec-arena/blob/master/examples/linked_list.rs) +//! * [Splay tree](https://github.com/smol-rs/vec-arena/blob/master/examples/splay_tree.rs) #![forbid(unsafe_code)] #![warn(missing_docs, missing_debug_implementations, rust_2018_idioms)]