hh-core 1.0.0

Halfhand core: storage, blob store, event model, config
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 = "2021"
rust-version = "1.75"
name = "hh-core"
version = "1.0.0"
authors = ["Saadman Rafat"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Halfhand core: storage, blob store, event model, config"
readme = false
keywords = [
    "sqlite",
    "event-store",
    "blob-store",
    "recorder",
    "halfhand",
]
categories = [
    "database",
    "data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/halfhandorg/halfhand"

[features]
fuzzing = []

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

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

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

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

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

[[bench]]
name = "adapter_jsonl"
path = "benches/adapter_jsonl.rs"
harness = false
required-features = ["fuzzing"]

[[bench]]
name = "search"
path = "benches/search.rs"
harness = false

[[bench]]
name = "storage"
path = "benches/storage.rs"
harness = false

[dependencies.blake3]
version = "1.5"

[dependencies.directories]
version = "5"

[dependencies.regex]
version = "1"

[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]

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

[dependencies.serde_json]
version = "1"

[dependencies.tar]
version = "0.4"

[dependencies.thiserror]
version = "1"

[dependencies.time]
version = "0.3"
features = [
    "formatting",
    "macros",
    "parsing",
]

[dependencies.toml]
version = "0.8"

[dependencies.uuid]
version = "1.10"
features = ["v7"]

[dependencies.zstd]
version = "0.13"

[dev-dependencies.criterion]
version = "0.5"
features = ["cargo_bench_support"]
default-features = false

[dev-dependencies.insta]
version = "1"

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.rusqlite]
version = "0.31"
features = ["bundled"]

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

[lints.clippy]
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"

[lints.clippy.pedantic]
level = "warn"
priority = -1