aboutsummaryrefslogtreecommitdiffstats
path: root/ui/backend/Cargo.toml
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2024-04-11 16:59:01 +0100
committerGitHub <noreply@github.com>2024-04-11 16:59:01 +0100
commit6cd4319fcf540ef70f74cc2f10d0d4297ee7b788 (patch)
tree3d24dbf70493c377e162d9941faac65c829623f9 /ui/backend/Cargo.toml
parentfeat(bash/blesh): use _ble_exec_time_ata for duration even in bash < 5 (#1940) (diff)
downloadatuin-6cd4319fcf540ef70f74cc2f10d0d4297ee7b788.zip
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
Diffstat (limited to 'ui/backend/Cargo.toml')
-rw-r--r--ui/backend/Cargo.toml38
1 files changed, 38 insertions, 0 deletions
diff --git a/ui/backend/Cargo.toml b/ui/backend/Cargo.toml
new file mode 100644
index 00000000..94721acc
--- /dev/null
+++ b/ui/backend/Cargo.toml
@@ -0,0 +1,38 @@
+[package]
+name = "ui"
+version = "0.0.0"
+description = "A Tauri App"
+publish = false
+authors = ["you"]
+edition = "2021"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[build-dependencies]
+tauri-build = { version = "2.0.0-beta", features = [] }
+
+[dependencies]
+atuin-client = { path = "../../atuin-client", version = "18.1.0" }
+atuin-common = { path = "../../atuin-common", version = "18.1.0" }
+
+atuin-dotfiles = { path = "../../atuin-dotfiles", version = "0.1.0" }
+
+eyre = "0.6"
+tauri = { version = "2.0.0-beta", features = ["tray-icon"] }
+serde = { version = "1.0", features = ["derive"] }
+serde_json = "1.0"
+time = "0.3.34"
+uuid = "1.7.0"
+syntect = "5.2.0"
+
+[workspace.dependencies.sqlx]
+version = "=0.7.3"
+features = ["runtime-tokio-rustls", "time", "postgres", "uuid"]
+
+[features]
+# this feature is used for production builds or when `devPath` points to the filesystem
+# DO NOT REMOVE!!
+custom-protocol = ["tauri/custom-protocol"]
+
+#[lib]
+#crate-type = ["staticlib", "cdylib", "rlib"]