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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dd53dcf4937f1cda9a6514ab0e881dc79efc7eeb534fbb770f187b64c8fb605a
4
- data.tar.gz: 372b67f7913d030344b4a6489fdb153eeacbd06a9696a898314981d43bfa8738
3
+ metadata.gz: 05f9e9bd002b5dcccc288070b00d728cfb4988c9a3d466278fe2b7dbdba443fc
4
+ data.tar.gz: 72b3523b7220c94efb1f6f55c55a0673068d5dc5128f88a789d8d9dae92a6e4a
5
5
  SHA512:
6
- metadata.gz: ce9062dcbd21109821f5fe11be17d04df11556531059ae60e8cc5c88eb05cf9a910fa3af614498ec8523e91e416886353e5a66c384cad69f267654c0d7cbeb58
7
- data.tar.gz: f1cc6aaa1c0e17be7e319098b2a72144c297b5a7299ab4280ce92c398d4bb341e0138791dc80d4dc2b7c2ad437e09bd252cf37cc637d2d63c7714f78a0b82d79
6
+ metadata.gz: 0db845e92a56fc1775296efdd4657325f23ebdd03a4222b95429286536ddac069571a39691a1bfd646292f26366c505c24974ed00a079290232079d34fff35c8
7
+ data.tar.gz: f71bc711dbe663852156fc346dc763bff5536e71b5a5895e5bfc7bf22fe0d15bee0f9e9b2ad1fde5ab57a1e1529c8ea268462938ea79ba43f6b295ef5f5d7517
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0
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.0
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 that provides a drop-in replacement
15
- for Ruby's standard CSV library. Built with Rust for maximum performance,
16
- it can parse CSV files up to 30x faster than the standard library while
17
- maintaining full compatibility with common CSV.parse options.
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://arxiron.com
44
+ homepage: https://rubygems.org/gems/zlight_csv
35
45
  licenses:
36
46
  - MIT
37
47
  metadata:
38
- homepage_uri: https://arxiron.com
39
- source_code_uri: https://arxiron.com
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: []