-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
117 lines (94 loc) · 3.02 KB
/
Cargo.toml
File metadata and controls
117 lines (94 loc) · 3.02 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[package]
name = "ultralog"
version = "2.8.2"
edition = "2021"
description = "A high-performance ECU log viewer written in Rust"
authors = ["Cole Gentry"]
license = "AGPL-3.0"
repository = "https://github.com/ClassicMiniDIY/UltraLog"
readme = "README.md"
keywords = ["ecu", "datalog", "haltech", "automotive", "tuning"]
categories = ["visualization", "gui"]
default-run = "ultralog"
[[bin]]
name = "ultralog"
path = "src/main.rs"
[[bin]]
name = "test_parser"
path = "src/bin/test_parser.rs"
[dependencies]
# GUI Framework
eframe = { version = "0.34.1", default-features = false, features = [
"default_fonts",
"glow",
"persistence",
"x11",
"wayland",
] }
egui_plot = "0.35.0"
egui_extras = { version = "0.34.1", features = ["image"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yml = "0.0.12" # For OpenECU Alliance adapter specs (replaces deprecated serde_yaml)
# Parsing
regex = "1.12"
strum = { version = "0.28", features = ["derive"] }
rayon = "1.11" # Parallel iteration for parsing
# Expression evaluation (for computed channels)
meval = "0.2"
# Platform-specific directories
dirs = "6.0"
# File handling
rfd = "0.17" # Native file dialogs
open = "5" # Open URLs in default browser
memmap2 = "0.9" # Memory-mapped file loading for large files
encoding_rs = "0.8" # Character encoding detection and conversion (UTF-16, etc.)
# Auto-update
ureq = { version = "3.3", features = ["json"] } # Minimal HTTP client
semver = "1.0" # Version comparison
zip = "8.5" # ZIP extraction for Windows updates
flate2 = "1.1" # Gzip decompression for Linux updates
tar = "0.4" # Tar archive extraction for Linux updates
# Image loading (for app icon and PNG export)
image = { version = "0.25", default-features = false, features = ["png"] }
# PDF generation for chart export
printpdf = "0.9"
# Error handling
thiserror = "2.0.17"
anyhow = "1.0"
# Internationalization
rust-i18n = "3.1"
# Logging
tracing = "0.1"
tracing-subscriber = "0.3"
# UUID generation for anonymous user IDs
uuid = { version = "1.0", features = ["v4"] }
chrono = { version = "0.4.44", features = ["serde"] }
# Clipboard support for histogram copy/paste
arboard = "3.6"
# MCP (Model Context Protocol) server for Claude Desktop integration
rmcp = { version = "0.12", features = ["server", "transport-streamable-http-server", "macros"] }
tokio = { version = "1", features = ["full"] }
axum = "0.8"
schemars = "1.0"
# Windows-specific: embed icon and manifest
[target.'cfg(windows)'.build-dependencies]
winresource = "0.1"
# macOS-specific: set app name in dock
[target.'cfg(target_os = "macos")'.dependencies]
objc2 = "0.6.4"
objc2-foundation = "0.3.2"
[dev-dependencies]
# Note: cargo-tarpaulin is installed as a cargo subcommand, not a library dependency
# Run coverage with: cargo tarpaulin --out Html --exclude-files "src/ui/*" "src/main.rs"
[profile.release]
opt-level = 3
lto = true
strip = true
# Faster compile times for debug builds
[profile.dev]
opt-level = 0
debug = true
[profile.dev.package."*"]
opt-level = 3