-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (49 loc) · 1.12 KB
/
Cargo.toml
File metadata and controls
54 lines (49 loc) · 1.12 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
[package]
name = "vae-normalizer"
version = "1.0.0"
edition = "2021"
authors = ["Joshua Jewell"]
description = "VAE dataset normalizer with formal verification and cryptographic integrity"
license = "MIT"
repository = "https://huggingface.co/datasets/joshuajewell/VAEDecodedImages-SDXL"
[lib]
name = "vae_normalizer"
path = "src/lib.rs"
[[bin]]
name = "vae-normalizer"
path = "src/main.rs"
[dependencies]
# Hex encoding for SHAKE256 digests
hex = "0.4"
# SHAKE256 implementation
tiny-keccak = { version = "2.0", features = ["shake"] }
# CLI argument parsing
clap = { version = "4.4", features = ["derive"] }
# CSV handling
csv = "1.3"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Random number generation for splits
rand = "0.9"
rand_chacha = "0.3"
# File walking
walkdir = "2.5"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Parallel processing
rayon = "1.10"
# Progress indication
indicatif = "0.17"
# Image processing for diff compression
image = "0.25"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true
[profile.dev]
opt-level = 0
debug = true