enveloperb 0.1.4-x86_64-linux → 0.1.5.4.g10f5d39-x86_64-linux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c783aeda24e29352ee837e44e082310ff6679e235a3f66861ff73267a29af7cb
4
- data.tar.gz: b2af145d653968417b5f9ad7618ca8419473494ea69dfc78d9bf187e572eefe7
3
+ metadata.gz: 59985fa8af6a24c48727e53f946fa8bab0ea659b3476b97ea3d12bfd8c5bf0ae
4
+ data.tar.gz: 8a36dfa781472dba473b796fa44629170a5a4cd225fbe484f27334ab169213a2
5
5
  SHA512:
6
- metadata.gz: 1298feeaffa939f9652519d194dca45de664f0fd270a00cad1c863605b101ec59bd6493550492411645ffdcfb7c31d53dabc17952f29691c962573ebbc5f2d20
7
- data.tar.gz: a9708a5ff1bd0ffcbd63d6b3a0c74a6d5c88375c85358c66278328a70bb3abab74e6074f51f2993c8f127eba347153a2321794a22a33d81fbb383ec7d6859aa0
6
+ metadata.gz: 56690aee9027615b1f6092153ec11915c7f285fb043b21e2dc27c10b7f943103ee6fdbb02fbb16f5fc77fbf89b04750690284976760dd361448b0d8bf8687719
7
+ data.tar.gz: 789c300ec3d135fbd5d58abc7c738b4343b0da601f5b11cf3e75610505b9e52a4a94bc3acbf23109817927f93f22338772461ecb60fb25005ca24e457577fe18
data/README.md CHANGED
@@ -28,7 +28,7 @@ At present, we provide native gems for:
28
28
  On these platforms, you can just install the `enveloperb` gem via your preferred method, and it should "just work".
29
29
  If it doesn't, please [report that as a bug](https://github.com/cipherstash/enveloperb/issues).
30
30
 
31
- For other platforms, you will need to install the source gem, which requires that you have Rust 1.31.0 or later installed.
31
+ For other platforms, you will need to install the source gem, which requires that you have Rust 1.57.0 or later installed.
32
32
  On ARM-based platforms, you must use Rust nightly, for SIMD intrinsics support.
33
33
 
34
34
  ## Installing from Git
data/enveloperb.gemspec CHANGED
@@ -7,7 +7,7 @@ end
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "enveloperb"
9
9
 
10
- s.version = GVB.version rescue "0.0.0.1.NOGVB"
10
+ s.version = ENV.fetch("GVB_VERSION_OVERRIDE") { GVB.version rescue "0.0.0.1.NOGVB" }
11
11
  s.date = GVB.date rescue Time.now.strftime("%Y-%m-%d")
12
12
 
13
13
  s.platform = Gem::Platform::RUBY
@@ -20,17 +20,18 @@ Gem::Specification.new do |s|
20
20
 
21
21
  s.files = `git ls-files -z`.split("\0").reject { |f| f =~ /^(\.|G|spec|Rakefile)/ }
22
22
 
23
- s.extensions = ["ext/Rakefile"]
23
+ s.extensions = ["ext/enveloperb/extconf.rb"]
24
24
 
25
25
  s.required_ruby_version = ">= 2.7.0"
26
26
 
27
- s.add_runtime_dependency 'fiddle', '~> 1.1'
28
-
29
27
  s.add_development_dependency 'bundler'
30
28
  s.add_development_dependency 'github-release'
31
29
  s.add_development_dependency 'guard-rspec'
32
- s.add_development_dependency 'rake', '~> 10.4', '>= 10.4.2'
30
+ s.add_development_dependency 'rake', '~> 13.0'
31
+ s.add_development_dependency 'rake-compiler', '~> 1.2'
32
+ s.add_development_dependency 'rake-compiler-dock', '~> 1.2'
33
33
  s.add_development_dependency 'rb-inotify', '~> 0.9'
34
+ s.add_development_dependency 'rb_sys', '~> 0.1'
34
35
  s.add_development_dependency 'redcarpet'
35
36
  s.add_development_dependency 'rspec'
36
37
  s.add_development_dependency 'simplecov'
@@ -0,0 +1,4 @@
1
+ /target
2
+ # Cargo.lock is deliberately *not* ignored; despite *technically* being a
3
+ # library package, it is not a Rust library that is built into other projects,
4
+ # but rather a standalone binary object that should be built reproducibly.