From 6cd4319fcf540ef70f74cc2f10d0d4297ee7b788 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Thu, 11 Apr 2024 16:59:01 +0100 Subject: feat(gui): add base structure (#1935) * initial * ui things * cargo * update, add history refresh button * history page a bit better, add initial dotfiles page * re-org layout * bye squigglies * add dotfiles ui, show aliases * add default shell detection * put stats in a little drawer, alias import changes * use new table for aliases, add alias deleting * support adding aliases * close drawer when added, no alias autocomplete * clippy, format * attempt to ensure gdk is installed ok * sudo * no linux things on mac ffs * I forgot we build for windows too... end of day * remove tauri backend from workspace --- Cargo.toml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 03bdf5fa..47756d34 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,12 @@ [workspace] members = [ - "atuin", - "atuin-client", - "atuin-server", - "atuin-server-postgres", - "atuin-server-database", - "atuin-common", - "atuin-dotfiles", + "atuin", + "atuin-client", + "atuin-server", + "atuin-server-postgres", + "atuin-server-database", + "atuin-common", + "atuin-dotfiles", ] resolver = "2" @@ -24,10 +24,10 @@ readme = "README.md" async-trait = "0.1.58" base64 = "0.21" log = "0.4" -time = { version = "0.3", features = [ - "serde-human-readable", - "macros", - "local-offset", +time = { version = "=0.3.34", features = [ + "serde-human-readable", + "macros", + "local-offset", ] } clap = { version = "4.5.1", features = ["derive"] } config = { version = "0.13", default-features = false, features = ["toml"] } @@ -46,7 +46,7 @@ whoami = "1.5.1" typed-builder = "0.18.0" pretty_assertions = "1.3.0" thiserror = "1.0" -rustix = {version = "0.38.30", features=["process", "fs"]} +rustix = { version = "0.38.30", features = ["process", "fs"] } [workspace.dependencies.reqwest] version = "0.11" @@ -54,5 +54,5 @@ features = ["json", "rustls-tls-native-roots"] default-features = false [workspace.dependencies.sqlx] -version = "0.7.3" +version = "=0.7.3" features = ["runtime-tokio-rustls", "time", "postgres", "uuid"] -- cgit v1.3.1