expressir 2.4.10 → 2.4.11
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/ext/expressir_core/Cargo.toml +4 -1
- data/lib/expressir/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: 29d1099f121d8528e495476328a9388278187589c0358db455d57e231055a6dc
|
|
4
|
+
data.tar.gz: 6cadd85e6d2b1184ff1cc53883857698f5c3b0d8985ac2f6f962986ceeb84326
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 82bd2f4cd92180180f6c9b831dd0964950cc8be5a71e51bd5e737a6538289dad0a7e7b0e91902e6462f7df5aa6878fa0b6ec58c99b019a88e8e8145322eec935
|
|
7
|
+
data.tar.gz: 6c60ea124de34b72f42107538fce8d527488361957eeec4b42e0b7a1b769ac2e4254e17f292fd1be151902ee8a0dab2328d583c71e9290582019f28fc92987ac
|
|
@@ -10,7 +10,10 @@ crate-type = ["cdylib"]
|
|
|
10
10
|
|
|
11
11
|
[dependencies]
|
|
12
12
|
magnus = { version = "0.9" }
|
|
13
|
-
|
|
13
|
+
# Pinned core release (M1, TODO.parity-ee/19): the ext never floats
|
|
14
|
+
# main — bump the tag per expressir release, alongside the validation
|
|
15
|
+
# run that pins it.
|
|
16
|
+
expressir-rs = { git = "https://github.com/lutaml/expressir-rs", tag = "v0.1.4" }
|
|
14
17
|
serde_json = "1.0"
|
|
15
18
|
|
|
16
19
|
# Standalone workspace: the repo root workspace owns crates/, the ext
|
data/lib/expressir/version.rb
CHANGED