fn-memo 1.0.0

A library for creating the memoization of a function.
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 believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
edition = "2018"
name = "fn-memo"
version = "1.0.0"
authors = ["Jason Lee <jason5lee@hotmail.com>"]
description = "A library for creating the memoization of a function."
homepage = "https://crates.io/crates/fn-memo"
readme = "README.md"
keywords = ["cache", "memoization"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Jason5Lee/rust-fn-memo"
[dependencies.chashmap]
version = "2.2.0"
optional = true

[dependencies.once_cell]
version = "0.1.7"
optional = true

[dependencies.recur-fn]
version = "1.1.0"

[features]
default = ["sync"]
sync = ["once_cell", "chashmap"]