mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-25 20:14:21 +01:00
The Github dependabot complains about anstream, which comes through `clap`: https://github.com/tursodatabase/limbo/security/dependabot/8
28 lines
551 B
TOML
28 lines
551 B
TOML
[package]
|
|
name = "core_tester"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Internal tester of write path"
|
|
|
|
[lib]
|
|
name = "test"
|
|
path = "src/lib.rs"
|
|
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.75"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
dirs = "5.0.1"
|
|
env_logger = "0.10.1"
|
|
limbo_core = { path = "../core" }
|
|
rustyline = "12.0.0"
|
|
rusqlite = { version = "0.29", features = ["bundled"] }
|
|
tempfile = "3.0.7"
|
|
log = "0.4.22"
|
|
|
|
[dev-dependencies]
|
|
rstest = "0.18.2"
|