-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
112 lines (89 loc) · 2.19 KB
/
Cargo.toml
File metadata and controls
112 lines (89 loc) · 2.19 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
[workspace]
members = [
"rcompare_common",
"rcompare_core",
"rcompare_cli",
"rcompare_gui", # DEPRECATED: Use teczka instead
"rcompare_ffi",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.70"
authors = ["RCompare Contributors"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/aecs4u/rcompare"
[workspace.dependencies]
# Shared dependencies
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
chrono = "0.4"
uuid = { version = "1.0", features = ["v4", "serde"] }
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Filesystem and I/O
jwalk = "0.8"
ignore = "0.4"
# Hashing
blake3 = "1.5"
hex = "0.4"
# Serialization
bincode = "1.3"
toml = "0.8"
# CLI
clap = { version = "4.5", features = ["derive"] }
indicatif = "0.17"
# Diffing
similar = { version = "2.6", features = ["inline"] }
# Syntax highlighting
syntect = "5.2"
# Image processing
image = "0.25"
kamadak-exif = "0.5"
# CSV processing
csv = "1.3"
# Excel processing
calamine = "0.26"
# JSON/YAML processing
serde_yml = "0.0.12"
# DataFrame/Parquet processing
polars = { version = "0.46", features = ["parquet", "lazy", "rows", "dtype-full"] }
# Archive handling
zip = "0.6"
tar = "0.4"
flate2 = "1.0"
sevenz-rust = "0.6"
bzip2 = "0.5"
xz2 = "0.1"
unrar = "0.5"
# Pattern matching
glob = "0.3"
regex = "1.10"
# Concurrency
rayon = "1.10"
crossbeam = "0.8"
# Platform-specific paths
directories = "5.0"
# Trash
trash = "5.0"
# GUI (Slint is deprecated — kept for rcompare_gui backward compat)
slint = { version = "1.14", default-features = false, features = ["backend-winit", "renderer-femtovg", "compat-1-2"] }
filetime = "0.2"
tempfile = "3.8"
# SSH/SFTP
ssh2 = "0.9"
# Cloud storage - S3
aws-config = "1.5"
aws-sdk-s3 = "1.119"
aws-credential-types = "1.2"
# Cloud storage - WebDAV and HTTP
reqwest = { version = "0.12", features = ["json", "stream"] }
bytes = "1.5"
async-trait = "0.1"
tokio = { version = "1.37", features = ["rt-multi-thread", "macros", "fs", "io-util", "sync", "time"] }
url = "2.5"
# Benchmarking (dev dependency)
criterion = { version = "0.5", features = ["html_reports"] }