-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (41 loc) · 989 Bytes
/
Cargo.toml
File metadata and controls
44 lines (41 loc) · 989 Bytes
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
[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"
[dependencies]
# 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.8"
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