koit-toml 0.2.1

A simple, asynchronous, pure-Rust, structured, embedded database
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 = "koit-toml"
version = "0.2.1"
authors = ["Thomas Churchman <thomas@kepow.org>"]
description = "A simple, asynchronous, pure-Rust, structured, embedded database"
readme = "README.md"
keywords = ["database", "embedded", "structured", "async", "non-blocking"]
categories = ["asynchronous", "database-implementations"]
license = "MIT"
repository = "https://github.com/tomcur/koit"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies.async-std]
version = "1.9.0"
features = ["unstable", "attributes"]

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

[dependencies.bincode]
version = "1.0"
optional = true

[dependencies.serde]
version = "1.0"
optional = true

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

[dependencies.thiserror]
version = "1.0"

[dependencies.toml]
version = "0.5.8"
optional = true

[dependencies.tracing]
version = "0.1"
[dev-dependencies.futures]
version = "0.3"

[dev-dependencies.serde]
version = "1.0"
features = ["derive"]

[features]
bincode-format = ["serde", "bincode"]
default = ["file-backend", "json-format", "bincode-format", "toml-format"]
file-backend = []
json-format = ["serde", "serde_json"]
toml-format = ["serde", "toml"]