[package]
edition = "2021"
rust-version = "1.82"
name = "chisel-storage"
version = "1.0.0"
authors = ["Christophe Pettus <cpettus@pgexperts.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Transactional slot-based storage engine with shadow paging"
readme = "README.md"
keywords = [
"database",
"storage",
"embedded",
"transactional",
"shadow-paging",
]
categories = [
"database-implementations",
"data-structures",
]
license = "MIT"
repository = "https://github.com/pgexperts/chisel"
[lib]
name = "chisel"
path = "src/lib.rs"
[[test]]
name = "api_edge_cases"
path = "tests/api_edge_cases.rs"
[[test]]
name = "basic_ops"
path = "tests/basic_ops.rs"
[[test]]
name = "client_byte"
path = "tests/client_byte.rs"
[[test]]
name = "counters"
path = "tests/counters.rs"
[[test]]
name = "defrag"
path = "tests/defrag.rs"
[[test]]
name = "encryption_keys"
path = "tests/encryption_keys.rs"
[[test]]
name = "encryption_open"
path = "tests/encryption_open.rs"
[[test]]
name = "encryption_roundtrip"
path = "tests/encryption_roundtrip.rs"
[[test]]
name = "error_and_format"
path = "tests/error_and_format.rs"
[[test]]
name = "freemap_multipage"
path = "tests/freemap_multipage.rs"
[[test]]
name = "in_memory"
path = "tests/in_memory.rs"
[[test]]
name = "iteration_stability"
path = "tests/iteration_stability.rs"
[[test]]
name = "options_validation"
path = "tests/options_validation.rs"
[[test]]
name = "page_reclamation"
path = "tests/page_reclamation.rs"
[[test]]
name = "public_key_api"
path = "tests/public_key_api.rs"
[[test]]
name = "spillway_integration"
path = "tests/spillway_integration.rs"
[[test]]
name = "spillway_runtime_mutability"
path = "tests/spillway_runtime_mutability.rs"
[[test]]
name = "stress"
path = "tests/stress.rs"
[[test]]
name = "tag_ops"
path = "tests/tag_ops.rs"
[[test]]
name = "transactions"
path = "tests/transactions.rs"
[dependencies.argon2]
version = "0.5"
[dependencies.base64ct]
version = "~1.6"
[dependencies.chacha20poly1305]
version = "0.10"
[dependencies.getrandom]
version = "0.2"
[dependencies.hkdf]
version = "0.12"
[dependencies.libc]
version = "0.2"
[dependencies.rustc-hash]
version = "2"
[dependencies.sha2]
version = "0.10"
[dependencies.xxhash-rust]
version = "0.8"
features = ["xxh3"]
[dependencies.zeroize]
version = "~1.8"
[dev-dependencies.pastey]
version = "0.1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
[profile.release-with-debug]
debug = "line-tables-only"
inherits = "release"