reddb 2.0.0

Minimalistic async in-memory embedded document database with closure-based queries and optional persistence
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 = "reddb"
version = "2.0.0"
authors = ["Pablo Magaz <magazpablo@gmail.com>"]
build = false
exclude = [
    "tests",
    ".github",
    ".gitignore",
    "examples",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Minimalistic async in-memory embedded document database with closure-based queries and optional persistence"
homepage = "https://github.com/pmagaz/reddb"
documentation = "https://docs.rs/reddb"
readme = "README.md"
keywords = [
    "database",
    "db",
    "async",
    "store",
    "embedded",
]
categories = [
    "database",
    "database-implementations",
    "asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/pmagaz/reddb"

[features]
bin_ser = ["bincode"]
default = []
full = [
    "bin_ser",
    "json_ser",
    "ron_ser",
    "yaml_ser",
]
json_ser = ["serde_json"]
migrate = []
ron_ser = ["ron"]
yaml_ser = ["serde_yaml"]

[lib]
name = "reddb"
path = "src/lib.rs"

[[bench]]
name = "basic"
path = "benches/basic.rs"
harness = false

[dependencies.anyhow]
version = "1"

[dependencies.async-trait]
version = "0.1"

[dependencies.bincode]
version = "2"
features = ["serde"]
optional = true

[dependencies.ron]
version = "0.8"
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"
optional = true

[dependencies.serde_yaml]
version = "0.9"
optional = true

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "macros",
    "fs",
    "sync",
    "rt-multi-thread",
    "io-util",
]

[dependencies.uuid]
version = "1"
features = [
    "serde",
    "v4",
]

[dev-dependencies.criterion]
version = "0.5"
features = ["async_tokio"]

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.tokio-test]
version = "0.4"