persy 1.8.0

Transactional Persistence Engine
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 = "2024"
rust-version = "1.85"
name = "persy"
version = "1.8.0"
authors = ["Tglman <tglman@tglman.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Transactional Persistence Engine"
homepage = "https://persy.rs"
readme = "README.md"
keywords = [
    "storage",
    "transaction",
    "database",
    "copy-on-write",
]
categories = ["database-implementations"]
license = "MPL-2.0"
repository = "https://gitlab.com/persy/persy"
resolver = "3"

[package.metadata.docs.rs]
all-features = true

[badges.gitlab]
branch = "master"
repository = "persy/persy"

[badges.maintenance]
status = "actively-developed"

[features]
background_ops = []
experimental_inspect = []
index_container_static = []
test_backtraces = ["backtrace"]

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.backtrace]
version = "0.3"
optional = true

[dependencies.crc]
version = "3.0"

[dependencies.data-encoding]
version = "2.3"

[dependencies.fs2]
version = "0.4"

[dependencies.linked-hash-map]
version = "0.5"

[dependencies.rand]
version = "0.10"

[dependencies.thiserror]
version = "2.0"

[dependencies.unsigned-varint]
version = "0.8"
features = ["std"]

[dependencies.zigzag]
version = "0.1"

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

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

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

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

[lints.rust]
unsafe_code = "deny"