-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 706 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (28 loc) · 706 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
33
[package]
name = "RecoveryMagic"
version = "0.1.0"
edition = "2021"
build = "build.rs"
[dependencies]
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
once_cell = "1.19"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
crossbeam-channel = "0.5"
parking_lot = "0.12"
num_cpus = "1.16"
ntfs-reader = "0.3"
widestring = "0.4.3"
winapi = { version = "0.3", features = ["winnt", "fileapi", "handleapi",
"shellapi",
"winuser",
"processthreadsapi",
"securitybaseapi",
] }
dokan = "0.3.1"
dokan-sys = "0.3.1"
tauri = { version = "1", features = ["api-all"] }
[build-dependencies]
tauri-build = { version = "1", features = [] }