[package]
edition = "2024"
name = "eventfold"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lightweight, append-only event log with derived views — your application state is a fold over an event log"
documentation = "https://docs.rs/eventfold"
readme = "README.md"
keywords = [
"event-sourcing",
"event-log",
"append-only",
"reducer",
"jsonl",
]
categories = [
"data-structures",
"database-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/AetherXHub/eventfold"
[lib]
name = "eventfold"
path = "src/lib.rs"
[[example]]
name = "blocking_tail"
path = "examples/blocking_tail.rs"
[[example]]
name = "multi_view"
path = "examples/multi_view.rs"
[[example]]
name = "notes_cli"
path = "examples/notes_cli.rs"
[[example]]
name = "poll_tail"
path = "examples/poll_tail.rs"
[[example]]
name = "rebuild"
path = "examples/rebuild.rs"
[[example]]
name = "rotation"
path = "examples/rotation.rs"
[[example]]
name = "time_travel"
path = "examples/time_travel.rs"
[[example]]
name = "todo_cli"
path = "examples/todo_cli.rs"
[[test]]
name = "blocking_tail_tests"
path = "tests/blocking_tail_tests.rs"
[[test]]
name = "builder_tests"
path = "tests/builder_tests.rs"
[[test]]
name = "conditional_append_tests"
path = "tests/conditional_append_tests.rs"
[[test]]
name = "crash_safety"
path = "tests/crash_safety.rs"
[[test]]
name = "event_tests"
path = "tests/event_tests.rs"
[[test]]
name = "integrity_tests"
path = "tests/integrity_tests.rs"
[[test]]
name = "locking_tests"
path = "tests/locking_tests.rs"
[[test]]
name = "log_tests"
path = "tests/log_tests.rs"
[[test]]
name = "metadata_integration_tests"
path = "tests/metadata_integration_tests.rs"
[[test]]
name = "props"
path = "tests/props.rs"
[[test]]
name = "reader_writer_tests"
path = "tests/reader_writer_tests.rs"
[[test]]
name = "rotation_tests"
path = "tests/rotation_tests.rs"
[[test]]
name = "snapshot_tests"
path = "tests/snapshot_tests.rs"
[[test]]
name = "tail_tests"
path = "tests/tail_tests.rs"
[[test]]
name = "view_tests"
path = "tests/view_tests.rs"
[dependencies.fs2]
version = "0.4"
[dependencies.log]
version = "0.4"
[dependencies.notify]
version = "7"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.xxhash-rust]
version = "0.8"
features = ["xxh64"]
[dependencies.zstd]
version = "0.13"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"