[package] name = "sqlite-cache" version = "0.1.4" edition = "2021" license = "Apache-2.0" authors = ["Heyang Zhou "] description = "SQLite-based on-disk cache." repository = "https://github.com/losfair/sqlite-cache" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] rusqlite = "0.32" data-encoding = "2.6.0" futures = "0.3.30" tracing = "0.1.40" [dev-dependencies] tracing-test = "0.2" tokio = { version = "1.39", features = ["macros", "rt", "time"] } rand = "0.8" criterion = "0.5" [[bench]] name = "cache_benchmark" harness = false