Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "timed-map"
description = "Lightweight map implementation that supports expiring entries and fully compatible with both std and no_std environments."
version = "1.5.1"
version = "1.6.0"
edition = "2021"
authors = ["Onur Ozkan <onur@orkavian.dev>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,5 +94,5 @@ reduce the expiration logic overhead significantly.
```rs
use timed_map::TimedMap;

let mut map = TimedMap::new().expiration_tick_cap(500);
let mut map = TimedMap::new().expiration_tick_cap(100);
```
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
//! ```rs
//! use timed_map::TimedMap;
//!
//! let mut map = TimedMap::new().expiration_tick_cap(500);
//! let mut map = TimedMap::new().expiration_tick_cap(100);
//! ```

#![no_std]
Expand Down