-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
64 lines (58 loc) · 1.47 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
[package]
name = "lsar"
version = "0.1.0"
description = "直播解析工具"
authors = ["thep0y"]
edition = "2021"
[lib]
name = "lsar_lib"
crate-type = ["lib", "cdylib", "staticlib"]
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
tauri = { version = "2", features = ["macos-private-api"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["macros"] }
time = { version = "0", features = ['macros', 'serde'] }
tracing = { version = "0", features = ["log", "release_max_level_info"] }
tracing-subscriber = { version = "0", features = [
'time',
'env-filter',
'json',
] }
thiserror = "2"
sqlx = { version = "0", default-features = false, features = [
"macros",
"runtime-tokio",
"sqlite",
"time",
] }
dirs = "5"
window-vibrancy = "0"
md-5 = "0"
reqwest = { version = "0", features = ["json", "gzip"] }
toml = "0"
open = "5"
os_info = { version = "3", default-features = false }
regex = { version = "1", default-features = false }
url = "2"
rand = { version = "0", default-features = false, features = [
"std",
"std_rng",
] }
base64 = "0"
bytes = "1"
tauri-plugin-shell = "2"
tauri-plugin-clipboard-manager = "2"
tauri-plugin-dialog = "2"
tauri-plugin-process = "2"
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
tauri-plugin-single-instance = "2"
tauri-plugin-updater = "2"
[profile.release]
panic = "abort"
codegen-units = 1
lto = true
opt-level = "s"
strip = true