-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (43 loc) · 977 Bytes
/
Cargo.toml
File metadata and controls
54 lines (43 loc) · 977 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
45
46
47
48
49
50
51
52
53
54
[package]
name = "phaeton"
version = "0.3.0"
edition = "2021"
authors = ["Zahraan Dzakii Tsaqiif <zahraandzakiits@gmail.com>"]
description = "A high-performance preprocessing and ETL engine for sanitizing raw data streams, accelerated by Rust."
license = "MIT"
[lib]
name = "_phaeton"
crate-type = ["cdylib"]
[dependencies]
# Python Bridge
pyo3 = { version = "0.20", features = ["extension-module", "abi3-py38"] }
pythonize = "0.20"
# Parallelism (Core Performance)
rayon = "1.8"
num_cpus = "1.16"
# I/O & Parsing
csv = "1.3"
memmap2 = "0.9"
arrow = { version = "53.2", features = ["ipc"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Text Processing
regex = "1.10"
strsim = "0.11"
heck = "0.4"
# Encoding
encoding_rs = "0.8"
encoding_rs_io = "0.1"
# Date/Time
chrono = "0.4"
# Security
sha2 = "0.10"
hex = "0.4"
# Error Handling
thiserror = "1.0"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = true