sanakirja 0.15.10

A key-value dictionary, using copy-on-write and B trees.
Documentation
[package]
name = "sanakirja"
edition = "2018"
description = "A key-value dictionary, using copy-on-write and B trees."
version = "0.15.10"
authors = ["Pierre-Étienne Meunier", "Florent Becker"]
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/sanakirja"
repository = "https://nest.pijul.com/pijul/sanakirja"
include = ["Cargo.toml", "src/del.rs", "src/lib.rs", "src/put.rs", "src/skiplist.rs", "src/tests.rs", "src/transaction.rs","src/value.rs"]

[features]
default = []
mmap = [ "memmap", "crc32" ]
crc32 = [ "crc32fast" ]

[dependencies]
fs2="0.4"
log="0.4"
memmap = { version = "0.7", optional = true }
rand="0.8"
uuid = { version = "0.8", optional = true }
parking_lot = "0.11"
git2 = { version = "0.13", optional = true }
crc32fast = { version = "1.2.1", optional = true }
thiserror = "1.0"

[dev-dependencies]
env_logger="0.8"
tempfile="3.1"
hex = "0.4"