codefold 0.7.0__tar.gz → 0.8.1__tar.gz

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.
Files changed (44) hide show
  1. {codefold-0.7.0 → codefold-0.8.1}/Cargo.lock +602 -14
  2. {codefold-0.7.0 → codefold-0.8.1}/Cargo.toml +6 -1
  3. {codefold-0.7.0 → codefold-0.8.1}/PKG-INFO +1 -1
  4. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/README.md +32 -3
  5. {codefold-0.7.0 → codefold-0.8.1}/LICENSE +0 -0
  6. {codefold-0.7.0 → codefold-0.8.1}/bindings/python/Cargo.toml +0 -0
  7. {codefold-0.7.0 → codefold-0.8.1}/bindings/python/LICENSE +0 -0
  8. {codefold-0.7.0 → codefold-0.8.1}/bindings/python/src/lib.rs +0 -0
  9. {codefold-0.7.0 → codefold-0.8.1}/bindings/python/tests/test_codefold.py +0 -0
  10. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/Cargo.toml +0 -0
  11. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/benches/render.rs +0 -0
  12. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/src/error.rs +0 -0
  13. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/src/go.rs +0 -0
  14. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/src/language.rs +0 -0
  15. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/src/level.rs +0 -0
  16. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/src/lib.rs +0 -0
  17. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/src/options.rs +0 -0
  18. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/src/parse.rs +0 -0
  19. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/src/python.rs +0 -0
  20. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/src/result.rs +0 -0
  21. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/src/rust.rs +0 -0
  22. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/src/tokens.rs +0 -0
  23. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/src/typescript.rs +0 -0
  24. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/tests/fixtures/go/auth.go +0 -0
  25. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/tests/fixtures/python/auth.py +0 -0
  26. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/tests/fixtures/python/heavy.py +0 -0
  27. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/tests/fixtures/rust/auth.rs +0 -0
  28. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/tests/fixtures/typescript/auth.ts +0 -0
  29. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/tests/focus.rs +0 -0
  30. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/tests/full_level.rs +0 -0
  31. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/tests/go_bodies.rs +0 -0
  32. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/tests/go_public.rs +0 -0
  33. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/tests/go_signatures.rs +0 -0
  34. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/tests/python_bodies.rs +0 -0
  35. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/tests/python_public.rs +0 -0
  36. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/tests/python_signatures.rs +0 -0
  37. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/tests/rust_bodies.rs +0 -0
  38. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/tests/rust_public.rs +0 -0
  39. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/tests/rust_signatures.rs +0 -0
  40. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/tests/tokens.rs +0 -0
  41. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/tests/typescript_bodies.rs +0 -0
  42. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/tests/typescript_public.rs +0 -0
  43. {codefold-0.7.0 → codefold-0.8.1}/crates/codefold-core/tests/typescript_signatures.rs +0 -0
  44. {codefold-0.7.0 → codefold-0.8.1}/pyproject.toml +0 -0
@@ -53,7 +53,7 @@ version = "1.1.5"
53
53
  source = "registry+https://github.com/rust-lang/crates.io-index"
54
54
  checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
55
55
  dependencies = [
56
- "windows-sys",
56
+ "windows-sys 0.61.2",
57
57
  ]
58
58
 
59
59
  [[package]]
@@ -64,7 +64,7 @@ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
64
64
  dependencies = [
65
65
  "anstyle",
66
66
  "once_cell_polyfill",
67
- "windows-sys",
67
+ "windows-sys 0.61.2",
68
68
  ]
69
69
 
70
70
  [[package]]
@@ -100,6 +100,12 @@ version = "0.21.7"
100
100
  source = "registry+https://github.com/rust-lang/crates.io-index"
101
101
  checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
102
102
 
103
+ [[package]]
104
+ name = "base64"
105
+ version = "0.22.1"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
108
+
103
109
  [[package]]
104
110
  name = "bit-set"
105
111
  version = "0.5.3"
@@ -229,17 +235,22 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
229
235
 
230
236
  [[package]]
231
237
  name = "codefold-cli"
