-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 915 Bytes
/
Cargo.toml
File metadata and controls
32 lines (30 loc) · 915 Bytes
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
[workspace]
members = [
"src-tauri",
"crates/patchyard-domain",
"crates/patchyard-persistence",
"crates/patchyard-orchestrator",
"crates/patchyard-git",
"crates/patchyard-adapters",
]
resolver = "2"
[workspace.package]
edition = "2024"
version = "0.1.0"
license = "MIT"
[workspace.dependencies]
anyhow = "1.0.100"
async-trait = "0.1.89"
chrono = { version = "0.4.42", features = ["clock", "serde"] }
directories = "6.0.0"
keyring = "3.6.3"
parking_lot = "0.12.5"
rusqlite = { version = "0.37.0", features = ["bundled", "chrono", "serde_json"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
tauri = { version = "2.9.2" }
tauri-build = { version = "2.5.1" }
thiserror = "2.0.17"
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread", "process", "time", "sync", "io-util"] }
tokio-util = "0.7.17"
uuid = { version = "1.18.1", features = ["serde", "v4"] }