serialbench 0.9.1 → 0.9.2
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/Gemfile +6 -3
- data/lib/serialbench/version.rb +1 -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: 99cdf688cd6a4bd4662e8f0182911ec87f6b2ecf184045c6514cee6959c09e2d
|
|
4
|
+
data.tar.gz: 3e1ba2b330008ef51fe28c7fad6b0571bad06c491ca9c6a7e46634c558b20a23
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 30fc0f72e78b350c78b918a6366793be940a35ab6b826e3a74c08547d11b0251f90d8be9ec4822a7b1c197656805e6c7e2142c483b123981c7e7e5ba64c1e030
|
|
7
|
+
data.tar.gz: a44b14c1638c2c450b89d8f8a032041cdfb14eb1a1ccb57eb9a6b88d248f2f18d1be127095babef559f938918048b89b1c7d950cf9fb9f64eabcbfd29787de61
|
data/Gemfile
CHANGED
|
@@ -12,9 +12,12 @@ unless Gem.win_platform? && RUBY_PLATFORM.include?('aarch64')
|
|
|
12
12
|
gem 'libxml-ruby'
|
|
13
13
|
end
|
|
14
14
|
|
|
15
|
-
gem 'leptris', '1.9.156.
|
|
16
|
-
gem 'yeptris', '0.2.
|
|
17
|
-
|
|
15
|
+
gem 'leptris', '1.9.156.2' # precompiled platform gems bundle libleptris (darwin/linux/mingw)
|
|
16
|
+
gem 'yeptris', '0.2.2.1' # precompiled darwin/linux; no windows or darwin-intel gems yet
|
|
17
|
+
# teptris stays 0.1.0: 0.2.1's native ext links libruby by absolute build-runner
|
|
18
|
+
# path (loads only under exactly Ruby 3.3.12 at hostedtoolcache) and ships no
|
|
19
|
+
# mingw gems. Bump when the ext links portably and windows variants exist.
|
|
20
|
+
gem 'teptris', '0.1.0'
|
|
18
21
|
gem 'benchmark' # Removed from stdlib in Ruby 4.0
|
|
19
22
|
gem 'base64' # Required for Ruby 3.4+
|
|
20
23
|
gem 'lutaml-model', '~> 0.7'
|
data/lib/serialbench/version.rb
CHANGED