[package]
edition = "2021"
rust-version = "1.90"
name = "salamander-db"
version = "0.1.3"
build = false
exclude = ["tests/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embedded event-sourcing engine with instant recovery — the append-only log is the only durable structure."
homepage = "https://github.com/rdelprete/salamander-db"
documentation = "https://docs.rs/salamander-db"
readme = "README.md"
keywords = [
"event-sourcing",
"embedded",
"database",
"wal",
"agent",
]
categories = [
"database-implementations",
"data-structures",
]
license = "MIT"
repository = "https://github.com/rdelprete/salamander-db"
[lib]
name = "salamander"
path = "src/lib.rs"
[[bin]]
name = "salamander"
path = "src/bin/salamander.rs"
[[example]]
name = "01_kv_basics"
path = "examples/01_kv_basics.rs"
[[example]]
name = "02_custom_payload"
path = "examples/02_custom_payload.rs"
[[example]]
name = "03_query_views"
path = "examples/03_query_views.rs"
[[example]]
name = "04_fork"
path = "examples/04_fork.rs"
[[example]]
name = "05_json_and_policy"
path = "examples/05_json_and_policy.rs"
[[example]]
name = "06_commit_feed"
path = "examples/06_commit_feed.rs"
[[example]]
name = "07_replicate"
path = "examples/07_replicate.rs"
[[example]]
name = "08_diff"
path = "examples/08_diff.rs"
[[bench]]
name = "instant_recovery"
path = "benches/instant_recovery.rs"
harness = false
[[bench]]
name = "open_time"
path = "benches/open_time.rs"
harness = false
[[bench]]
name = "replay"
path = "benches/replay.rs"
harness = false
[[bench]]
name = "snapshots"
path = "benches/snapshots.rs"
harness = false
[[bench]]
name = "view_apply"
path = "benches/view_apply.rs"
harness = false
[dependencies.bincode]
version = "1.3"
[dependencies.crc32c]
version = "0.6"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"