rust_json_schema 0.3.0-x86_64-linux → 0.4.0-x86_64-linux

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: 2fa5f12af6d9f960a0d132b152275975a5a6ff5dbcdca520957d5924bdf966fc
4
- data.tar.gz: a9b64e5619a28d48ee6aa663bb0693573458b9b9b31e79fae8240d81201277f9
3
+ metadata.gz: eec88aeda024a6245cedf2ee6e9dfba92b7f3600272845604154ceb621f9b581
4
+ data.tar.gz: 5664174acd0377835a04024a1d50909de6dec61781147a53b06ba8f553d91133
5
5
  SHA512:
6
- metadata.gz: e024900c32bdb834c75e89935becf064943298f40dff213071e475caa262158463c19fb1f6387a8a0a2f66cb6a8b11c49c9ca144d103dbe2c94e132c113dbc1e
7
- data.tar.gz: a4163b1e6bfefdfa4f083c10f821ce1b919ad5ed374a1511afc49ca5959510caaaee3b877c0a98213d59e3f0aafaf7ad138ee047c2b02f5ff88a0614b2641e39
6
+ metadata.gz: 3a0d7aa47b4239cda9af348f4b104c43ba3f880e06736487a7644984543ea944d4ee75cfa9f9fdbd5c6a4a410fa982512cbdb22273659920815bb17173588ecb
7
+ data.tar.gz: 6001aadb88feda5dd1285fdccffe3d2aa3b6c71656e49e4a52234c29763d605012caecc71c690aae75648f0b8e0c23b517c40ebcc93c15a44ee42f567c1d1a4e
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
 
@@ -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.0"
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.0
5
5
  platform: x86_64-linux
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-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler
@@ -82,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
82
82
  - !ruby/object:Gem::Version
83
83
  version: 3.3.11
84
84
  requirements: []
85
- rubygems_version: 3.4.4
85
+ rubygems_version: 3.5.23
86
86
  signing_key:
87
87
  specification_version: 4
88
88
  summary: Ruby wrapper for jsonschema-rs