2023-01-31 17:55:57 +03:00
|
|
|
[package]
|
2024-04-04 12:56:56 +03:00
|
|
|
name = "gitbutler-tauri"
|
2023-01-31 17:55:57 +03:00
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
2024-02-07 00:59:59 +03:00
|
|
|
authors = ["GitButler <gitbutler@gitbutler.com>"]
|
2024-03-27 22:40:52 +03:00
|
|
|
publish = false
|
2023-05-05 10:56:01 +03:00
|
|
|
|
2024-03-28 10:49:53 +03:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[[bin]]
|
2024-04-04 12:56:56 +03:00
|
|
|
name = "gitbutler-tauri"
|
2024-03-28 10:49:53 +03:00
|
|
|
path = "src/main.rs"
|
|
|
|
test = false
|
|
|
|
|
2023-01-31 17:55:57 +03:00
|
|
|
[build-dependencies]
|
2024-07-02 10:48:47 +03:00
|
|
|
tauri-build = { version = "1.5.3", features = [] }
|
2023-01-31 17:55:57 +03:00
|
|
|
|
2023-10-09 16:11:13 +03:00
|
|
|
[dev-dependencies]
|
|
|
|
pretty_assertions = "1.4"
|
2024-03-30 13:01:58 +03:00
|
|
|
tempfile = "3.10"
|
2024-04-10 14:06:49 +03:00
|
|
|
gitbutler-testsupport.workspace = true
|
2023-10-09 16:11:13 +03:00
|
|
|
|
2023-01-31 17:55:57 +03:00
|
|
|
[dependencies]
|
2024-06-01 18:38:43 +03:00
|
|
|
anyhow = "1.0.86"
|
2024-05-01 18:11:55 +03:00
|
|
|
async-trait = "0.1.80"
|
2024-06-01 18:38:43 +03:00
|
|
|
backtrace = { version = "0.3.72", optional = true }
|
2023-10-13 11:54:45 +03:00
|
|
|
console-subscriber = "0.2.0"
|
2024-05-15 18:39:00 +03:00
|
|
|
dirs = "5.0.1"
|
2023-09-14 10:07:58 +03:00
|
|
|
futures = "0.3"
|
2024-01-17 17:33:05 +03:00
|
|
|
git2.workspace = true
|
2023-11-14 18:58:51 +03:00
|
|
|
nonzero_ext = "0.3.0"
|
2023-12-22 16:29:46 +03:00
|
|
|
once_cell = "1.19"
|
2024-05-01 18:11:55 +03:00
|
|
|
reqwest = { version = "0.12.4", features = ["json"] }
|
2024-03-18 17:08:51 +03:00
|
|
|
serde.workspace = true
|
2023-09-14 10:07:58 +03:00
|
|
|
serde_json = { version = "1.0", features = [ "std", "arbitrary_precision" ] }
|
2024-02-15 00:17:01 +03:00
|
|
|
tauri-plugin-context-menu = { git = "https://github.com/c2r0b/tauri-plugin-context-menu", branch = "main" }
|
2023-10-18 11:14:37 +03:00
|
|
|
tauri-plugin-single-instance = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
|
2023-05-12 13:33:25 +03:00
|
|
|
tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
|
2024-01-28 14:38:54 +03:00
|
|
|
tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
|
2024-02-29 21:28:45 +03:00
|
|
|
tauri-plugin-log = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
|
|
|
|
log = "^0.4"
|
2024-01-17 17:33:05 +03:00
|
|
|
thiserror.workspace = true
|
2024-04-18 10:25:40 +03:00
|
|
|
# The features here optimize for performance.
|
|
|
|
tokio = { workspace = true, features = [ "rt-multi-thread", "parking_lot" ] }
|
2023-11-21 15:01:09 +03:00
|
|
|
tracing = "0.1.40"
|
2023-11-27 18:37:45 +03:00
|
|
|
tracing-appender = "0.2.3"
|
2023-09-14 10:07:58 +03:00
|
|
|
tracing-subscriber = "0.3.17"
|
2024-04-04 12:56:56 +03:00
|
|
|
gitbutler-core.workspace = true
|
2024-04-17 22:46:40 +03:00
|
|
|
gitbutler-watcher.workspace = true
|
2024-07-07 14:32:35 +03:00
|
|
|
gitbutler-branch.workspace = true
|
2024-05-05 22:40:06 +03:00
|
|
|
open = "5"
|
2024-04-04 12:56:56 +03:00
|
|
|
|
|
|
|
[dependencies.tauri]
|
2024-07-02 10:48:47 +03:00
|
|
|
version = "1.7.0"
|
2024-04-04 12:56:56 +03:00
|
|
|
features = [
|
|
|
|
"http-all", "os-all", "dialog-open", "fs-read-file",
|
|
|
|
"path-all", "process-relaunch", "protocol-asset",
|
|
|
|
"shell-open", "window-maximize", "window-start-dragging",
|
|
|
|
"window-unmaximize"
|
|
|
|
]
|
2023-01-31 17:55:57 +03:00
|
|
|
|
2024-03-25 19:58:18 +03:00
|
|
|
[lints.clippy]
|
|
|
|
all = "deny"
|
|
|
|
perf = "deny"
|
|
|
|
correctness = "deny"
|
|
|
|
|
2023-01-31 17:55:57 +03:00
|
|
|
[features]
|
2024-04-29 16:54:13 +03:00
|
|
|
default = ["custom-protocol", "devtools"]
|
2024-04-25 08:16:41 +03:00
|
|
|
## A forwarding to all crates that have windows-specific adjustments for testing on non-Windows.
|
2024-04-25 17:33:55 +03:00
|
|
|
windows = []
|
2023-07-21 14:05:28 +03:00
|
|
|
devtools = ["tauri/devtools"]
|
2024-04-19 16:17:44 +03:00
|
|
|
|
2023-01-31 17:55:57 +03:00
|
|
|
# this feature is used used for production builds where `devPath` points to the filesystem
|
|
|
|
# DO NOT remove this
|
|
|
|
custom-protocol = ["tauri/custom-protocol"]
|
2023-11-24 11:03:04 +03:00
|
|
|
|
2024-04-29 16:54:13 +03:00
|
|
|
error-context = ["dep:backtrace" ]
|