mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-27 04:54:21 +01:00
antithesis_sdk needs to have default features disabled in the workspace so turso_stress is free to select the noop implementation for Miri
34 lines
928 B
TOML
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 }
|