carve-lang 0.1.2 → 0.1.3
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/CHANGELOG.md +21 -1
- data/ext/carve/Cargo.lock +68 -68
- data/ext/carve/Cargo.toml +2 -2
- data/lib/carve/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '092afb8611f9491f14b1bdc5e74730dc30fd5efd269a3cf153246d8181e0e94c'
|
|
4
|
+
data.tar.gz: 57b9ce435040eb96ff5148a2ce15e0369bcb6f696bbf22422cb76ce42c60d1a9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e8bfb7fea75aa1819fd2bde47740d428ba1c3846d004f5ca4e7fb11e89041750ecd7992ed3913fad42c4a627bbc5842e9e0adf66369f45c71499e34d623a3158
|
|
7
|
+
data.tar.gz: 18f13425d6701f44da146ee93c312acd0e8dec16a76fb55ab7995deadcf7931fbdd9fa8c666d19e7f153b7cd8b19d490cbe42e4389a0bfa9fe3be5183c65c64a
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.3] - 2026-09-08
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- The engine moves from carve-rs `da45f9d2` to `42df4092`, 46 commits, clearing
|
|
15
|
+
the binding-parity drift the nightly run found on 34 corpus documents (#110).
|
|
16
|
+
A comment leaf span begins at its markup, an emptied definition description
|
|
17
|
+
narrows to its marker line, a footnote nested past a footnote body becomes its
|
|
18
|
+
own note, a nested item's lead fence or colon container takes its flush-left
|
|
19
|
+
body, and an all-blank or lone-pipe row is no longer read as a table (the lone
|
|
20
|
+
pipe no longer panics).
|
|
21
|
+
- The engine moves from carve-rs `2e9c43f2` to `da45f9d2`, 20 commits. A colon
|
|
22
|
+
followed by a space and a tab opens no description, an authored task state
|
|
23
|
+
reaches the tree and the HTML, a titled medium emits one title attribute, an
|
|
24
|
+
empty external link target is omitted, and a table continuation survives Djot
|
|
25
|
+
migration. The stale pin is what failed PART 12 binding parity in
|
|
26
|
+
markup-carve/carve#1877 - a binding has no vote of its own.
|
|
27
|
+
|
|
10
28
|
## [0.1.2] - 2026-08-27
|
|
11
29
|
|
|
12
30
|
### Security
|
|
@@ -306,6 +324,8 @@ are not listed, because no release ever shipped them.
|
|
|
306
324
|
Arrays (every AST node type is covered), enabling custom renderers such as
|
|
307
325
|
[carve-hexapdf](https://github.com/markup-carve/carve-hexapdf).
|
|
308
326
|
|
|
309
|
-
[Unreleased]: https://github.com/markup-carve/carve-rb/compare/v0.1.
|
|
327
|
+
[Unreleased]: https://github.com/markup-carve/carve-rb/compare/v0.1.3...HEAD
|
|
328
|
+
[0.1.3]: https://github.com/markup-carve/carve-rb/compare/v0.1.2...v0.1.3
|
|
329
|
+
[0.1.2]: https://github.com/markup-carve/carve-rb/compare/v0.1.1...v0.1.2
|
|
310
330
|
[0.1.1]: https://github.com/markup-carve/carve-rb/compare/v0.1.0...v0.1.1
|
|
311
331
|
[0.1.0]: https://github.com/markup-carve/carve-rb/releases/tag/v0.1.0
|
data/ext/carve/Cargo.lock
CHANGED
|
@@ -38,17 +38,20 @@ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
|
38
38
|
[[package]]
|
|
39
39
|
name = "carve-lang"
|
|
40
40
|
version = "0.1.4"
|
|
41
|
-
source = "git+https://github.com/markup-carve/carve-rs?rev=
|
|
41
|
+
source = "git+https://github.com/markup-carve/carve-rs?rev=42df409227dc260cec336a6569f4f41c712cdc22#42df409227dc260cec336a6569f4f41c712cdc22"
|
|
42
42
|
dependencies = [
|
|
43
43
|
"html5ever",
|
|
44
44
|
"markup5ever_rcdom",
|
|
45
45
|
"pulldown-cmark",
|
|
46
46
|
"regex",
|
|
47
|
+
"serde",
|
|
48
|
+
"serde_json",
|
|
49
|
+
"unicode-normalization",
|
|
47
50
|
]
|
|
48
51
|
|
|
49
52
|
[[package]]
|
|
50
53
|
name = "carve-rb"
|
|
51
|
-
version = "0.1.
|
|
54
|
+
version = "0.1.3"
|
|
52
55
|
dependencies = [
|
|
53
56
|
"carve-lang",
|
|
54
57
|
"magnus",
|
|
@@ -89,14 +92,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
89
92
|
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
90
93
|
|
|
91
94
|
[[package]]
|
|
92
|
-
name = "
|
|
93
|
-
version = "
|
|
95
|
+
name = "fastrand"
|
|
96
|
+
version = "2.5.0"
|
|
94
97
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
-
checksum = "
|
|
96
|
-
dependencies = [
|
|
97
|
-
"mac",
|
|
98
|
-
"new_debug_unreachable",
|
|
99
|
-
]
|
|
98
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
100
99
|
|
|
101
100
|
[[package]]
|
|
102
101
|
name = "glob"
|
|
@@ -106,16 +105,12 @@ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
|
106
105
|
|
|
107
106
|
[[package]]
|
|
108
107
|
name = "html5ever"
|
|
109
|
-
version = "0.
|
|
108
|
+
version = "0.39.0"
|
|
110
109
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
111
|
-
checksum = "
|
|
110
|
+
checksum = "46a1761807faccc9a19e86944bbf40610014066306f96edcdedc2fb714bcb7b8"
|
|
112
111
|
dependencies = [
|
|
113
112
|
"log",
|
|
114
|
-
"mac",
|
|
115
113
|
"markup5ever",
|
|
116
|
-
"proc-macro2",
|
|
117
|
-
"quote",
|
|
118
|
-
"syn 2.0.118",
|
|
119
114
|
]
|
|
120
115
|
|
|
121
116
|
[[package]]
|
|
@@ -170,12 +165,6 @@ version = "0.4.33"
|
|
|
170
165
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
166
|
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
172
167
|
|
|
173
|
-
[[package]]
|
|
174
|
-
name = "mac"
|
|
175
|
-
version = "0.1.1"
|
|
176
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
-
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
|
|
178
|
-
|
|
179
168
|
[[package]]
|
|
180
169
|
name = "magnus"
|
|
181
170
|
version = "0.8.2"
|
|
@@ -201,23 +190,20 @@ dependencies = [
|
|
|
201
190
|
|
|
202
191
|
[[package]]
|
|
203
192
|
name = "markup5ever"
|
|
204
|
-
version = "0.
|
|
193
|
+
version = "0.39.0"
|
|
205
194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
-
checksum = "
|
|
195
|
+
checksum = "7122d987ec5f704ee56f6e5b41a7d93722e9aae27ae07cafa4036c4d3f9757de"
|
|
207
196
|
dependencies = [
|
|
208
197
|
"log",
|
|
209
|
-
"phf",
|
|
210
|
-
"phf_codegen",
|
|
211
|
-
"string_cache",
|
|
212
|
-
"string_cache_codegen",
|
|
213
198
|
"tendril",
|
|
199
|
+
"web_atoms",
|
|
214
200
|
]
|
|
215
201
|
|
|
216
202
|
[[package]]
|
|
217
203
|
name = "markup5ever_rcdom"
|
|
218
|
-
version = "0.
|
|
204
|
+
version = "0.39.0+unofficial"
|
|
219
205
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
-
checksum = "
|
|
206
|
+
checksum = "3ac010f19d6c4af81eeb4018a39d7a115de9d285af45c126a4ac02e6fc5716b7"
|
|
221
207
|
dependencies = [
|
|
222
208
|
"html5ever",
|
|
223
209
|
"markup5ever",
|
|
@@ -278,18 +264,19 @@ dependencies = [
|
|
|
278
264
|
|
|
279
265
|
[[package]]
|
|
280
266
|
name = "phf"
|
|
281
|
-
version = "0.
|
|
267
|
+
version = "0.13.1"
|
|
282
268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
-
checksum = "
|
|
269
|
+
checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
|
|
284
270
|
dependencies = [
|
|
285
271
|
"phf_shared",
|
|
272
|
+
"serde",
|
|
286
273
|
]
|
|
287
274
|
|
|
288
275
|
[[package]]
|
|
289
276
|
name = "phf_codegen"
|
|
290
|
-
version = "0.
|
|
277
|
+
version = "0.13.1"
|
|
291
278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
-
checksum = "
|
|
279
|
+
checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
|
|
293
280
|
dependencies = [
|
|
294
281
|
"phf_generator",
|
|
295
282
|
"phf_shared",
|
|
@@ -297,19 +284,19 @@ dependencies = [
|
|
|
297
284
|
|
|
298
285
|
[[package]]
|
|
299
286
|
name = "phf_generator"
|
|
300
|
-
version = "0.
|
|
287
|
+
version = "0.13.1"
|
|
301
288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
-
checksum = "
|
|
289
|
+
checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
|
|
303
290
|
dependencies = [
|
|
291
|
+
"fastrand",
|
|
304
292
|
"phf_shared",
|
|
305
|
-
"rand",
|
|
306
293
|
]
|
|
307
294
|
|
|
308
295
|
[[package]]
|
|
309
296
|
name = "phf_shared"
|
|
310
|
-
version = "0.
|
|
297
|
+
version = "0.13.1"
|
|
311
298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
-
checksum = "
|
|
299
|
+
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
|
313
300
|
dependencies = [
|
|
314
301
|
"siphasher",
|
|
315
302
|
]
|
|
@@ -349,21 +336,6 @@ dependencies = [
|
|
|
349
336
|
"proc-macro2",
|
|
350
337
|
]
|
|
351
338
|
|
|
352
|
-
[[package]]
|
|
353
|
-
name = "rand"
|
|
354
|
-
version = "0.8.7"
|
|
355
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
-
checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
|
|
357
|
-
dependencies = [
|
|
358
|
-
"rand_core",
|
|
359
|
-
]
|
|
360
|
-
|
|
361
|
-
[[package]]
|
|
362
|
-
name = "rand_core"
|
|
363
|
-
version = "0.6.4"
|
|
364
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
-
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
366
|
-
|
|
367
339
|
[[package]]
|
|
368
340
|
name = "rb-sys"
|
|
369
341
|
version = "0.9.128"
|
|
@@ -457,6 +429,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
457
429
|
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
458
430
|
dependencies = [
|
|
459
431
|
"serde_core",
|
|
432
|
+
"serde_derive",
|
|
460
433
|
]
|
|
461
434
|
|
|
462
435
|
[[package]]
|
|
@@ -518,9 +491,9 @@ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
|
518
491
|
|
|
519
492
|
[[package]]
|
|
520
493
|
name = "string_cache"
|
|
521
|
-
version = "0.
|
|
494
|
+
version = "0.9.0"
|
|
522
495
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
-
checksum = "
|
|
496
|
+
checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
|
|
524
497
|
dependencies = [
|
|
525
498
|
"new_debug_unreachable",
|
|
526
499
|
"parking_lot",
|
|
@@ -531,9 +504,9 @@ dependencies = [
|
|
|
531
504
|
|
|
532
505
|
[[package]]
|
|
533
506
|
name = "string_cache_codegen"
|
|
534
|
-
version = "0.
|
|
507
|
+
version = "0.6.1"
|
|
535
508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
-
checksum = "
|
|
509
|
+
checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69"
|
|
537
510
|
dependencies = [
|
|
538
511
|
"phf_generator",
|
|
539
512
|
"phf_shared",
|
|
@@ -565,15 +538,28 @@ dependencies = [
|
|
|
565
538
|
|
|
566
539
|
[[package]]
|
|
567
540
|
name = "tendril"
|
|
568
|
-
version = "0.
|
|
541
|
+
version = "0.5.1"
|
|
542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
+
checksum = "5fed54709c5b3a53d09bb1c113ea4f5ceafd1e772ddcb0030a82e1d56c087b08"
|
|
544
|
+
dependencies = [
|
|
545
|
+
"new_debug_unreachable",
|
|
546
|
+
]
|
|
547
|
+
|
|
548
|
+
[[package]]
|
|
549
|
+
name = "tinyvec"
|
|
550
|
+
version = "1.12.0"
|
|
569
551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
-
checksum = "
|
|
552
|
+
checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
|
|
571
553
|
dependencies = [
|
|
572
|
-
"
|
|
573
|
-
"mac",
|
|
574
|
-
"utf-8",
|
|
554
|
+
"tinyvec_macros",
|
|
575
555
|
]
|
|
576
556
|
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "tinyvec_macros"
|
|
559
|
+
version = "0.1.1"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
562
|
+
|
|
577
563
|
[[package]]
|
|
578
564
|
name = "unicase"
|
|
579
565
|
version = "2.9.0"
|
|
@@ -587,10 +573,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
587
573
|
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
588
574
|
|
|
589
575
|
[[package]]
|
|
590
|
-
name = "
|
|
591
|
-
version = "0.
|
|
576
|
+
name = "unicode-normalization"
|
|
577
|
+
version = "0.1.25"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
|
|
580
|
+
dependencies = [
|
|
581
|
+
"tinyvec",
|
|
582
|
+
]
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "web_atoms"
|
|
586
|
+
version = "0.2.6"
|
|
592
587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
-
checksum = "
|
|
588
|
+
checksum = "ba8b815c1b593dc0baf78dd0f4fc8fdb2de53198fb1163738093e9a311c33fb3"
|
|
589
|
+
dependencies = [
|
|
590
|
+
"phf",
|
|
591
|
+
"phf_codegen",
|
|
592
|
+
"string_cache",
|
|
593
|
+
"string_cache_codegen",
|
|
594
|
+
]
|
|
594
595
|
|
|
595
596
|
[[package]]
|
|
596
597
|
name = "windows-link"
|
|
@@ -600,12 +601,11 @@ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
|
600
601
|
|
|
601
602
|
[[package]]
|
|
602
603
|
name = "xml5ever"
|
|
603
|
-
version = "0.
|
|
604
|
+
version = "0.39.0"
|
|
604
605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
-
checksum = "
|
|
606
|
+
checksum = "5ab627f34ff61b80d756180d556f9c68801d836d271b3b8c094504ceca69d221"
|
|
606
607
|
dependencies = [
|
|
607
608
|
"log",
|
|
608
|
-
"mac",
|
|
609
609
|
"markup5ever",
|
|
610
610
|
]
|
|
611
611
|
|
data/ext/carve/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "carve-rb"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.3"
|
|
4
4
|
edition = "2021"
|
|
5
5
|
rust-version = "1.75"
|
|
6
6
|
publish = false
|
|
@@ -22,4 +22,4 @@ serde_json = "1"
|
|
|
22
22
|
# The Carve engine. Imported under the Rust crate alias `carve_rs` so the
|
|
23
23
|
# binding's own crate name (`carve-rb`) does not collide with the engine's
|
|
24
24
|
# package name (`carve`) in the Cargo lockfile.
|
|
25
|
-
carve_rs = { package = "carve-lang", git = "https://github.com/markup-carve/carve-rs", rev = "
|
|
25
|
+
carve_rs = { package = "carve-lang", git = "https://github.com/markup-carve/carve-rs", rev = "42df409227dc260cec336a6569f4f41c712cdc22" }
|
data/lib/carve/version.rb
CHANGED
|
@@ -8,5 +8,5 @@ module Carve
|
|
|
8
8
|
# compares it against ext/carve/Cargo.toml and against the newest cut
|
|
9
9
|
# CHANGELOG section on every run, and .github/workflows/release.yml refuses to
|
|
10
10
|
# publish a gem whose version is not the tag being released.
|
|
11
|
-
VERSION = "0.1.
|
|
11
|
+
VERSION = "0.1.3"
|
|
12
12
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: carve-lang
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- markup-carve
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-08
|
|
11
|
+
date: 2026-09-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rb_sys
|