diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2024-04-11 16:59:01 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-11 16:59:01 +0100 |
| commit | 6cd4319fcf540ef70f74cc2f10d0d4297ee7b788 (patch) | |
| tree | 3d24dbf70493c377e162d9941faac65c829623f9 /Cargo.toml | |
| parent | feat(bash/blesh): use _ble_exec_time_ata for duration even in bash < 5 (#1940) (diff) | |
| download | atuin-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 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -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"] |
