diff options
| author | Ellie Huxtable <ellie@atuin.sh> | 2025-07-29 16:04:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-29 16:04:25 +0200 |
| commit | 59d2047a46460cf4b206c9f6482c7b5b957d396b (patch) | |
| tree | 2497e025a2a66a408a49f03d3608defdfc65ed9b /crates | |
| parent | fix: ensure the idx cache is cleaned on deletion, only insert if records are ... (diff) | |
| download | atuin-59d2047a46460cf4b206c9f6482c7b5b957d396b.zip | |
fix(build): enable sqlite feature for sqlite server (#2848)
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/atuin-server-sqlite/Cargo.toml | 2 |
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" |
