Skip to content

Commit 5942412

Browse files
committed
v0.2.0 release
1 parent 0423878 commit 5942412

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hashcow"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Octavian Oncescu <octavonce@gmail.com>"]
55
edition = "2018"
66
repository = "https://github.com/purpleprotocol/hashcow"

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ pub enum Form {
5757
Owned,
5858
}
5959

60+
/// A HashMap data-structure with copy-on-write keys and values.
6061
pub struct CowHashMap<'a, K, V>
6162
where K: Hash + ?Sized + PartialEq + Eq + ToOwned,
6263
V: ToOwned + ?Sized,

0 commit comments

Comments
 (0)