[package] # name = "keyvaluedb-sqlite" version = "0.1.2" # authors = ["Veilid Team "] description = "A key-value SQLite database that implements the `KeyValueDB` trait" edition = "2021" license = "MIT OR Apache-2.0" [[bench]] name = "bench_read_perf" harness = false [dependencies] keyvaluedb = { version = "0.1.2", path = "../keyvaluedb" } parking_lot = "0.12.1" log = "0.4.20" rusqlite = { version = "0.29.0", features = ["bundled"] } hex = "0.4.3" [dev-dependencies] keyvaluedb-shared-tests = { version = "0.1.2", path = "../keyvaluedb-shared-tests" } tempfile = "3.8.0" alloc_counter = "0.0.4" criterion = { version = "0.5.1", features = ["async", "async_futures"] } ethereum-types = "0.14.1" rand = "0.8.5" keccak-hash = "0.10.0" sysinfo = "0.29.9" ctrlc = "3.4.0" chrono = "0.4.28" tokio = { version = "1.32.0", features = ["rt", "rt-multi-thread", "macros"] }