[package]
edition = "2024"
rust-version = "1.95.0"
name = "mnesis-store-testing"
version = "0.2.1"
authors = ["Joel DSouza <joel@devrandom.co>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Executable conformance kit for mnesis-store adapters — the store contract as a runnable test suite"
homepage = "https://github.com/devrandom-labs/mnesis"
readme = "README.md"
keywords = [
"event-sourcing",
"testing",
"conformance",
]
categories = [
"data-structures",
"development-tools::testing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/devrandom-labs/mnesis"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[features]
atomic-append = ["mnesis-store/import"]
snapshot = ["mnesis-store/snapshot"]
[lib]
name = "mnesis_store_testing"
path = "src/lib.rs"
[[test]]
name = "self_check"
path = "tests/self_check.rs"
[[test]]
name = "toy_adapter"
path = "tests/toy_adapter.rs"
[dependencies.bytes]
version = "1"
default-features = false
[dependencies.futures]
version = "0.3"
features = [
"alloc",
"std",
"async-await",
"executor",
]
default-features = false
[dependencies.mnesis]
version = "0.2.1"
[dependencies.mnesis-store]
version = "0.2.1"
features = ["subscription"]
[dependencies.tokio]
version = "1.52.1"
features = [
"full",
"macros",
"rt",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.workspace-hack]
version = "0.1"
[dev-dependencies.thiserror]
version = "2.0.18"
default-features = false
[lints.clippy]
allow_attributes_without_reason = "deny"
as_conversions = "deny"
clone_on_ref_ptr = "deny"
dbg_macro = "deny"
disallowed_methods = "deny"
disallowed_types = "deny"
expect_used = "deny"
implicit_clone = "deny"
panic = "deny"
print_stderr = "deny"
print_stdout = "deny"
shadow_reuse = "deny"
shadow_same = "deny"
shadow_unrelated = "deny"
str_to_string = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1