-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (49 loc) · 1.44 KB
/
Cargo.toml
File metadata and controls
55 lines (49 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "openvcs"
version = "0.2.0"
description = "OpenVCS: a lightweight, highly customizable Git GUI built on Rust & Tauri"
authors = ["Jordon Brooks"]
homepage = "https://bbgames.dev"
repository = "https://github.com/Jordonbc/OpenVCS"
license = "GPL-3.0-or-later"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
# The `_lib` suffix may seem redundant but it is necessary
# to make the lib name unique and wouldn't conflict with the bin name.
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
name = "openvcs_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2.4", default-features = false, features = [] }
serde_json = "1.0"
[features]
default = []
[dependencies]
tauri = { version = "2.10", features = [] }
tauri-plugin-opener = "2.5"
serde = { version = "1", features = ["derive"] }
notify = "6"
tauri-plugin-dialog = "2.5"
tauri-plugin-updater = "2.9"
tokio = { version = "1.50", features = ["io-util", "process", "rt", "sync", "time"] }
dirs = "6"
regex = "1.12"
log = "0.4"
env_logger = "0.11"
parking_lot = "0.12"
toml = "1.0.6"
directories = "6"
serde_json = "1.0"
time = { version = "0.3", features = ["local-offset"] }
zip = "8.3"
tar = "0.4"
xz2 = "0.1"
shlex = "1.2"
sha2 = "0.10"
hex = "0.4"
os_pipe = "1.2"
base64 = "0.22"
thiserror = "2"
[dev-dependencies]
tempfile = "3"