-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
86 lines (82 loc) · 2.07 KB
/
Cargo.toml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[package]
name = "wx_dump_rs"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "wx_dump_rs"
path = "src/main.rs"
required-features = ["default"]
[[bin]]
name = "wx_dump_rs_gui"
path = "src/main_gui.rs"
required-features = ["gui"]
[features]
default = ["shell"]
shell = ["windows", "futures"]
gui = [
"iced",
"iced_runtime",
"iced_aw",
"diesel/sqlite",
"diesel/chrono",
"chrono",
"tokio",
"windows/Win32_System_Com",
"windows/Win32_UI_Shell",
"silk-sys",
"cpal",
"plotters",
"xml",
"reqwest",
"iced_gif",
"jieba-rs",
]
dev = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
windows = { version = "*", features = [
"Win32_Foundation",
"Win32_System_Threading",
"Win32_System_Memory",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_LibraryLoader",
"Win32_UI_WindowsAndMessaging",
"Win32_Storage_FileSystem",
], optional = true }
anyhow = { version = "*", features = ["backtrace"] }
serde_json = "*"
clap = { version = "*", features = ["derive"] }
base64 = "*"
dirs = "*"
pbkdf2 = { version = "*", features = ["hmac"] }
sha1 = "*"
hmac = "*"
cbc = "*"
aes = "*"
byteorder = "*"
iced = { version = "*", features = [
"tokio",
"debug",
"default",
"qr_code",
"image",
"canvas",
"system",
"multi-window",
], optional = true }
iced_aw = { version = "*", features = [
"date_picker",
"icons",
], optional = true }
iced_runtime = { version = "*", optional = true }
tokio = { version = "*", features = ["sync"], optional = true }
futures = { version = "*", optional = true }
diesel = { version = "*", optional = true }
silk-sys = { path = "silk-sys", optional = true }
cpal = { version = "*", optional = true }
chrono = { version = "*", optional = true }
plotters = { version = "*", optional = true }
xml = { version = "*", optional = true }
reqwest = { version = "*", optional = true }
iced_gif = { version = "*", path = "iced_gif", optional = true }
jieba-rs ={ version = "*", optional = true , features = ["textrank","tfidf"]}