zlight_csv 0.2.1-x86_64-linux → 0.2.5-x86_64-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 92c74dfc9f78142def948bee9322024769b27ccefed4e148c06941756847642e
4
- data.tar.gz: cdaffa43c4ca7b3953b1a21d09263b1ed208b1a7edf9e066f7d7cfefe13c3379
3
+ metadata.gz: ce7f72e7d75f061bccdca52cf4861db25bed7c019523bed2e138acecb4d275d9
4
+ data.tar.gz: 60fe9470352fca69bf57777f8da1de313a4b87ce183a23aa6653f10319f4a75b
5
5
  SHA512:
6
- metadata.gz: b7d12710ca1fe97eb0a5f3dc46e988d3dc99d9937f4e5ebed1ada26c7dc8995b644b66c4646fe76ebca0146775fef28efa2ec3759408e060dd56d2044ffe326d
7
- data.tar.gz: ba8fc8ce7ca5eecf5dc97319e164a3ac4867f1823c3ef699ad6a2ffae7cef95d3a497c844517997ed5ce851eff48eeb6037154a9b68b363a58b60a5525144efe
6
+ metadata.gz: eae3f965fb38ba16cfb08b464baeb2ee8c600eff43e85d16118cae865c844ef16e3a8ef11c69fe0b8eec6e8dfa098ee59da1a3576b4a296c5ec95bca3fe3326a
7
+ data.tar.gz: 83cc76963688f12a0d716e9e82c25cde48e707a0a374582a98dcbf8e602a7c58de248960617a1f5edf1b81436aaaee006c5c9515a9b3c35e0580508d02b2167d
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.1
1
+ 0.2.5
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.1
4
+ version: 0.2.5
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Zaidan Chaudhary
@@ -11,20 +11,13 @@ 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 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.
14
+ ZLight brings the speed of Rust to Ruby's CSV parsing. Built as a native
15
+ extension, it delivers up to 30x faster performance than Ruby's standard
16
+ CSV library while maintaining full API compatibility. Whether you're parsing
17
+ small configuration files or processing millions of rows, ZLight handles it
18
+ efficiently. The streaming API enables memory-efficient processing of large
19
+ datasets by reading rows one at a time, and lazy enumeration lets you stop
20
+ early without wasting resources on unneeded data.
28
21
  email:
29
22
  - zaidan@arxiron.com
30
23
  executables: []
@@ -69,5 +62,5 @@ requirements: []
69
62
  rubygems_version: 3.5.23
70
63
  signing_key:
71
64
  specification_version: 4
72
- summary: High-performance CSV parser for Ruby, powered by Rust — 30x faster than stdlib
65
+ summary: High-performance CSV parser for Ruby, powered by Rust
73
66
  test_files: []