Skip to content

Commit 5f1088a

Browse files
committed
bump: v0.2.0
1 parent 67fed94 commit 5f1088a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "radix-tree"
3-
version = "0.1.0"
4-
authors = ["Fangdun Cai <cfddream@gmail.com>"]
3+
version = "0.2.0"
4+
authors = ["Fangdun Tsai <cfddream@gmail.com>"]
55
edition = "2018"
66
description = "A radix tree implementation for router, path search"
7-
repository = "https://github.com/trek-rs/radix-tree"
8-
documentation = "https://github.com/trek-rs/radix-tree/"
7+
documentation = "https://docs.rs/radix-tree"
8+
repository = "https://github.com/viz-rs/radix-tree"
99
readme = "README.md"
1010
keywords = ["radix", "tree", "router", "trek"]
1111
license = "MIT/Apache-2.0"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
extern crate alloc;
22

3-
use core::mem;
43
use alloc::vec::Vec;
4+
use core::mem;
55

66
const fn pos<K>(l: &usize, _: &K, _: &Vec<K>) -> usize {
77
*l

src/macros.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use crate::Vectorable;
2-
use alloc::vec::Vec;
32
use alloc::string::String;
3+
use alloc::vec::Vec;
44

55
#[doc(hidden)]
66
#[macro_export]

0 commit comments

Comments
 (0)