-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (50 loc) · 1.24 KB
/
Copy pathCargo.toml
File metadata and controls
52 lines (50 loc) · 1.24 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
[workspace]
members = [
"crates/cleanerx-core",
"crates/adapter-codex",
"crates/adapter-claude",
"crates/adapter-opencode",
"crates/adapter-pi",
"src-tauri",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "Apache-2.0"
authors = ["BeaCox"]
rust-version = "1.88"
[workspace.dependencies]
age = "0.12.1"
anyhow = "1.0"
async-trait = "0.1"
base64 = "0.22"
chrono = { version = "0.4", features = ["serde"] }
dirs = "6.0"
flate2 = "1.1"
futures = "0.3"
hex = "0.4"
keyring = "4.1.6"
libc = "0.2"
parking_lot = "0.12"
regex = "1.11"
rusqlite = { version = "0.40.2", features = ["bundled", "backup"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
sysinfo = { version = "0.39.6", default-features = false, features = ["system"] }
tar = "0.4"
tempfile = "3.20"
thiserror = "2.0"
tokio = { version = "1.47", features = ["fs", "io-util", "macros", "process", "rt-multi-thread", "sync", "time"] }
tracing = "0.1"
uuid = { version = "1.18", features = ["serde", "v4", "v5"] }
walkdir = "2.5"
windows-sys = { version = "0.61.2", features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Security_Authorization",
"Win32_Storage_FileSystem",
"Win32_System_Threading",
] }
zstd = "0.13"