Files
turso/stress/Cargo.toml
Bob Peterson 5d7b057b8a Enable turso_stress to run in Miri
antithesis_sdk needs to have default features disabled in the workspace
so turso_stress is free to select the noop implementation for Miri
2025-10-20 22:50:44 -05:00

34 lines
928 B
TOML

# Copyright 2025 the Limbo authors. All rights reserved. MIT license.
[package]
name = "turso_stress"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "The Limbo stress tester"
publish = false
[[bin]]
name = "turso_stress"
path = "main.rs"
[features]
default = ["experimental_indexes"]
antithesis = ["turso/antithesis", "antithesis_sdk/full"]
experimental_indexes = []
[dependencies]
anarchist-readable-name-generator-lib = "0.1.0"
antithesis_sdk = { workspace = true }
clap = { workspace = true, features = ["derive"] }
hex = { workspace = true }
tempfile = { workspace = true }
tokio = { workspace = true, features = ["full"] }
tracing = { workspace = true }
tracing-appender = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
turso = { workspace = true }
rusqlite = { workspace = true }