mirror of
https://github.com/aljazceru/turso.git
synced 2026-01-06 17:54:20 +01:00
This adds a "limbo_stress" tool for stress testing Limbo in non-deterministic way together with support code to run the tests under Antithesis (which makes them deterministic). The stress tester does not really do anything useful yet, this is just a step to make sure we can run tests under Antithesis.
23 lines
539 B
TOML
23 lines
539 B
TOML
# Copyright 2025 the Limbo authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "limbo_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 = "limbo_stress"
|
|
path = "main.rs"
|
|
|
|
[dependencies]
|
|
antithesis_sdk = "0.2.5"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
limbo = { path = "../bindings/rust" }
|
|
serde_json = "1.0.139"
|
|
tokio = { version = "1.29.1", features = ["full"] }
|