what_you_say 0.6.12 → 0.6.13
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/Cargo.lock +61 -25
- data/ext/what_you_say/Cargo.toml +1 -1
- data/lib/what_you_say/version.rb +1 -1
- metadata +7 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 38034c6cc45497a64f79a1a5443bc10ca371b21583a6bf7eaaa5b28e95172812
|
|
4
|
+
data.tar.gz: 304401639c494c5db1f4b373f5a0412129cd9991ef85bbfec83cfe071185126f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f1799b6b70fceb8a6419578905c255438ccb142886dc97b8e482b4e7e20daa7df9ea9f90c1fd48769bc336dce166268338c55a6b5c1a9f818af3259a1b5217cf
|
|
7
|
+
data.tar.gz: c043d478fbabeff8367236bb61304da4e730f592583a0917133a8203d9ea7d425502037a5925f1efc765c1e379ebf8442da0a47d461ee379b07fe9c1af1bf458
|
data/Cargo.lock
CHANGED
|
@@ -4,13 +4,13 @@ version = 3
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "ahash"
|
|
7
|
-
version = "0.8.
|
|
7
|
+
version = "0.8.12"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
10
10
|
dependencies = [
|
|
11
11
|
"cfg-if",
|
|
12
12
|
"const-random",
|
|
13
|
-
"getrandom",
|
|
13
|
+
"getrandom 0.3.3",
|
|
14
14
|
"once_cell",
|
|
15
15
|
"version_check",
|
|
16
16
|
"zerocopy",
|
|
@@ -74,9 +74,9 @@ checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
|
|
74
74
|
|
|
75
75
|
[[package]]
|
|
76
76
|
name = "brotli"
|
|
77
|
-
version = "
|
|
77
|
+
version = "8.0.1"
|
|
78
78
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
79
|
-
checksum = "
|
|
79
|
+
checksum = "9991eea70ea4f293524138648e41ee89b0b2b12ddef3b255effa43c8056e0e0d"
|
|
80
80
|
dependencies = [
|
|
81
81
|
"alloc-no-stdlib",
|
|
82
82
|
"alloc-stdlib",
|
|
@@ -85,9 +85,9 @@ dependencies = [
|
|
|
85
85
|
|
|
86
86
|
[[package]]
|
|
87
87
|
name = "brotli-decompressor"
|
|
88
|
-
version = "
|
|
88
|
+
version = "5.0.0"
|
|
89
89
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
-
checksum = "
|
|
90
|
+
checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
|
|
91
91
|
dependencies = [
|
|
92
92
|
"alloc-no-stdlib",
|
|
93
93
|
"alloc-stdlib",
|
|
@@ -163,7 +163,7 @@ version = "0.1.16"
|
|
|
163
163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
164
|
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
165
165
|
dependencies = [
|
|
166
|
-
"getrandom",
|
|
166
|
+
"getrandom 0.2.15",
|
|
167
167
|
"once_cell",
|
|
168
168
|
"tiny-keccak",
|
|
169
169
|
]
|
|
@@ -237,7 +237,19 @@ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
|
237
237
|
dependencies = [
|
|
238
238
|
"cfg-if",
|
|
239
239
|
"libc",
|
|
240
|
-
"wasi",
|
|
240
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
241
|
+
]
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "getrandom"
|
|
245
|
+
version = "0.3.3"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
|
248
|
+
dependencies = [
|
|
249
|
+
"cfg-if",
|
|
250
|
+
"libc",
|
|
251
|
+
"r-efi",
|
|
252
|
+
"wasi 0.14.2+wasi-0.2.4",
|
|
241
253
|
]
|
|
242
254
|
|
|
243
255
|
[[package]]
|
|
@@ -341,9 +353,9 @@ dependencies = [
|
|
|
341
353
|
|
|
342
354
|
[[package]]
|
|
343
355
|
name = "lingua"
|
|
344
|
-
version = "1.7.
|
|
356
|
+
version = "1.7.2"
|
|
345
357
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
-
checksum = "
|
|
358
|
+
checksum = "6e501c98d473068ce13ddfa5ca86846a6b60e24e3020ba9d2f49af654e9219ec"
|
|
347
359
|
dependencies = [
|
|
348
360
|
"ahash",
|
|
349
361
|
"brotli",
|
|
@@ -1131,9 +1143,9 @@ checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e"
|
|
|
1131
1143
|
|
|
1132
1144
|
[[package]]
|
|
1133
1145
|
name = "magnus"
|
|
1134
|
-
version = "0.
|
|
1146
|
+
version = "0.8.2"
|
|
1135
1147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
-
checksum = "
|
|
1148
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
1137
1149
|
dependencies = [
|
|
1138
1150
|
"magnus-macros",
|
|
1139
1151
|
"rb-sys",
|
|
@@ -1143,9 +1155,9 @@ dependencies = [
|
|
|
1143
1155
|
|
|
1144
1156
|
[[package]]
|
|
1145
1157
|
name = "magnus-macros"
|
|
1146
|
-
version = "0.
|
|
1158
|
+
version = "0.8.0"
|
|
1147
1159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1148
|
-
checksum = "
|
|
1160
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
1149
1161
|
dependencies = [
|
|
1150
1162
|
"proc-macro2",
|
|
1151
1163
|
"quote",
|
|
@@ -1290,6 +1302,12 @@ dependencies = [
|
|
|
1290
1302
|
"proc-macro2",
|
|
1291
1303
|
]
|
|
1292
1304
|
|
|
1305
|
+
[[package]]
|
|
1306
|
+
name = "r-efi"
|
|
1307
|
+
version = "5.2.0"
|
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
|
1310
|
+
|
|
1293
1311
|
[[package]]
|
|
1294
1312
|
name = "rayon"
|
|
1295
1313
|
version = "1.10.0"
|
|
@@ -1312,18 +1330,18 @@ dependencies = [
|
|
|
1312
1330
|
|
|
1313
1331
|
[[package]]
|
|
1314
1332
|
name = "rb-sys"
|
|
1315
|
-
version = "0.9.
|
|
1333
|
+
version = "0.9.117"
|
|
1316
1334
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1317
|
-
checksum = "
|
|
1335
|
+
checksum = "f900d1ce4629a2ebffaf5de74bd8f9c1188d4c5ed406df02f97e22f77a006f44"
|
|
1318
1336
|
dependencies = [
|
|
1319
1337
|
"rb-sys-build",
|
|
1320
1338
|
]
|
|
1321
1339
|
|
|
1322
1340
|
[[package]]
|
|
1323
1341
|
name = "rb-sys-build"
|
|
1324
|
-
version = "0.9.
|
|
1342
|
+
version = "0.9.117"
|
|
1325
1343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1326
|
-
checksum = "
|
|
1344
|
+
checksum = "ef1e9c857028f631056bcd6d88cec390c751e343ce2223ddb26d23eb4a151d59"
|
|
1327
1345
|
dependencies = [
|
|
1328
1346
|
"bindgen",
|
|
1329
1347
|
"lazy_static",
|
|
@@ -1336,9 +1354,9 @@ dependencies = [
|
|
|
1336
1354
|
|
|
1337
1355
|
[[package]]
|
|
1338
1356
|
name = "rb-sys-env"
|
|
1339
|
-
version = "0.
|
|
1357
|
+
version = "0.2.2"
|
|
1340
1358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1341
|
-
checksum = "
|
|
1359
|
+
checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
|
|
1342
1360
|
|
|
1343
1361
|
[[package]]
|
|
1344
1362
|
name = "redox_syscall"
|
|
@@ -1532,6 +1550,15 @@ version = "0.11.0+wasi-snapshot-preview1"
|
|
|
1532
1550
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
1551
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
1534
1552
|
|
|
1553
|
+
[[package]]
|
|
1554
|
+
name = "wasi"
|
|
1555
|
+
version = "0.14.2+wasi-0.2.4"
|
|
1556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1557
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
|
1558
|
+
dependencies = [
|
|
1559
|
+
"wit-bindgen-rt",
|
|
1560
|
+
]
|
|
1561
|
+
|
|
1535
1562
|
[[package]]
|
|
1536
1563
|
name = "wasm-bindgen"
|
|
1537
1564
|
version = "0.2.100"
|
|
@@ -1662,20 +1689,29 @@ version = "0.52.6"
|
|
|
1662
1689
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1663
1690
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1664
1691
|
|
|
1692
|
+
[[package]]
|
|
1693
|
+
name = "wit-bindgen-rt"
|
|
1694
|
+
version = "0.39.0"
|
|
1695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1696
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
1697
|
+
dependencies = [
|
|
1698
|
+
"bitflags",
|
|
1699
|
+
]
|
|
1700
|
+
|
|
1665
1701
|
[[package]]
|
|
1666
1702
|
name = "zerocopy"
|
|
1667
|
-
version = "0.
|
|
1703
|
+
version = "0.8.25"
|
|
1668
1704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1669
|
-
checksum = "
|
|
1705
|
+
checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
|
|
1670
1706
|
dependencies = [
|
|
1671
1707
|
"zerocopy-derive",
|
|
1672
1708
|
]
|
|
1673
1709
|
|
|
1674
1710
|
[[package]]
|
|
1675
1711
|
name = "zerocopy-derive"
|
|
1676
|
-
version = "0.
|
|
1712
|
+
version = "0.8.25"
|
|
1677
1713
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
|
-
checksum = "
|
|
1714
|
+
checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
|
|
1679
1715
|
dependencies = [
|
|
1680
1716
|
"proc-macro2",
|
|
1681
1717
|
"quote",
|
data/ext/what_you_say/Cargo.toml
CHANGED
data/lib/what_you_say/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: what_you_say
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Garen J. Torikian
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2025-
|
|
10
|
+
date: 2025-12-12 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: rb_sys
|
|
@@ -85,12 +85,15 @@ require_paths:
|
|
|
85
85
|
- lib
|
|
86
86
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
87
87
|
requirements:
|
|
88
|
-
- - "
|
|
88
|
+
- - ">="
|
|
89
89
|
- !ruby/object:Gem::Version
|
|
90
90
|
version: '3.2'
|
|
91
|
+
- - "<"
|
|
92
|
+
- !ruby/object:Gem::Version
|
|
93
|
+
version: '5'
|
|
91
94
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
92
95
|
requirements:
|
|
93
|
-
- - "
|
|
96
|
+
- - ">="
|
|
94
97
|
- !ruby/object:Gem::Version
|
|
95
98
|
version: '3.4'
|
|
96
99
|
requirements: []
|