-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
101 lines (90 loc) · 3.06 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[package]
name = "redlang"
version = "1.0.80"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
fancy-regex = "0.13.0"
encoding = "0.2.33"
getrandom = "0.2.15"
base64 = "0.22.1"
serde_json = "1.0.121"
serde_derive = "1.0.204"
serde = {version = "1.0.204",features = ["derive"]}
uuid = {version = "1.10.0",features = ["v4","fast-rng"]}
lazy_static = "1.5.0"
chrono = "0.4.38"
md-5 = "0.10.6"
rcnb-rs = "0.1.0"
rust-embed = {version="8.5.0",features = ["compression"]}
image = "0.25.2"
imageproc = "0.25.0"
gif = "0.13.1"
cron = "0.12.1"
hyper = { version = "1", features = ["full"] }
tokio = { version = "1", features = ["full"] }
url = "2.5.2"
futures-util = "0.3.30"
hyper-tungstenite = "0.14.0"
tokio-tungstenite = { version = "0.23.1", default-features = false, features = ["native-tls-vendored"] }
scopeguard = "1.2.0"
log = "0.4.22"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter","time","local-time"]}
opener = "0.7.1"
rusqlite = {version = "0.31.0",features = ["bundled","functions"]}
sevenz-rust = "0.6.1"
jsonpath-rust = "0.7.0"
rusttype = "0.9.3"
# markdown = "1.0.0-alpha.7"
reqwest = {version = "0.12.5",default-features = false,features = ["native-tls-vendored","multipart"]}
time = { version = "0.3.36", features = ["formatting", "macros"] }
# headless_chrome = {version="1.0.5",default-features = false}
webp = "0.3.0"
sysinfo = "0.30.13"
usvg = "0.42.0"
resvg = { version = "0.42.0", default-features = false, features = [ "text", "raster-images" ] }
fontdb = { version = "0.18.0", default-features = false, features = [ "fs" ] }
flate2 = { version = "1.0.30",default-features = false}
zhconv = {version = "0.3.1", features = ["opencc","compress"]}
async-trait = "0.1.81"
html5gum = "0.5.7"
html-escape = "0.2.13"
libloading = "0.8.5"
tokio-util = { version = "0.7.11", default-features = false, features = [ "io" ] }
http-body-util = "0.1"
hyper-util = { version = "0.1", features = ["full"] }
bytes = "1.6.1"
zip = "2.1.5"
crc64 = "2.0.0"
headless_chrome = "1.0.15"
path-clean = "1.0.1"
rust-ini = "0.21.0"
mlua = { version = "0.9.9", features = ["lua54", "vendored"] }
ab_glyph = "0.2.28"
claxon = "0.4.3"
minimp3_fixed ="0.5.4"
silk-rs-no-llvm = {git = "https://github.com/super1207/silk-rs-no-llvm"}
lewton = "0.10.2"
msedge-tts = {git = "https://github.com/super1207/msedge-tts"}
imap = { git = "https://github.com/jonhoo/rust-imap"}
native-tls = "0.2.12"
mail-parser = "0.9.3"
lettre = { version = "0.11",features = ["tokio1-native-tls"]}
scraper = "0.20.0"
tungstenite = "0.23.0"
markdown = "1.0.0-alpha.21"
[build-dependencies]
embed-resource = "2.4.3"
[target.'cfg(windows)'.dependencies]
winreg = "0.52.0"
xcap = "0.0.10"
winconsole = "0.11.1"
tray-icon = "0.14.3"
fltk = { version = "1.4.33"}
[profile.release]
panic = "abort" # Strip expensive panic clean-up logic
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
lto = true # Enables link to optimizations
opt-level = "s" # Optimize for binary size
strip = true # Remove debug symbols