Skip to content

Commit

Permalink
Address new internal_features warning on latest nightly
Browse files Browse the repository at this point in the history
Prepare for v0.5.0 release.
  • Loading branch information
lopopolo committed Dec 24, 2023
1 parent 7bc5536 commit 86da5ab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "cactusref"
version = "0.4.0" # remember to set `html_root_url` in `src/lib.rs`.
version = "0.5.0" # remember to set `html_root_url` in `src/lib.rs`.
authors = ["Ryan Lopopolo <[email protected]>"]
license = "MIT"
edition = "2021"
rust-version = "1.56.0"
rust-version = "1.77.0"
readme = "README.md"
repository = "https://github.com/artichoke/cactusref"
documentation = "https://docs.rs/cactusref"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
cactusref = "0.4.0"
cactusref = "0.5.0"
```

CactusRef is mostly a drop-in replacement for `std::rc::Rc`, which can be used
Expand Down
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
slice_ptr_get
)]
#![allow(incomplete_features)]
#![allow(internal_features)]
#![warn(clippy::all)]
#![warn(clippy::pedantic)]
#![warn(clippy::cargo)]
Expand Down Expand Up @@ -126,7 +127,7 @@
//! [`CoerceUnsized`]: core::ops::CoerceUnsized
//! [`DispatchFromDyn`]: core::ops::DispatchFromDyn
#![doc(html_root_url = "https://docs.rs/cactusref/0.4.0")]
#![doc(html_root_url = "https://docs.rs/cactusref/0.5.0")]
#![no_std]

// Ensure code blocks in README.md compile
Expand Down

0 comments on commit 86da5ab

Please sign in to comment.