-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
85 lines (69 loc) · 1.96 KB
/
Cargo.toml
File metadata and controls
85 lines (69 loc) · 1.96 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
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
[workspace]
members = ["src-tauri", "crates/enote-mcp"]
resolver = "2"
[workspace.package]
version = "1.2.1"
edition = "2024"
authors = ["124244236@qq.com"]
[workspace.dependencies]
# Tauri(tray-icon 由子 crate 的 desktop feature 控制)
tauri = { version = "2", features = [] }
tauri-build = { version = "2", features = [] }
tauri-plugin-fs = "2"
tauri-plugin-opener = "2"
tauri-plugin-shell = "2"
tauri-plugin-dialog = "2"
tauri-plugin-updater = "2"
tauri-plugin-process = "2"
# Serde
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_with = "3"
serde_yaml = "0.9"
# Database(基础仅 SQLite,MySQL/PG 由 desktop feature 启用)
sea-orm = { version = "1", features = ["sqlx-sqlite", "runtime-tokio"] }
sea-orm-migration = { version = "1", features = ["runtime-tokio", "sqlx-sqlite"] }
# Async
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros", "sync", "time", "io-util", "fs"] }
# Error handling
anyhow = "1"
thiserror = "2"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
# CLI
clap = { version = "4", features = ["derive"] }
# Crypto
aes-gcm = "0.10"
argon2 = "0.5"
sha2 = "0.10"
rand = "0.10"
base64 = "0.22"
# Data formats
rust_xlsxwriter = "0.82"
calamine = "0.26"
csv = "1"
zip = "2"
# Utilities
chrono = "0.4"
config = "0.15"
uuid = { version = "1", features = ["v4"] }
dirs = "6"
sys-locale = "0.3"
keyring = { version = "3", features = ["apple-native", "windows-native", "sync-secret-service"] }
# HTTP Client
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart", "rustls-tls"] }
# Cloud Storage
opendal = { version = "0.55", features = ["services-s3", "services-oss", "services-cos", "services-webdav"] }
# MCP
rmcp = { version = "0.16", features = ["server", "transport-io"] }
schemars = "1"
[profile.dev]
incremental = true
[profile.release]
codegen-units = 1
lto = true
opt-level = "s"
panic = "abort"
strip = true