timed-map 1.7.0

Lightweight map implementation that supports expiring entries and fully compatible with both std and no_std environments.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

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

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

[lib]
name = "timed_map"
path = "src/lib.rs"
doctest = false

[dependencies.rustc-hash]
version = "2.0"
optional = true

[dependencies.serde]
version = "1.0"
optional = true
default-features = false

[dependencies.web-time]
version = "1.1"
optional = true
default-features = false

[dev-dependencies.serde_json]
version = "1.0"