aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@atuin.sh>2025-07-29 16:04:25 +0200
committerGitHub <noreply@github.com>2025-07-29 16:04:25 +0200
commit59d2047a46460cf4b206c9f6482c7b5b957d396b (patch)
tree2497e025a2a66a408a49f03d3608defdfc65ed9b
parentfix: ensure the idx cache is cleaned on deletion, only insert if records are ... (diff)
downloadatuin-59d2047a46460cf4b206c9f6482c7b5b957d396b.zip
fix(build): enable sqlite feature for sqlite server (#2848)
-rw-r--r--crates/atuin-server-sqlite/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/atuin-server-sqlite/Cargo.toml b/crates/atuin-server-sqlite/Cargo.toml
index 1af1f462..0d588a20 100644
--- a/crates/atuin-server-sqlite/Cargo.toml
+++ b/crates/atuin-server-sqlite/Cargo.toml
@@ -17,7 +17,7 @@ eyre = { workspace = true }
tracing = { workspace = true }
time = { workspace = true }
serde = { workspace = true }
-sqlx = { workspace = true }
+sqlx = { workspace = true, features = ["sqlite", "regexp"] }
async-trait = { workspace = true }
uuid = { workspace = true }
metrics = "0.21.1"