mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-05 02:28:02 +00:00
38 lines
958 B
TOML
38 lines
958 B
TOML
[package]
|
|
name = "core_tester"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Integration & fuzz tests"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[[test]]
|
|
name = "integration_tests"
|
|
path = "integration/mod.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
env_logger = "0.10.1"
|
|
turso_core = { path = "../core", features = ["conn_raw_api"] }
|
|
turso = { path = "../bindings/rust", features = ["conn_raw_api"] }
|
|
tokio = { version = "1.47", features = ["full"] }
|
|
rusqlite = { version = "0.34", features = ["bundled"] }
|
|
tempfile = "3.0.7"
|
|
log = "0.4.22"
|
|
assert_cmd = "^2"
|
|
rand_chacha = "0.9.0"
|
|
rand = "0.9.0"
|
|
zerocopy = "0.8.26"
|
|
|
|
[dev-dependencies]
|
|
test-log = { version = "0.2.17", features = ["trace"] }
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
|
tracing = "0.1.41"
|
|
|
|
# rexpect does not support windows.
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
rexpect = "0.6.0"
|