diff --git a/Cargo.toml b/Cargo.toml index 0f98555..9d4b5c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "ref_kind" -version = "0.4.2" +version = "0.5.0" description = "Different reference kinds" authors = ["tuguzT "] -repository = "https://github.com/toucan-rust/ref_kind" +repository = "https://github.com/toucan-games/ref_kind" license = "MIT OR Apache-2.0" readme = "README.md" keywords = ["ref", "safe", "mutability", "no-std"] diff --git a/README.md b/README.md index f59034d..0c17b39 100644 --- a/README.md +++ b/README.md @@ -51,9 +51,6 @@ let one_again = many.try_move_ref(1); assert_eq!(one_again, Err(MoveError::BorrowedMutably)); ``` -This crate used to be the part of `toucan_ecs` crate (which is in early development stage), -but now was moved into the separate crate! - ## `#![no_std]` support This crate is a `no_std` crate. It depends only on the `core` crate. @@ -63,7 +60,7 @@ you should disable default features of this crate in Cargo.toml: ```toml [dependencies] -ref_kind = { version = "0.4.2", default-features = false } +ref_kind = { version = "0.5.0", default-features = false } ``` ## `#![forbid(unsafe_code)]` diff --git a/src/lib.rs b/src/lib.rs index a7a8d0a..8a755c0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -61,7 +61,7 @@ //! //! ```toml //! [dependencies] -//! ref_kind = { version = "0.4.2", default-features = false } +//! ref_kind = { version = "0.5.0", default-features = false } //! ``` //! //! ## `#![forbid(unsafe_code)]`