From 849e93f551cf2cc948f9012eacd0a161815a1253 Mon Sep 17 00:00:00 2001 From: 0xMochan Date: Mon, 2 Dec 2024 08:08:27 -0800 Subject: [PATCH] test: disable doctests as they don't work w/ async --- rig-sqlite/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rig-sqlite/Cargo.toml b/rig-sqlite/Cargo.toml index 0c8551fb..c61d895d 100644 --- a/rig-sqlite/Cargo.toml +++ b/rig-sqlite/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" description = "SQLite-based vector store implementation for the rig framework" license = "MIT" +[lib] +doctest = false + [dependencies] rig-core = { path = "../rig-core", features = ["derive"] } rusqlite = { version = "0.32", features = ["bundled"] }