zlight_csv 0.2.0-aarch64-linux → 0.2.1-aarch64-linux
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/zlight_csv/3.0/zlight_csv.so +0 -0
- data/lib/zlight_csv/3.1/zlight_csv.so +0 -0
- data/lib/zlight_csv/3.2/zlight_csv.so +0 -0
- data/lib/zlight_csv/3.3/zlight_csv.so +0 -0
- metadata +19 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 05f9e9bd002b5dcccc288070b00d728cfb4988c9a3d466278fe2b7dbdba443fc
|
|
4
|
+
data.tar.gz: 72b3523b7220c94efb1f6f55c55a0673068d5dc5128f88a789d8d9dae92a6e4a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0db845e92a56fc1775296efdd4657325f23ebdd03a4222b95429286536ddac069571a39691a1bfd646292f26366c505c24974ed00a079290232079d34fff35c8
|
|
7
|
+
data.tar.gz: f71bc711dbe663852156fc346dc763bff5536e71b5a5895e5bfc7bf22fe0d15bee0f9e9b2ad1fde5ab57a1e1529c8ea268462938ea79ba43f6b295ef5f5d7517
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.1
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zlight_csv
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: aarch64-linux
|
|
6
6
|
authors:
|
|
7
7
|
- Zaidan Chaudhary
|
|
@@ -11,10 +11,20 @@ cert_chain: []
|
|
|
11
11
|
date: 2026-05-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |
|
|
14
|
-
ZLight is a blazing-fast CSV parser
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
14
|
+
ZLight is a blazing-fast CSV parser powered by Rust, offering up to 30x faster
|
|
15
|
+
parsing than Ruby's standard CSV library.
|
|
16
|
+
|
|
17
|
+
Features:
|
|
18
|
+
• Parse CSV strings: ZLight.parse(data, headers: true, converters: :numeric)
|
|
19
|
+
• Read files: ZLight.read("file.csv")
|
|
20
|
+
• Stream large files: ZLight.open("huge.csv") { |r| r.each { |row| } }
|
|
21
|
+
• Lazy enumeration for memory-efficient partial reads
|
|
22
|
+
• Drop-in compatible with CSV.parse options
|
|
23
|
+
|
|
24
|
+
Benchmarks (100K rows): Ruby CSV 1,458ms vs ZLight 78ms (19x faster)
|
|
25
|
+
Streaming with early exit: 5,600x faster for partial reads
|
|
26
|
+
|
|
27
|
+
Prebuilt binaries for Linux, macOS, and Windows — no Rust required.
|
|
18
28
|
email:
|
|
19
29
|
- zaidan@arxiron.com
|
|
20
30
|
executables: []
|
|
@@ -31,13 +41,12 @@ files:
|
|
|
31
41
|
- lib/zlight_csv/3.2/zlight_csv.so
|
|
32
42
|
- lib/zlight_csv/3.3/zlight_csv.so
|
|
33
43
|
- lib/zlight_csv/version.rb
|
|
34
|
-
homepage: https://
|
|
44
|
+
homepage: https://rubygems.org/gems/zlight_csv
|
|
35
45
|
licenses:
|
|
36
46
|
- MIT
|
|
37
47
|
metadata:
|
|
38
|
-
homepage_uri: https://
|
|
39
|
-
|
|
40
|
-
changelog_uri: https://arxiron.com/blob/main/CHANGELOG.md
|
|
48
|
+
homepage_uri: https://rubygems.org/gems/zlight_csv
|
|
49
|
+
documentation_uri: https://zaidanch.github.io/zlight-docs/
|
|
41
50
|
rubygems_mfa_required: 'true'
|
|
42
51
|
post_install_message:
|
|
43
52
|
rdoc_options: []
|
|
@@ -60,5 +69,5 @@ requirements: []
|
|
|
60
69
|
rubygems_version: 3.5.23
|
|
61
70
|
signing_key:
|
|
62
71
|
specification_version: 4
|
|
63
|
-
summary: High-performance CSV parser for Ruby, powered by Rust
|
|
72
|
+
summary: High-performance CSV parser for Ruby, powered by Rust — 30x faster than stdlib
|
|
64
73
|
test_files: []
|