diff options
| author | Ellie Huxtable <ellie@atuin.sh> | 2024-07-10 15:56:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-10 15:56:33 +0100 |
| commit | 8d9f677c4e9ccfcc6dc9297864dc49446fb5ee59 (patch) | |
| tree | 1fe507403c4d690937834a815a663336bf104039 /ui/backend/Cargo.toml | |
| parent | chore(deps): update to tonic 0.12, prost 0.13 (#2250) (diff) | |
| download | atuin-8d9f677c4e9ccfcc6dc9297864dc49446fb5ee59.zip | |
feat(gui): use fancy new side nav (#2243)
* feat(gui): use fancy new side nav
* compact only sidebar, no expand-collapse
* custom drag region, remove titlebar
* add user popup
* wire up login/logout/register, move user button to bottom and add menu
* link help and feedback to forum
Diffstat (limited to 'ui/backend/Cargo.toml')
| -rw-r--r-- | ui/backend/Cargo.toml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ui/backend/Cargo.toml b/ui/backend/Cargo.toml index d027e152..3e4c61ca 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" @@ -29,11 +29,14 @@ tauri-plugin-single-instance = "2.0.0-beta" tokio = "1.38.0" tauri-plugin-shell = "2.0.0-beta.7" comrak = "0.22" -portable-pty = "0.8.1" +portable-pty = "0.8.1" vt100 = "0.15.2" bytes = "1.6.0" nix = "0.29.0" +[target."cfg(target_os = \"macos\")".dependencies] +cocoa = "0.25" + [dependencies.sqlx] version = "0.7" features = ["runtime-tokio-rustls", "time", "postgres", "uuid"] |
