From 7eb985b616c12aed261fbef74a47c5a928c03e61 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Mon, 15 Jul 2024 19:12:01 +0100 Subject: feat(gui): add runbook list, ability to create and delete, sql storage (#2282) * wip * saving works :)) * functioning delete button * persist selection properly --- ui/backend/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ui/backend/Cargo.toml') diff --git a/ui/backend/Cargo.toml b/ui/backend/Cargo.toml index 3e4c61ca..9df8dfb5 100644 --- a/ui/backend/Cargo.toml +++ b/ui/backend/Cargo.toml @@ -18,7 +18,7 @@ atuin-dotfiles = { path = "../../crates/atuin-dotfiles", version = "0.4.0" } atuin-history = { path = "../../crates/atuin-history", version = "0.3.0" } eyre = "0.6" -tauri = { version = "2.0.0-beta", features = [ "tray-icon"] } +tauri = { version = "2.0.0-beta", features = ["tray-icon"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" time = "0.3.36" @@ -33,6 +33,7 @@ portable-pty = "0.8.1" vt100 = "0.15.2" bytes = "1.6.0" nix = "0.29.0" +lazy_static = "1.5.0" [target."cfg(target_os = \"macos\")".dependencies] cocoa = "0.25" -- cgit v1.3.1