diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2024-05-06 08:11:47 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-06 08:11:47 +0100 |
| commit | 754ddeaa8d3e3e4f3efc93d5bb22c68c31bb5c36 (patch) | |
| tree | f48fb912c2be2d08855e97ff24b6919a115c3c4f /ui/backend/Cargo.toml | |
| parent | chore(deps): bump serde_with from 3.7.0 to 3.8.1 (#2002) (diff) | |
| download | atuin-754ddeaa8d3e3e4f3efc93d5bb22c68c31bb5c36.zip | |
feat(ui): scroll history infinitely (#1999)
* wip, history scrolls right!
* wip
* virtual scroll fucking worksssss
* paging works :)
* scroll search results now too
Diffstat (limited to 'ui/backend/Cargo.toml')
| -rw-r--r-- | ui/backend/Cargo.toml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ui/backend/Cargo.toml b/ui/backend/Cargo.toml index 9cf47436..1bc40b02 100644 --- a/ui/backend/Cargo.toml +++ b/ui/backend/Cargo.toml @@ -14,8 +14,8 @@ tauri-build = { version = "2.0.0-beta", features = [] } [dependencies] atuin-client = { path = "../../crates/atuin-client", version = "18.2.0" } atuin-common = { path = "../../crates/atuin-common", version = "18.2.0" } - atuin-dotfiles = { path = "../../crates/atuin-dotfiles", version = "0.2.0" } +atuin-history = { path = "../../crates/atuin-history", version = "0.1.0" } eyre = "0.6" tauri = { version = "2.0.0-beta", features = ["tray-icon"] } @@ -36,3 +36,7 @@ custom-protocol = ["tauri/custom-protocol"] #[lib] #crate-type = ["staticlib", "cdylib", "rlib"] + +[dependencies.tauri-plugin-sql] +features = ["sqlite"] # or "postgres", or "mysql" +version = "2.0.0-beta" |
