-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
94 lines (71 loc) · 1.66 KB
/
Cargo.toml
File metadata and controls
94 lines (71 loc) · 1.66 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
86
87
88
89
90
91
92
93
94
[workspace]
members = [
"common",
"service",
"configurator",
"installer",
]
resolver = "2"
[workspace.package]
version = "1.0.0"
edition = "2021"
[workspace.dependencies]
# Common library
common = { path = "common" }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# HTTP Client
reqwest = { version = "0.12", features = ["native-tls", "multipart", "json", "stream"], default-features = false }
# Error Handling
thiserror = "1"
anyhow = "1"
# Async Runtime
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["io"] }
# DateTime
chrono = { version = "0.4", features = ["serde"] }
# UUID
uuid = { version = "1", features = ["v4", "serde"] }
# Base64 for Basic Auth
base64 = "0.22"
# GUI Framework
native-windows-gui = "1.0"
native-windows-derive = "1.0"
# Windows Service
windows-service = "0.7"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
# Scheduling
tokio-cron-scheduler = "0.13"
# DBF Parsing
dbase = { version = "0.5", features = ["yore"] }
# CSV Writing
csv = "1"
# Compression
flate2 = "1"
# File Watching
notify-debouncer-mini = "0.4"
# Encoding
encoding_rs = "0.8"
# VSS (Volume Shadow Copy Service)
rawcopy-rs = "0.1"
# File pattern matching
globset = "0.4.15"
# Windows API (for shortcuts creation)
windows = { version = "0.58", features = [
"Win32_System_Com",
"Win32_UI_Shell",
"Win32_UI_Shell_PropertiesSystem",
"Win32_Foundation",
"Win32_System_Ole",
] }
# Windows Registry
winreg = "0.55"
# Testing dependencies
wiremock = "0.6"
tempfile = "3"
tokio-test = "0.4"