memable 0.1.5

An embeddable durable execution engine using key-based memoisation
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 = "memable"
version = "0.1.5"
build = false
exclude = [
    ".github/",
    "deny.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An embeddable durable execution engine using key-based memoisation"
readme = "README.md"
keywords = [
    "durable-execution",
    "workflow",
    "memoisation",
    "orchestration",
]
categories = ["asynchronous"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/crabby-utils/memable"

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

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

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

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

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

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

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

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

[dependencies.futures-core]
version = "0.3"

[dependencies.postcard]
version = "1"
features = ["alloc"]

[dependencies.redb]
version = "4"

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

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "sync",
    "rt",
    "time",
]

[dependencies.tracing]
version = "0.1"

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

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
    "time",
    "test-util",
]

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[lints.clippy]
allow_attributes = "warn"
clone_on_ref_ptr = "warn"
create_dir = "warn"
dbg_macro = "warn"
exit = "warn"
undocumented_unsafe_blocks = "warn"
unused_result_ok = "warn"
unused_trait_names = "warn"

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

[lints.rust]
unsafe_code = "forbid"