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 +4 -4
- data/Cargo.toml +2 -6
- data/ext/parsanol_cdylib/Cargo.toml +1 -1
- data/ext/parsanol_native/Cargo.toml +1 -1
- data/lib/parsanol/version.rb +1 -1
- data/parsanol.gemspec +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3c698b3a8ea0a14f5b0254e0c7fc67516fa665be7e36027437fbf1b9a399b63e
|
|
4
|
+
data.tar.gz: 7f26a9733cb045d14ee7995dbd1aa5438c00903d8b2359afc0f15c712688805f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
#
|
|
12
|
-
# magnus 0.9 is
|
|
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" }
|
|
@@ -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.
|
|
31
|
+
parsanol = { version = "0.8.9", features = ["ruby"] }
|
|
32
32
|
|
|
33
33
|
# Logging
|
|
34
34
|
log = "0.4"
|
data/lib/parsanol/version.rb
CHANGED
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" &&
|
|
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
|
|