rust_json_schema 0.3.0-x86_64-linux-musl → 0.4.3-x86_64-linux-musl

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: b0c4d809f301126f24cd4d98fb1775e68639014f44b14cae7467116f64d863dd
4
- data.tar.gz: 7724cf3ac7230911273b9e3e513928556a65e1eb94090d976b13bd8294c93de0
3
+ metadata.gz: c35d34ae18fdcab345dbce2505dcd9d3d7eab120d5105f43970548129468f932
4
+ data.tar.gz: 434c0869179d88e69d942404a4c5c33bd972fd4884073587051b696c2dd990c0
5
5
  SHA512:
6
- metadata.gz: f391b4f8b527e5938a95dd028dfcdd1332755b4485f6689fddc1e46367360822962963ea8bf30942d509a755a7a326c1930179c18d3a7c8d915e15144f03a9ae
7
- data.tar.gz: d19c6ca3e06531c6a35b27e6dea6427455bfae18e0776522312cf6ac4357ba6e641842ecfe3ffae1d6d4d5a1ce8444b7a43c29a44e1c89171ea63d81e5afc276
6
+ metadata.gz: 61abf2e8e2fb77e15d361352f174520d2dbd70436ba3dac025926f0690302d1a58101785694e949a2a2f5b91fca35bbf4fe84fa37783340aca8add519f9ecd53
7
+ data.tar.gz: 3d19a4ec8e16c9c939cf89bfeebb72b91cb8119ea9cb652968a29a75007b5e24f5d8e3b4e218d8d0956089df757f43bdf7a8932ff0f2b301144383dd52246e2e
data/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  `rust_json_schema` is a Ruby wrapper gem for Rust's [jsonschema-rs crate](https://github.com/Stranger6667/jsonschema-rs).
6
6
 
7
7
  > [!IMPORTANT]
8
- > This gem is built with `json_schema` crate version `0.19.1`, and therefore does not support any features for any potential future versions of the crate. I will review and accept PRs if you would like to work on adding support for newer versions of the crate. I generally am trying to keep things up to date but I am not cutting new releases for each new patch version of the crate.
8
+ > This gem is built with `json_schema` crate version `0.29.1`, and therefore does not support any features for any potential future versions of the crate. I will review and accept PRs if you would like to work on adding support for newer versions of the crate. I generally am trying to keep things up to date but I am not cutting new releases for each new patch version of the crate.
9
9
 
10
10
  The minimum Ruby version required by this gem is 3.0, due to the runtime Rust libraries that make the extensions possible (and easy).
11
11
 
data/Rakefile CHANGED
@@ -11,7 +11,7 @@ require "rb_sys/extensiontask"
11
11
 
12
12
  task build: :compile
13
13
 
14
- rubies = ["3.3.0", "3.2.0", "3.1.0", "3.0.0"]
14
+ rubies = ["3.4.0", "3.3.0", "3.2.0", "3.1.0", "3.0.0"]
15
15
  ENV["RUBY_CC_VERSION"] ||= rubies.join(":")
16
16
 
17
17
  spec = Bundler::GemHelper.gemspec
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RustJSONSchema
4
- VERSION = "0.3.0"
4
+ VERSION = "0.4.3"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rust_json_schema
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.3
5
5
  platform: x86_64-linux-musl
6
6
  authors:
7
7
  - Taylor Thurlow
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-09-16 00:00:00.000000000 Z
11
+ date: 2025-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler
@@ -55,6 +55,7 @@ files:
55
55
  - lib/rust_json_schema/3.1/rust_json_schema.so
56
56
  - lib/rust_json_schema/3.2/rust_json_schema.so
57
57
  - lib/rust_json_schema/3.3/rust_json_schema.so
58
+ - lib/rust_json_schema/3.4/rust_json_schema.so
58
59
  - lib/rust_json_schema/version.rb
59
60
  - sig/rust_json_schema.rbs
60
61
  homepage: https://github.com/taylorthurlow/rust_json_schema-rb
@@ -75,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
75
76
  version: '3.0'
76
77
  - - "<"
77
78
  - !ruby/object:Gem::Version
78
- version: 3.4.dev
79
+ version: 3.5.dev
79
80
  required_rubygems_version: !ruby/object:Gem::Requirement
80
81
  requirements:
81
82
  - - ">="
@@ -85,7 +86,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
85
86
  - !ruby/object:Gem::Version
86
87
  version: 3.3.22
87
88
  requirements: []
88
- rubygems_version: 3.4.4
89
+ rubygems_version: 3.5.23
89
90
  signing_key:
90
91
  specification_version: 4
91
92
  summary: Ruby wrapper for jsonschema-rs