mirror of
https://github.com/atuinsh/atuin.git
synced 2024-11-23 00:34:20 +01:00
2e88321aec
This avoids issues with clients attempting to connect to the daemon while it's starting, systemd creates the socket early and will queue connections up until the daemon is ready to accept them.
43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
[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 = "../../crates/atuin-client", version = "18.2.0" }
|
|
atuin-common = { path = "../../crates/atuin-common", version = "18.2.0" }
|
|
atuin-dotfiles = { path = "../../crates/atuin-dotfiles", version = "0.2.0" }
|
|
atuin-history = { path = "../../crates/atuin-history", 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.36"
|
|
uuid = "1.7.0"
|
|
syntect = "5.2.0"
|
|
|
|
[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"]
|
|
|
|
[dependencies.tauri-plugin-sql]
|
|
features = ["sqlite"] # or "postgres", or "mysql"
|
|
version = "2.0.0-beta"
|