parsanol 1.3.51 → 1.3.53

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: ee4e171a9217d66e90cc5c3cd51fb9af8d901ec7de75182e68e90caf3bbefb57
4
- data.tar.gz: bb5e4f0391b98f79e86614f7a53158bdbe8cc12feb39a43ff94bcb553706bb75
3
+ metadata.gz: 3c698b3a8ea0a14f5b0254e0c7fc67516fa665be7e36027437fbf1b9a399b63e
4
+ data.tar.gz: 7f26a9733cb045d14ee7995dbd1aa5438c00903d8b2359afc0f15c712688805f
5
5
  SHA512:
6
- metadata.gz: c1cda8632038653dc853bece92e4f804c267fe43f8146cda3fc8481ad031c8087293f965274e12a173da881ad34ec370db71906ede1a1f89ebe52058e08440ba
7
- data.tar.gz: f2f5c8f67bbd0c6d444593f41551c32f165d99725e17c37ee6475dfd858a4f6887f7185657f4c0c44b3a232a4b66795742a18ddd134b0afd757b0c7b6b0e181f
6
+ metadata.gz: 410888691909374e8f11d926e1435a045438173dcb4d13781b67ea113e8e974b1b06ec3f0c56b0fe62eb0705e3a1ca0a45ca9a3910a91e6162a49447a6425acc
7
+ data.tar.gz: a8d9a3f669af8322580ff9da934c0409dc94fcbffa35aacacc56245321e905aa1543550c480c20c82f8f40246f4a0bc39a83e83d5e3e986c9c0c1956bdbc5ee0
data/Cargo.toml CHANGED
@@ -8,11 +8,7 @@ lto = "off"
8
8
  codegen-units = 1
9
9
  debug = true
10
10
 
11
- # Patches for Ruby 4.0 support and 32-bit musl (magnus timespec fix).
12
- # magnus 0.9 is not on crates.io yet; pin a git rev that includes
13
- # https://github.com/matsadler/magnus/pull/183 (32-bit musl timespec).
14
- # parsanol-rs must use the same rev (direct git dep, not patchable here).
11
+ # rb-sys is pinned to a git rev (daa12b65) that includes fixes not yet on
12
+ # crates.io. magnus 0.9 is now on crates.io — no magnus patch is needed.
15
13
  [patch.crates-io]
16
- magnus = { git = "https://github.com/matsadler/magnus", rev = "9407bd9" }
17
- magnus-macros = { git = "https://github.com/matsadler/magnus", rev = "9407bd9" }
18
14
  rb-sys = { git = "https://github.com/oxidize-rb/rb-sys.git", rev = "daa12b6521a0c442a705d7f9a929029119aab1d6" }
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "parsanol_cdylib"
3
- version = "1.3.51"
3
+ version = "1.3.52"
4
4
  edition = "2021"
5
5
  description = "Vendored cdylib for parsanol platform gems: the pure-portable C ABI (no magnus) for the ffi tier"
6
6
  license = "MIT"
@@ -28,7 +28,7 @@ rb-sys = { version = "0.9.124", features = ["global-allocator"] }
28
28
  magnus = { version = "0.9" }
29
29
 
30
30
  # parsanol parser library (from git for latest features)
31
- parsanol = { version = "0.8.8", features = ["ruby"] }
31
+ parsanol = { version = "0.8.9", features = ["ruby"] }
32
32
 
33
33
  # Logging
34
34
  log = "0.4"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Parsanol
4
- VERSION = "1.3.51"
4
+ VERSION = "1.3.53"
5
5
  end
data/parsanol.gemspec CHANGED
@@ -48,7 +48,8 @@ Gem::Specification.new do |spec|
48
48
  # `gem build`.
49
49
  spec.files.reject! do |f|
50
50
  f =~ /\.(dll|so|dylib|lib|bundle)\Z/ &&
51
- !(ENV["PARSANOL_VENDOR_CDYLIB"] == "1" && f.start_with?("lib/parsanol/native/"))
51
+ !(ENV["PARSANOL_VENDOR_CDYLIB"] == "1" &&
52
+ f =~ %r{\Alib/parsanol/native/libparsanol\.(so|dylib|dll)\Z})
52
53
  end
53
54
  spec.require_paths = ["lib"]
54
55
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parsanol
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.51
4
+ version: 1.3.53
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.