232
- version = "0.7.0"
238
+ version = "0.8.1"
233
239
  dependencies = [
234
240
  "assert_cmd",
235
241
  "clap",
236
242
  "codefold-core",
243
+ "dirs",
237
244
  "predicates",
245
+ "serde",
246
+ "serde_json",
247
+ "tempfile",
248
+ "ureq",
238
249
  ]
239
250
 
240
251
  [[package]]
241
252
  name = "codefold-core"
242
- version = "0.7.0"
253
+ version = "0.8.1"
243
254
  dependencies = [
244
255
  "criterion",
245
256
  "insta",
@@ -255,7 +266,7 @@ dependencies = [
255
266
 
256
267
  [[package]]
257
268
  name = "codefold-node"
258
- version = "0.7.0"
269
+ version = "0.8.1"
259
270
  dependencies = [
260
271
  "codefold-core",
261
272
  "napi",
@@ -265,7 +276,7 @@ dependencies = [
265
276
 
266
277
  [[package]]
267
278
  name = "codefold-py"
268
- version = "0.7.0"
279
+ version = "0.8.1"
269
280
  dependencies = [
270
281
  "codefold-core",
271
282
  "pyo3",
@@ -285,7 +296,7 @@ checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
285
296
  dependencies = [
286
297
  "encode_unicode",
287
298
  "libc",
288
- "windows-sys",
299
+ "windows-sys 0.61.2",
289
300
  ]
290
301
 
291
302
  [[package]]
@@ -376,6 +387,38 @@ version = "0.4.0"
376
387
  source = "registry+https://github.com/rust-lang/crates.io-index"
377
388
  checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
378
389
 
390
+ [[package]]
391
+ name = "dirs"
392
+ version = "5.0.1"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
395
+ dependencies = [
396
+ "dirs-sys",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "dirs-sys"
401
+ version = "0.4.1"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
404
+ dependencies = [
405
+ "libc",
406
+ "option-ext",
407
+ "redox_users",
408
+ "windows-sys 0.48.0",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "displaydoc"
413
+ version = "0.2.5"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
416
+ dependencies = [
417
+ "proc-macro2",
418
+ "quote",
419
+ "syn",
420
+ ]
421
+
379
422
  [[package]]
380
423
  name = "either"
381
424
  version = "1.15.0"
@@ -401,7 +444,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
401
444
  checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
402
445
  dependencies = [
403
446
  "libc",
404
- "windows-sys",
447
+ "windows-sys 0.61.2",
405
448
  ]
406
449
 
407
450
  [[package]]
@@ -442,6 +485,15 @@ version = "0.1.5"
442
485
  source = "registry+https://github.com/rust-lang/crates.io-index"
443
486
  checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
444
487
 
488
+ [[package]]
489
+ name = "form_urlencoded"
490
+ version = "1.2.2"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
493
+ dependencies = [
494
+ "percent-encoding",
495
+ ]
496
+
445
497
  [[package]]
446
498
  name = "futures"
447
499
  version = "0.3.32"
@@ -530,6 +582,17 @@ dependencies = [
530
582
  "slab",
531
583
  ]
532
584
 
585
+ [[package]]
586
+ name = "getrandom"
587
+ version = "0.2.17"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
590
+ dependencies = [
591
+ "cfg-if",
592
+ "libc",
593
+ "wasi",
594
+ ]
595
+
533
596
  [[package]]
534
597
  name = "getrandom"
535
598
  version = "0.4.2"
@@ -581,12 +644,115 @@ version = "0.5.2"
581
644
  source = "registry+https://github.com/rust-lang/crates.io-index"
582
645
  checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
583
646
 
647
+ [[package]]
648
+ name = "icu_collections"
649
+ version = "2.2.0"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
652
+ dependencies = [
653
+ "displaydoc",
654
+ "potential_utf",
655
+ "utf8_iter",
656
+ "yoke",
657
+ "zerofrom",
658
+ "zerovec",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "icu_locale_core"
663
+ version = "2.2.0"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
666
+ dependencies = [
667
+ "displaydoc",
668
+ "litemap",
669
+ "tinystr",
670
+ "writeable",
671
+ "zerovec",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "icu_normalizer"
676
+ version = "2.2.0"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
679
+ dependencies = [
680
+ "icu_collections",
681
+ "icu_normalizer_data",
682
+ "icu_properties",
683
+ "icu_provider",
684
+ "smallvec",
685
+ "zerovec",
686
+ ]
687
+
688
+ [[package]]
689
+ name = "icu_normalizer_data"
690
+ version = "2.2.0"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
693
+
694
+ [[package]]
695
+ name = "icu_properties"
696
+ version = "2.2.0"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
699
+ dependencies = [
700
+ "icu_collections",
701
+ "icu_locale_core",
702
+ "icu_properties_data",
703
+ "icu_provider",
704
+ "zerotrie",
705
+ "zerovec",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "icu_properties_data"
710
+ version = "2.2.0"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
713
+
714
+ [[package]]
715
+ name = "icu_provider"
716
+ version = "2.2.0"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
719
+ dependencies = [
720
+ "displaydoc",
721
+ "icu_locale_core",
722
+ "writeable",
723
+ "yoke",
724
+ "zerofrom",
725
+ "zerotrie",
726
+ "zerovec",
727
+ ]
728
+
584
729
  [[package]]
585
730
  name = "id-arena"
586
731
  version = "2.3.0"
587
732
  source = "registry+https://github.com/rust-lang/crates.io-index"
588
733
  checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
589
734
 
735
+ [[package]]
736
+ name = "idna"
737
+ version = "1.1.0"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
740
+ dependencies = [
741
+ "idna_adapter",
742
+ "smallvec",
743
+ "utf8_iter",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "idna_adapter"
748
+ version = "1.2.2"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
751
+ dependencies = [
752
+ "icu_normalizer",
753
+ "icu_properties",
754
+ ]
755
+
590
756
  [[package]]
591
757
  name = "indexmap"
592
758
  version = "2.14.0"
@@ -629,7 +795,7 @@ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
629
795
  dependencies = [
630
796
  "hermit-abi",
631
797
  "libc",
632
- "windows-sys",
798
+ "windows-sys 0.61.2",
633
799
  ]
634
800
 
635
801
  [[package]]
@@ -693,12 +859,27 @@ dependencies = [
693
859
  "windows-link",
694
860
  ]
695
861
 
862
+ [[package]]
863
+ name = "libredox"
864
+ version = "0.1.16"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
867
+ dependencies = [
868
+ "libc",
869
+ ]
870
+
696
871
  [[package]]
697
872
  name = "linux-raw-sys"
698
873
  version = "0.12.1"
699
874
  source = "registry+https://github.com/rust-lang/crates.io-index"
700
875
  checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
701
876
 
877
+ [[package]]
878
+ name = "litemap"
879
+ version = "0.8.2"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
882
+
702
883
  [[package]]
703
884
  name = "lock_api"
704
885
  version = "0.4.14"
@@ -825,6 +1006,12 @@ version = "11.1.5"
825
1006
  source = "registry+https://github.com/rust-lang/crates.io-index"
826
1007
  checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
827
1008
 
1009
+ [[package]]
1010
+ name = "option-ext"
1011
+ version = "0.2.0"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1014
+
828
1015
  [[package]]
829
1016
  name = "parking_lot"
830
1017
  version = "0.12.5"
@@ -848,6 +1035,12 @@ dependencies = [
848
1035
  "windows-link",
849
1036
  ]
850
1037
 
1038
+ [[package]]
1039
+ name = "percent-encoding"
1040
+ version = "2.3.2"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1043
+
851
1044
  [[package]]
852
1045
  name = "pin-project-lite"
853
1046
  version = "0.2.17"
@@ -888,6 +1081,15 @@ version = "1.13.1"
888
1081
  source = "registry+https://github.com/rust-lang/crates.io-index"
889
1082
  checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
890
1083
 
1084
+ [[package]]
1085
+ name = "potential_utf"
1086
+ version = "0.1.5"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1089
+ dependencies = [
1090
+ "zerovec",
1091
+ ]
1092
+
891
1093
  [[package]]
892
1094
  name = "predicates"
893
1095
  version = "3.1.4"
@@ -1044,6 +1246,17 @@ dependencies = [
1044
1246
  "bitflags",
1045
1247
  ]
1046
1248
 
1249
+ [[package]]
1250
+ name = "redox_users"
1251
+ version = "0.4.6"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
1254
+ dependencies = [
1255
+ "getrandom 0.2.17",
1256
+ "libredox",
1257
+ "thiserror",
1258
+ ]
1259
+
1047
1260
  [[package]]
1048
1261
  name = "regex"
1049
1262
  version = "1.12.3"
@@ -1073,6 +1286,20 @@ version = "0.8.10"
1073
1286
  source = "registry+https://github.com/rust-lang/crates.io-index"
1074
1287
  checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1075
1288
 
1289
+ [[package]]
1290
+ name = "ring"
1291
+ version = "0.17.14"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1294
+ dependencies = [
1295
+ "cc",
1296
+ "cfg-if",
1297
+ "getrandom 0.2.17",
1298
+ "libc",
1299
+ "untrusted",
1300
+ "windows-sys 0.52.0",
1301
+ ]
1302
+
1076
1303
  [[package]]
1077
1304
  name = "rustc-hash"
1078
1305
  version = "1.1.0"
@@ -1095,7 +1322,42 @@ dependencies = [
1095
1322
  "errno",
1096
1323
  "libc",
1097
1324
  "linux-raw-sys",
1098
- "windows-sys",
1325
+ "windows-sys 0.61.2",
1326
+ ]
1327
+
1328
+ [[package]]
1329
+ name = "rustls"
1330
+ version = "0.23.40"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
1333
+ dependencies = [
1334
+ "log",
1335
+ "once_cell",
1336
+ "ring",
1337
+ "rustls-pki-types",
1338
+ "rustls-webpki",
1339
+ "subtle",
1340
+ "zeroize",
1341
+ ]
1342
+
1343
+ [[package]]
1344
+ name = "rustls-pki-types"
1345
+ version = "1.14.1"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
1348
+ dependencies = [
1349
+ "zeroize",
1350
+ ]
1351
+
1352
+ [[package]]
1353
+ name = "rustls-webpki"
1354
+ version = "0.103.13"
1355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1356
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1357
+ dependencies = [
1358
+ "ring",
1359
+ "rustls-pki-types",
1360
+ "untrusted",
1099
1361
  ]
1100
1362
 
1101
1363
  [[package]]
@@ -1192,12 +1454,24 @@ version = "1.15.1"
1192
1454
  source = "registry+https://github.com/rust-lang/crates.io-index"
1193
1455
  checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1194
1456
 
1457
+ [[package]]
1458
+ name = "stable_deref_trait"
1459
+ version = "1.2.1"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1462
+
1195
1463
  [[package]]
1196
1464
  name = "strsim"
1197
1465
  version = "0.11.1"
1198
1466
  source = "registry+https://github.com/rust-lang/crates.io-index"
1199
1467
  checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1200
1468
 
1469
+ [[package]]
1470
+ name = "subtle"
1471
+ version = "2.6.1"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1474
+
1201
1475
  [[package]]
1202
1476
  name = "syn"
1203
1477
  version = "2.0.117"
@@ -1209,6 +1483,17 @@ dependencies = [
1209
1483
  "unicode-ident",
1210
1484
  ]
1211
1485
 
1486
+ [[package]]
1487
+ name = "synstructure"
1488
+ version = "0.13.2"
1489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1490
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1491
+ dependencies = [
1492
+ "proc-macro2",
1493
+ "quote",
1494
+ "syn",
1495
+ ]
1496
+
1212
1497
  [[package]]
1213
1498
  name = "target-lexicon"
1214
1499
  version = "0.12.16"
@@ -1222,10 +1507,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
1507
  checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1223
1508
  dependencies = [
1224
1509
  "fastrand",
1225
- "getrandom",
1510
+ "getrandom 0.4.2",
1226
1511
  "once_cell",
1227
1512
  "rustix",
1228
- "windows-sys",
1513
+ "windows-sys 0.61.2",
1229
1514
  ]
1230
1515
 
1231
1516
  [[package]]
@@ -1261,7 +1546,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
1546
  checksum = "44075987ee2486402f0808505dd65692163d243a337fc54363d49afac41087f6"
1262
1547
  dependencies = [
1263
1548
  "anyhow",
1264
- "base64",
1549
+ "base64 0.21.7",
1265
1550
  "bstr",
1266
1551
  "fancy-regex",
1267
1552
  "lazy_static",
@@ -1270,6 +1555,16 @@ dependencies = [
1270
1555
  "rustc-hash 1.1.0",
1271
1556
  ]
1272
1557
 
1558
+ [[package]]
1559
+ name = "tinystr"
1560
+ version = "0.8.3"
1561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1562
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1563
+ dependencies = [
1564
+ "displaydoc",
1565
+ "zerovec",
1566
+ ]
1567
+
1273
1568
  [[package]]
1274
1569
  name = "tinytemplate"
1275
1570
  version = "1.2.1"
@@ -1354,6 +1649,47 @@ version = "0.2.4"
1354
1649
  source = "registry+https://github.com/rust-lang/crates.io-index"
1355
1650
  checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1356
1651
 
1652
+ [[package]]
1653
+ name = "untrusted"
1654
+ version = "0.9.0"
1655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1656
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1657
+
1658
+ [[package]]
1659
+ name = "ureq"
1660
+ version = "2.12.1"
1661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1662
+ checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
1663
+ dependencies = [
1664
+ "base64 0.22.1",
1665
+ "log",
1666
+ "once_cell",
1667
+ "rustls",
1668
+ "rustls-pki-types",
1669
+ "serde",
1670
+ "serde_json",
1671
+ "url",
1672
+ "webpki-roots 0.26.11",
1673
+ ]
1674
+
1675
+ [[package]]
1676
+ name = "url"
1677
+ version = "2.5.8"
1678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1679
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1680
+ dependencies = [
1681
+ "form_urlencoded",
1682
+ "idna",
1683
+ "percent-encoding",
1684
+ "serde",
1685
+ ]
1686
+
1687
+ [[package]]
1688
+ name = "utf8_iter"
1689
+ version = "1.0.4"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1692
+
1357
1693
  [[package]]
1358
1694
  name = "utf8parse"
1359
1695
  version = "0.2.2"
@@ -1379,6 +1715,12 @@ dependencies = [
1379
1715
  "winapi-util",
1380
1716
  ]
1381
1717
 
1718
+ [[package]]
1719
+ name = "wasi"
1720
+ version = "0.11.1+wasi-snapshot-preview1"
1721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1723
+
1382
1724
  [[package]]
1383
1725
  name = "wasip2"
1384
1726
  version = "1.0.3+wasi-0.2.9"
@@ -1486,13 +1828,31 @@ dependencies = [
1486
1828
  "wasm-bindgen",
1487
1829
  ]
1488
1830
 
1831
+ [[package]]
1832
+ name = "webpki-roots"
1833
+ version = "0.26.11"
1834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1835
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
1836
+ dependencies = [
1837
+ "webpki-roots 1.0.7",
1838
+ ]
1839
+
1840
+ [[package]]
1841
+ name = "webpki-roots"
1842
+ version = "1.0.7"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
1845
+ dependencies = [
1846
+ "rustls-pki-types",
1847
+ ]
1848
+
1489
1849
  [[package]]
1490
1850
  name = "winapi-util"
1491
1851
  version = "0.1.11"
1492
1852
  source = "registry+https://github.com/rust-lang/crates.io-index"
1493
1853
  checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1494
1854
  dependencies = [
1495
- "windows-sys",
1855
+ "windows-sys 0.61.2",
1496
1856
  ]
1497
1857
 
1498
1858
  [[package]]
@@ -1501,6 +1861,24 @@ version = "0.2.1"
1501
1861
  source = "registry+https://github.com/rust-lang/crates.io-index"
1502
1862
  checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1503
1863
 
1864
+ [[package]]
1865
+ name = "windows-sys"
1866
+ version = "0.48.0"
1867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1868
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1869
+ dependencies = [
1870
+ "windows-targets 0.48.5",
1871
+ ]
1872
+
1873
+ [[package]]
1874
+ name = "windows-sys"
1875
+ version = "0.52.0"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1878
+ dependencies = [
1879
+ "windows-targets 0.52.6",
1880
+ ]
1881
+
1504
1882
  [[package]]
1505
1883
  name = "windows-sys"
1506
1884
  version = "0.61.2"
@@ -1510,6 +1888,127 @@ dependencies = [
1510
1888
  "windows-link",
1511
1889
  ]
1512
1890
 
1891
+ [[package]]
1892
+ name = "windows-targets"
1893
+ version = "0.48.5"
1894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1896
+ dependencies = [
1897
+ "windows_aarch64_gnullvm 0.48.5",
1898
+ "windows_aarch64_msvc 0.48.5",
1899
+ "windows_i686_gnu 0.48.5",
1900
+ "windows_i686_msvc 0.48.5",
1901
+ "windows_x86_64_gnu 0.48.5",
1902
+ "windows_x86_64_gnullvm 0.48.5",
1903
+ "windows_x86_64_msvc 0.48.5",
1904
+ ]
1905
+
1906
+ [[package]]
1907
+ name = "windows-targets"
1908
+ version = "0.52.6"
1909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1910
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1911
+ dependencies = [
1912
+ "windows_aarch64_gnullvm 0.52.6",
1913
+ "windows_aarch64_msvc 0.52.6",
1914
+ "windows_i686_gnu 0.52.6",
1915
+ "windows_i686_gnullvm",
1916
+ "windows_i686_msvc 0.52.6",
1917
+ "windows_x86_64_gnu 0.52.6",
1918
+ "windows_x86_64_gnullvm 0.52.6",
1919
+ "windows_x86_64_msvc 0.52.6",
1920
+ ]
1921
+
1922
+ [[package]]
1923
+ name = "windows_aarch64_gnullvm"
1924
+ version = "0.48.5"
1925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1926
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1927
+
1928
+ [[package]]
1929
+ name = "windows_aarch64_gnullvm"
1930
+ version = "0.52.6"
1931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1933
+
1934
+ [[package]]
1935
+ name = "windows_aarch64_msvc"
1936
+ version = "0.48.5"
1937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1938
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1939
+
1940
+ [[package]]
1941
+ name = "windows_aarch64_msvc"
1942
+ version = "0.52.6"
1943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1944
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1945
+
1946
+ [[package]]
1947
+ name = "windows_i686_gnu"
1948
+ version = "0.48.5"
1949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1950
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1951
+
1952
+ [[package]]
1953
+ name = "windows_i686_gnu"
1954
+ version = "0.52.6"
1955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1956
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1957
+
1958
+ [[package]]
1959
+ name = "windows_i686_gnullvm"
1960
+ version = "0.52.6"
1961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1963
+
1964
+ [[package]]
1965
+ name = "windows_i686_msvc"
1966
+ version = "0.48.5"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1969
+
1970
+ [[package]]
1971
+ name = "windows_i686_msvc"
1972
+ version = "0.52.6"
1973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1975
+
1976
+ [[package]]
1977
+ name = "windows_x86_64_gnu"
1978
+ version = "0.48.5"
1979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1980
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1981
+
1982
+ [[package]]
1983
+ name = "windows_x86_64_gnu"
1984
+ version = "0.52.6"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1987
+
1988
+ [[package]]
1989
+ name = "windows_x86_64_gnullvm"
1990
+ version = "0.48.5"
1991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1992
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
1993
+
1994
+ [[package]]
1995
+ name = "windows_x86_64_gnullvm"
1996
+ version = "0.52.6"
1997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1998
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1999
+
2000
+ [[package]]
2001
+ name = "windows_x86_64_msvc"
2002
+ version = "0.48.5"
2003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2004
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2005
+
2006
+ [[package]]
2007
+ name = "windows_x86_64_msvc"
2008
+ version = "0.52.6"
2009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2010
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2011
+
1513
2012
  [[package]]
1514
2013
  name = "wit-bindgen"
1515
2014
  version = "0.51.0"
@@ -1604,6 +2103,35 @@ dependencies = [
1604
2103
  "wasmparser",
1605
2104
  ]
1606
2105
 
2106
+ [[package]]
2107
+ name = "writeable"
2108
+ version = "0.6.3"
2109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2110
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2111
+
2112
+ [[package]]
2113
+ name = "yoke"
2114
+ version = "0.8.2"
2115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2116
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
2117
+ dependencies = [
2118
+ "stable_deref_trait",
2119
+ "yoke-derive",
2120
+ "zerofrom",
2121
+ ]
2122
+
2123
+ [[package]]
2124
+ name = "yoke-derive"
2125
+ version = "0.8.2"
2126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2127
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2128
+ dependencies = [
2129
+ "proc-macro2",
2130
+ "quote",
2131
+ "syn",
2132
+ "synstructure",
2133
+ ]
2134
+
1607
2135
  [[package]]
1608
2136
  name = "zerocopy"
1609
2137
  version = "0.8.48"
@@ -1624,6 +2152,66 @@ dependencies = [
1624
2152
  "syn",
1625
2153
  ]
1626
2154
 
2155
+ [[package]]
2156
+ name = "zerofrom"
2157
+ version = "0.1.8"
2158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2159
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2160
+ dependencies = [
2161
+ "zerofrom-derive",
2162
+ ]
2163
+
2164
+ [[package]]
2165
+ name = "zerofrom-derive"
2166
+ version = "0.1.7"
2167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2168
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2169
+ dependencies = [
2170
+ "proc-macro2",
2171
+ "quote",
2172
+ "syn",
2173
+ "synstructure",
2174
+ ]
2175
+
2176
+ [[package]]
2177
+ name = "zeroize"
2178
+ version = "1.8.2"
2179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2180
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2181
+
2182
+ [[package]]
2183
+ name = "zerotrie"
2184
+ version = "0.2.4"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2187
+ dependencies = [
2188
+ "displaydoc",
2189
+ "yoke",
2190
+ "zerofrom",
2191
+ ]
2192
+
2193
+ [[package]]
2194
+ name = "zerovec"
2195
+ version = "0.11.6"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2198
+ dependencies = [
2199
+ "yoke",
2200
+ "zerofrom",
2201
+ "zerovec-derive",
2202
+ ]
2203
+
2204
+ [[package]]
2205
+ name = "zerovec-derive"
2206
+ version = "0.11.3"
2207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2208
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2209
+ dependencies = [
2210
+ "proc-macro2",
2211
+ "quote",
2212
+ "syn",
2213
+ ]
2214
+
1627
2215
  [[package]]
1628
2216
  name = "zmij"
1629
2217
  version = "1.0.21"
@@ -3,7 +3,7 @@ resolver = "2"
3
3
  members = ["crates/codefold-core", "bindings/python"]
4
4
 
5
5
  [workspace.package]
6
- version = "0.7.0"
6
+ version = "0.8.1"
7
7
  edition = "2021"
8
8
  license = "MIT"
9
9
  authors = ["maxenceleguery <maxence.leguery@gmail.com>"]
@@ -27,5 +27,10 @@ once_cell = "1"
27
27
  insta = { version = "1", features = ["yaml"] }
28
28
  criterion = { version = "0.5", features = ["html_reports"] }
29
29
  clap = { version = "4", features = ["derive"] }
30
+ ureq = { version = "2", default-features = false, features = ["tls", "json"] }
31
+ serde = { version = "1", features = ["derive"] }
32
+ serde_json = "1"
33
+ dirs = "5"
34
+ tempfile = "3"
30
35
  assert_cmd = "2"
31
36
  predicates = "3"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: codefold
3
- Version: 0.7.0
3
+ Version: 0.8.1
4
4
  Classifier: Development Status :: 3 - Alpha
5
5
  Classifier: Intended Audience :: Developers
6
6
  Classifier: License :: OSI Approved :: MIT License
@@ -45,14 +45,17 @@ uv add codefold
45
45
  **Node.js** (prebuilt binaries for Linux/macOS/Windows):
46
46
 
47
47
  ```sh
48
- npm install codefold
48
+ npm install @maxenceleguery/codefold
49
49
  ```
50
50
 
51
51
  ```js
52
- import { read } from "codefold";
52
+ import { read } from "@maxenceleguery/codefold";
53
53
  const r = read("src/auth.py", "signatures");
54
54
  ```
55
55
 
56
+ The bare `codefold` name on npm was blocked as too similar to an existing
57
+ `code-fold`; the package lives under the maintainer's user scope.
58
+
56
59
  ## Use
57
60
 
58
61
  ```sh
@@ -61,6 +64,30 @@ codefold src/auth.py --level bodies --focus login,verify_token
61
64
  codefold src/handlers.ts --level signatures --stats
62
65
  ```
63
66
 
67
+ ### Subcommands
68
+
69
+ ```sh
70
+ codefold update # check + interactively upgrade via `cargo install codefold-cli --force`
71
+ codefold update --check # check only; don't upgrade
72
+ codefold update --yes # upgrade without prompting (for scripts / CI)
73
+ codefold setup # install integration into agent harnesses (project scope)
74
+ codefold setup --scope user # install user-level (~/.claude/CLAUDE.md + skill)
75
+ codefold setup --dry-run # show what would change without writing
76
+ codefold setup -H claude-code # target a specific harness (claude-code|cursor|copilot)
77
+ ```
78
+
79
+ `update` requires `cargo` on PATH (it self-upgrades via crates.io). If you installed via `pip` or `npm`, those need to be updated separately — the CLI will print the right command if cargo isn't found.
80
+
81
+ `codefold setup` writes a delimited `<!-- codefold:start --> ... <!-- codefold:end -->` block to:
82
+
83
+ | Harness | Project scope | User scope |
84
+ |----------------|----------------------------------------|-------------------------------------------------------------|
85
+ | Claude Code | `./CLAUDE.md` | `~/.claude/CLAUDE.md` + `~/.claude/skills/codefold/SKILL.md`|
86
+ | Cursor | `.cursor/rules/codefold.mdc` | (n/a) |
87
+ | Copilot | `.github/copilot-instructions.md` | (n/a) |
88
+
89
+ The block is idempotent — re-running `setup` updates in place. It explicitly tells the agent to **brief any subagents** it spawns about codefold, since subagents don't inherit conversation context.
90
+
64
91
  As a Rust library:
65
92
 
66
93
  ```rust
@@ -111,10 +138,12 @@ If you're building an agent framework or a code-aware tool and you need granular
111
138
 
112
139
  ## Status
113
140
 
114
- Early. v0.7.0. Python, TypeScript, Rust, Go. API is not yet stable.
141
+ Early. v0.8.1. Python, TypeScript, Rust, Go. API is not yet stable.
115
142
 
116
143
  ### Changelog
117
144
 
145
+ - **0.8.1** — CI fixes: upgrade npm on the release runner to >=11.5 (needed for Trusted Publishing OIDC); make the setup test platform-agnostic on Windows.
146
+ - **0.8.0** — `codefold update` (self-upgrade via cargo), `codefold setup` (install integration into Claude Code / Cursor / Copilot — project or user scope, idempotent block-replace, propagates to subagents). npm publish migrated to Trusted Publishing (OIDC).
118
147
  - **0.7.0** — npm publish pipeline. `codefold` on npm with prebuilt binaries for Linux x86_64/aarch64, macOS x86_64/arm64, Windows x64. Uses napi-rs's per-platform sub-package pattern with provenance.
119
148
  - **0.6.0** — Publishing pipeline: `codefold-core` and `codefold-cli` to crates.io, `codefold` (Python wheel) to PyPI via Trusted Publishing on tag pushes. Node.js binding (`@codefold/node`) scaffolded with napi-rs; npm publishing pipeline arrives in v0.7.0. MSRV bumped to 1.77 (napi-rs requirement).
120
149
  - **0.5.1** — Fix Windows CI: the Go newline regression test asserted on `\n` directly, which broke when Windows checked out the fixture as CRLF. Switched to `.lines()` and added `.gitattributes` forcing LF.
File without changes
File without changes