Skip to content

Commit 39502f3

Browse files
authored
Merge pull request #144 from artichoke/lopopolo/rev-deps-and-release-v0.3.0
Update dependencies and prepare for v0.3.0 release
2 parents eda3a70 + bacc1ce commit 39502f3

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cactusref"
3-
version = "0.2.0" # remember to set `html_root_url` in `src/lib.rs`.
3+
version = "0.3.0" # remember to set `html_root_url` in `src/lib.rs`.
44
authors = ["Ryan Lopopolo <[email protected]>"]
55
license = "MIT"
66
edition = "2021"
@@ -21,13 +21,13 @@ default = ["std"]
2121
std = []
2222

2323
[dependencies]
24-
hashbrown = { version = "0.12.0", default-features = false, features = ["inline-more"] }
24+
hashbrown = { version = "0.13.1", default-features = false, features = ["inline-more"] }
2525
log = "0.4.6"
2626
rustc-hash = { version = "1.1.0", default-features = false }
2727

2828
[dev-dependencies]
2929
# Enable debug and trace-level logging in tests.
30-
env_logger = { version = "0.9.0", default-features = false }
30+
env_logger = { version = "0.10.0", default-features = false }
3131

3232
# Check that crate versions are properly updated in documentation and code when
3333
# bumping the version.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Add this to your `Cargo.toml`:
5252

5353
```toml
5454
[dependencies]
55-
cactusref = "0.2.0"
55+
cactusref = "0.3.0"
5656
```
5757

5858
CactusRef is mostly a drop-in replacement for `std::rc::Rc`, which can be used

benchmarks/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ harness = false
1818
criterion = "0.4.0"
1919
# benchmark target
2020
cactusref = { path = ".." }
21-
env_logger = { version = "0.9.0", default-features = false }
21+
env_logger = { version = "0.10.0", default-features = false }
2222
log = "0.4.6"

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
//! [`CoerceUnsized`]: core::ops::CoerceUnsized
124124
//! [`DispatchFromDyn`]: core::ops::DispatchFromDyn
125125
126-
#![doc(html_root_url = "https://docs.rs/cactusref/0.2.0")]
126+
#![doc(html_root_url = "https://docs.rs/cactusref/0.3.0")]
127127
#![no_std]
128128

129129
// Ensure code blocks in README.md compile

0 commit comments

Comments
 (0)