timed-map 1.6.0

Lightweight map implementation that supports expiring entries and fully compatible with both std and no_std environments.
Documentation
[package]
name = "timed-map"
description = "Lightweight map implementation that supports expiring entries and fully compatible with both std and no_std environments."
version = "1.6.0"
edition = "2021"
authors = ["Onur Ozkan <onur@orkavian.dev>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/orkavian/timed-map"
homepage = "https://github.com/orkavian/timed-map"
documentation = "https://docs.rs/timed-map"
categories = ["data-structures", "no-std"]
keywords = ["map", "no_std"]

[lib]
doctest = false

[features]
default = ["std"]
rustc-hash = ["dep:rustc-hash"]
serde = ["dep:serde"]
std = []
wasm = ["dep:web-time"]

[dependencies]
rustc-hash = { version = "2.0", optional = true }
serde = { version = "1.0", default-features = false, optional = true }
web-time = { version = "1.1", default-features = false, optional = true }

[dev-dependencies]
serde_json = "1.0"