kivis 0.2.2

Type-safe database schema generation for Rust with support for custom storage backends, automatic indexing, and layered cache architectures
Documentation
[dependencies.bincode]
features = ["serde"]
version = "2.0.1"

[dependencies.kivis-derive]
version = "0.2.2"

[dependencies.paste]
version = "1.0.15"

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

[dev-dependencies.hex]
version = "0.4.3"

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

[[example]]
name = "atomic_storage"
path = "examples/atomic_storage.rs"

[[example]]
name = "file_storage"
path = "examples/file_storage.rs"

[[example]]
name = "usage"
path = "examples/usage.rs"

[features]
atomic = []
default = ["atomic"]

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

[package]
authors = ["Mateusz ZajÄ…c <matzayonc@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database", "data-structures"]
description = "Type-safe database schema generation for Rust with support for custom storage backends, automatic indexing, and layered cache architectures"
documentation = "https://docs.rs/kivis"
edition = "2021"
homepage = "https://github.com/matzayonc/kivis"
keywords = ["database", "schema", "key-value", "storage", "orm"]
license = "MIT"
name = "kivis"
readme = "readme.md"
repository = "https://github.com/matzayonc/kivis"
version = "0.2.2"

[[test]]
name = "atomic_storage"
path = "tests/atomic_storage.rs"

[[test]]
name = "atomic_transaction"
path = "tests/atomic_transaction.rs"

[[test]]
name = "autoincrement"
path = "tests/autoincrement.rs"

[[test]]
name = "basic"
path = "tests/basic.rs"

[[test]]
name = "extended"
path = "tests/extended.rs"

[[test]]
name = "hash_key"
path = "tests/hash_key.rs"

[[test]]
name = "indexes"
path = "tests/indexes.rs"

[[test]]
name = "key_types"
path = "tests/key_types.rs"

[[test]]
name = "layered_cache"
path = "tests/layered_cache.rs"

[[test]]
name = "macro_test"
path = "tests/macro_test.rs"

[[test]]
name = "manifest_macro"
path = "tests/manifest_macro.rs"

[[test]]
name = "manual"
path = "tests/manual.rs"

[[test]]
name = "trybuild"
path = "tests/trybuild.rs"