pretty-mod 0.2.2__tar.gz → 0.2.3__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 (48) hide show
  1. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/Cargo.lock +629 -16
  2. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/Cargo.toml +5 -1
  3. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/PKG-INFO +1 -1
  4. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/RELEASE_NOTES.md +50 -0
  5. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/python/pretty_mod/cli.py +5 -1
  6. pretty_mod-0.2.3/src/import_resolver.rs +341 -0
  7. pretty_mod-0.2.3/src/import_resolver_v2.rs +97 -0
  8. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/src/lib.rs +1 -0
  9. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/src/module_info.rs +69 -1
  10. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/src/signature.rs +88 -2
  11. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/tests/test_import_chain.py +37 -20
  12. pretty_mod-0.2.2/src/import_resolver.rs +0 -147
  13. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/.github/workflows/CI.yml +0 -0
  14. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/.github/workflows/tests.yml +0 -0
  15. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/.gitignore +0 -0
  16. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/.pre-commit-config.yaml +0 -0
  17. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/CLAUDE.md +0 -0
  18. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/LICENSE +0 -0
  19. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/README.md +0 -0
  20. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/examples/0_hello.py +0 -0
  21. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/examples/1_tree.py +0 -0
  22. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/examples/2_sig.py +0 -0
  23. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/justfile +0 -0
  24. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/pyproject.toml +0 -0
  25. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/python/pretty_mod/__init__.py +0 -0
  26. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/python/pretty_mod/__main__.py +0 -0
  27. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/python/pretty_mod/_pretty_mod.pyi +0 -0
  28. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/python/pretty_mod/explorer.py +0 -0
  29. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/python/pretty_mod/py.typed +0 -0
  30. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/scripts/compare_local.py +0 -0
  31. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/scripts/compare_versions.py +0 -0
  32. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/scripts/perf_test.py +0 -0
  33. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/scripts/profile.py +0 -0
  34. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/src/config.rs +0 -0
  35. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/src/explorer.rs +0 -0
  36. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/src/output_format.rs +0 -0
  37. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/src/package_downloader.rs +0 -0
  38. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/src/semantic.rs +0 -0
  39. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/src/stdlib.rs +0 -0
  40. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/src/tree_formatter.rs +0 -0
  41. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/src/utils.rs +0 -0
  42. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/tests/__init__.py +0 -0
  43. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/tests/conftest.py +0 -0
  44. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/tests/test_cli.py +0 -0
  45. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/tests/test_double_colon.py +0 -0
  46. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/tests/test_explorer.py +0 -0
  47. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/tests/test_json_output.py +0 -0
  48. {pretty_mod-0.2.2 → pretty_mod-0.2.3}/uv.lock +0 -0
@@ -37,6 +37,24 @@ dependencies = [
37
37
  "memchr",
38
38
  ]
39
39
 
40
+ [[package]]
41
+ name = "allocator-api2"
42
+ version = "0.2.21"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
45
+
46
+ [[package]]
47
+ name = "anstyle"
48
+ version = "1.0.11"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
51
+
52
+ [[package]]
53
+ name = "anyhow"
54
+ version = "1.0.98"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
57
+
40
58
  [[package]]
41
59
  name = "arbitrary"
42
60
  version = "1.4.1"
@@ -88,6 +106,12 @@ dependencies = [
88
106
  "generic-array",
89
107
  ]
90
108
 
109
+ [[package]]
110
+ name = "boxcar"
111
+ version = "0.2.13"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "26c4925bc979b677330a8c7fe7a8c94af2dbb4a2d37b4a20a80d884400f46baa"
114
+
91
115
  [[package]]
92
116
  name = "bstr"
93
117
  version = "1.12.0"
@@ -136,6 +160,12 @@ dependencies = [
136
160
  "pkg-config",
137
161
  ]
138
162
 
163
+ [[package]]
164
+ name = "camino"
165
+ version = "1.1.10"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "0da45bc31171d8d6960122e222a67740df867c1dd53b4d51caa297084c185cab"
168
+
139
169
  [[package]]
140
170
  name = "castaway"
141
171
  version = "0.2.3"
@@ -178,6 +208,15 @@ dependencies = [
178
208
  "inout",
179
209
  ]
180
210
 
211
+ [[package]]
212
+ name = "colored"
213
+ version = "3.0.0"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "fde0e0ec90c9dfb3b4b1a0891a7dcd0e2bffde2f7efed5fe7c9bb00e5bfb915e"
216
+ dependencies = [
217
+ "windows-sys 0.59.0",
218
+ ]
219
+
181
220
  [[package]]
182
221
  name = "compact_str"
183
222
  version = "0.9.0"
@@ -214,6 +253,12 @@ version = "0.8.7"
214
253
  source = "registry+https://github.com/rust-lang/crates.io-index"
215
254
  checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
216
255
 
256
+ [[package]]
257
+ name = "countme"
258
+ version = "3.0.1"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
261
+
217
262
  [[package]]
218
263
  name = "cpufeatures"
219
264
  version = "0.2.17"
@@ -247,6 +292,34 @@ dependencies = [
247
292
  "cfg-if",
248
293
  ]
249
294
 
295
+ [[package]]
296
+ name = "crossbeam-deque"
297
+ version = "0.8.6"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
300
+ dependencies = [
301
+ "crossbeam-epoch",
302
+ "crossbeam-utils",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "crossbeam-epoch"
307
+ version = "0.9.18"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
310
+ dependencies = [
311
+ "crossbeam-utils",
312
+ ]
313
+
314
+ [[package]]
315
+ name = "crossbeam-queue"
316
+ version = "0.3.12"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
319
+ dependencies = [
320
+ "crossbeam-utils",
321
+ ]
322
+
250
323
  [[package]]
251
324
  name = "crossbeam-utils"
252
325
  version = "0.8.21"
@@ -263,6 +336,55 @@ dependencies = [
263
336
  "typenum",
264
337
  ]
265
338
 
339
+ [[package]]
340
+ name = "darling"
341
+ version = "0.20.11"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
344
+ dependencies = [
345
+ "darling_core",
346
+ "darling_macro",
347
+ ]
348
+
349
+ [[package]]
350
+ name = "darling_core"
351
+ version = "0.20.11"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
354
+ dependencies = [
355
+ "fnv",
356
+ "ident_case",
357
+ "proc-macro2",
358
+ "quote",
359
+ "strsim",
360
+ "syn",
361
+ ]
362
+
363
+ [[package]]
364
+ name = "darling_macro"
365
+ version = "0.20.11"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
368
+ dependencies = [
369
+ "darling_core",
370
+ "quote",
371
+ "syn",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "dashmap"
376
+ version = "6.1.0"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
379
+ dependencies = [
380
+ "cfg-if",
381
+ "crossbeam-utils",
382
+ "hashbrown 0.14.5",
383
+ "lock_api",
384
+ "once_cell",
385
+ "parking_lot_core",
386
+ ]
387
+
266
388
  [[package]]
267
389
  name = "deflate64"
268
390
  version = "0.1.9"
@@ -311,6 +433,18 @@ dependencies = [
311
433
  "syn",
312
434
  ]
313
435
 
436
+ [[package]]
437
+ name = "drop_bomb"
438
+ version = "0.1.5"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "9bda8e21c04aca2ae33ffc2fd8c23134f3cac46db123ba97bd9d3f3b8a4a85e1"
441
+
442
+ [[package]]
443
+ name = "dunce"
444
+ version = "1.0.5"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
447
+
314
448
  [[package]]
315
449
  name = "either"
316
450
  version = "1.15.0"
@@ -367,6 +501,12 @@ version = "1.0.7"
367
501
  source = "registry+https://github.com/rust-lang/crates.io-index"
368
502
  checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
369
503
 
504
+ [[package]]
505
+ name = "foldhash"
506
+ version = "0.1.5"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
509
+
370
510
  [[package]]
371
511
  name = "form_urlencoded"
372
512
  version = "1.2.1"
@@ -442,7 +582,7 @@ version = "0.2.21"
442
582
  source = "registry+https://github.com/rust-lang/crates.io-index"
443
583
  checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
444
584
  dependencies = [
445
- "unicode-width",
585
+ "unicode-width 0.1.14",
446
586
  ]
447
587
 
448
588
  [[package]]
@@ -497,11 +637,31 @@ dependencies = [
497
637
  "regex-syntax",
498
638
  ]
499
639
 
640
+ [[package]]
641
+ name = "hashbrown"
642
+ version = "0.14.5"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
645
+
500
646
  [[package]]
501
647
  name = "hashbrown"
502
648
  version = "0.15.4"
503
649
  source = "registry+https://github.com/rust-lang/crates.io-index"
504
650
  checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
651
+ dependencies = [
652
+ "allocator-api2",
653
+ "equivalent",
654
+ "foldhash",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "hashlink"
659
+ version = "0.10.0"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
662
+ dependencies = [
663
+ "hashbrown 0.15.4",
664
+ ]
505
665
 
506
666
  [[package]]
507
667
  name = "heck"
@@ -705,6 +865,12 @@ dependencies = [
705
865
  "zerovec",
706
866
  ]
707
867
 
868
+ [[package]]
869
+ name = "ident_case"
870
+ version = "1.0.1"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
873
+
708
874
  [[package]]
709
875
  name = "idna"
710
876
  version = "1.0.3"
@@ -733,7 +899,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
733
899
  checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
734
900
  dependencies = [
735
901
  "equivalent",
736
- "hashbrown",
902
+ "hashbrown 0.15.4",
737
903
  ]
738
904
 
739
905
  [[package]]
@@ -751,6 +917,15 @@ dependencies = [
751
917
  "generic-array",
752
918
  ]
753
919
 
920
+ [[package]]
921
+ name = "intrusive-collections"
922
+ version = "0.9.7"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "189d0897e4cbe8c75efedf3502c18c887b05046e59d28404d4d8e46cbc4d1e86"
925
+ dependencies = [
926
+ "memoffset",
927
+ ]
928
+
754
929
  [[package]]
755
930
  name = "ipnet"
756
931
  version = "2.11.0"
@@ -843,6 +1018,16 @@ version = "0.8.0"
843
1018
  source = "registry+https://github.com/rust-lang/crates.io-index"
844
1019
  checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
845
1020
 
1021
+ [[package]]
1022
+ name = "lock_api"
1023
+ version = "0.4.13"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
1026
+ dependencies = [
1027
+ "autocfg",
1028
+ "scopeguard",
1029
+ ]
1030
+
846
1031
  [[package]]
847
1032
  name = "log"
848
1033
  version = "0.4.27"
@@ -870,6 +1055,18 @@ dependencies = [
870
1055
  "pkg-config",
871
1056
  ]
872
1057
 
1058
+ [[package]]
1059
+ name = "matches"
1060
+ version = "0.1.10"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
1063
+
1064
+ [[package]]
1065
+ name = "matchit"
1066
+ version = "0.8.6"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "2f926ade0c4e170215ae43342bf13b9310a437609c81f29f86c5df6657582ef9"
1069
+
873
1070
  [[package]]
874
1071
  name = "memchr"
875
1072
  version = "2.7.4"
@@ -932,6 +1129,44 @@ version = "0.1.6"
932
1129
  source = "registry+https://github.com/rust-lang/crates.io-index"
933
1130
  checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
934
1131
 
1132
+ [[package]]
1133
+ name = "ordermap"
1134
+ version = "0.5.7"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "7d31b8b7a99f71bdff4235faf9ce9eada0ad3562c8fbeb7d607d9f41a6ec569d"
1137
+ dependencies = [
1138
+ "indexmap",
1139
+ ]
1140
+
1141
+ [[package]]
1142
+ name = "parking_lot"
1143
+ version = "0.12.4"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
1146
+ dependencies = [
1147
+ "lock_api",
1148
+ "parking_lot_core",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "parking_lot_core"
1153
+ version = "0.9.11"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
1156
+ dependencies = [
1157
+ "cfg-if",
1158
+ "libc",
1159
+ "redox_syscall",
1160
+ "smallvec",
1161
+ "windows-targets",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "path-slash"
1166
+ version = "0.2.1"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "1e91099d4268b0e11973f036e885d652fb0b21fedcf69738c627f94db6a44f42"
1169
+
935
1170
  [[package]]
936
1171
  name = "pbkdf2"
937
1172
  version = "0.12.2"
@@ -1036,20 +1271,24 @@ dependencies = [
1036
1271
 
1037
1272
  [[package]]
1038
1273
  name = "pretty-mod"
1039
- version = "0.2.2"
1274
+ version = "0.2.3"
1040
1275
  dependencies = [
1276
+ "anyhow",
1041
1277
  "flate2",
1042
1278
  "pyo3",
1043
1279
  "reqwest",
1280
+ "ruff_db",
1044
1281
  "ruff_python_ast",
1045
1282
  "ruff_python_parser",
1046
1283
  "ruff_python_resolver",
1047
1284
  "ruff_python_semantic",
1285
+ "salsa",
1048
1286
  "serde",
1049
1287
  "serde_json",
1050
1288
  "tar",
1051
1289
  "tempfile",
1052
- "zip",
1290
+ "ty_python_semantic",
1291
+ "zip 2.4.2",
1053
1292
  ]
1054
1293
 
1055
1294
  [[package]]
@@ -1175,7 +1414,7 @@ dependencies = [
1175
1414
  "once_cell",
1176
1415
  "socket2",
1177
1416
  "tracing",
1178
- "windows-sys 0.52.0",
1417
+ "windows-sys 0.59.0",
1179
1418
  ]
1180
1419
 
1181
1420
  [[package]]
@@ -1252,6 +1491,26 @@ dependencies = [
1252
1491
  "getrandom 0.3.3",
1253
1492
  ]
1254
1493
 
1494
+ [[package]]
1495
+ name = "rayon"
1496
+ version = "1.10.0"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
1499
+ dependencies = [
1500
+ "either",
1501
+ "rayon-core",
1502
+ ]
1503
+
1504
+ [[package]]
1505
+ name = "rayon-core"
1506
+ version = "1.12.1"
1507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1508
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
1509
+ dependencies = [
1510
+ "crossbeam-deque",
1511
+ "crossbeam-utils",
1512
+ ]
1513
+
1255
1514
  [[package]]
1256
1515
  name = "redox_syscall"
1257
1516
  version = "0.5.12"
@@ -1345,10 +1604,20 @@ dependencies = [
1345
1604
  "windows-sys 0.52.0",
1346
1605
  ]
1347
1606
 
1607
+ [[package]]
1608
+ name = "ruff_annotate_snippets"
1609
+ version = "0.1.0"
1610
+ source = "git+https://github.com/astral-sh/ruff#e6fe2af292e7be87c2917863464a5455c5b22c38"
1611
+ dependencies = [
1612
+ "anstyle",
1613
+ "memchr",
1614
+ "unicode-width 0.2.1",
1615
+ ]
1616
+
1348
1617
  [[package]]
1349
1618
  name = "ruff_cache"
1350
1619
  version = "0.0.0"
1351
- source = "git+https://github.com/astral-sh/ruff#0724bee59c12da9cedc84f4238b08aabe9ecaaa1"
1620
+ source = "git+https://github.com/astral-sh/ruff#e6fe2af292e7be87c2917863464a5455c5b22c38"
1352
1621
  dependencies = [
1353
1622
  "filetime",
1354
1623
  "glob",
@@ -1358,18 +1627,57 @@ dependencies = [
1358
1627
  "seahash",
1359
1628
  ]
1360
1629
 
1630
+ [[package]]
1631
+ name = "ruff_db"
1632
+ version = "0.0.0"
1633
+ source = "git+https://github.com/astral-sh/ruff#e6fe2af292e7be87c2917863464a5455c5b22c38"
1634
+ dependencies = [
1635
+ "anstyle",
1636
+ "camino",
1637
+ "countme",
1638
+ "dashmap",
1639
+ "dunce",
1640
+ "filetime",
1641
+ "glob",
1642
+ "matchit",
1643
+ "path-slash",
1644
+ "ruff_annotate_snippets",
1645
+ "ruff_notebook",
1646
+ "ruff_python_ast",
1647
+ "ruff_python_parser",
1648
+ "ruff_python_trivia",
1649
+ "ruff_source_file",
1650
+ "ruff_text_size",
1651
+ "rustc-hash",
1652
+ "salsa",
1653
+ "thiserror",
1654
+ "tracing",
1655
+ "web-time",
1656
+ "zip 0.6.6",
1657
+ ]
1658
+
1659
+ [[package]]
1660
+ name = "ruff_diagnostics"
1661
+ version = "0.0.0"
1662
+ source = "git+https://github.com/astral-sh/ruff#e6fe2af292e7be87c2917863464a5455c5b22c38"
1663
+ dependencies = [
1664
+ "is-macro",
1665
+ "ruff_text_size",
1666
+ ]
1667
+
1361
1668
  [[package]]
1362
1669
  name = "ruff_index"
1363
1670
  version = "0.0.0"
1364
- source = "git+https://github.com/astral-sh/ruff#0724bee59c12da9cedc84f4238b08aabe9ecaaa1"
1671
+ source = "git+https://github.com/astral-sh/ruff#e6fe2af292e7be87c2917863464a5455c5b22c38"
1365
1672
  dependencies = [
1366
1673
  "ruff_macros",
1674
+ "salsa",
1367
1675
  ]
1368
1676
 
1369
1677
  [[package]]
1370
1678
  name = "ruff_macros"
1371
1679
  version = "0.0.0"
1372
- source = "git+https://github.com/astral-sh/ruff#0724bee59c12da9cedc84f4238b08aabe9ecaaa1"
1680
+ source = "git+https://github.com/astral-sh/ruff#e6fe2af292e7be87c2917863464a5455c5b22c38"
1373
1681
  dependencies = [
1374
1682
  "heck",
1375
1683
  "itertools",
@@ -1379,10 +1687,28 @@ dependencies = [
1379
1687
  "syn",
1380
1688
  ]
1381
1689
 
1690
+ [[package]]
1691
+ name = "ruff_notebook"
1692
+ version = "0.0.0"
1693
+ source = "git+https://github.com/astral-sh/ruff#e6fe2af292e7be87c2917863464a5455c5b22c38"
1694
+ dependencies = [
1695
+ "anyhow",
1696
+ "itertools",
1697
+ "rand 0.9.1",
1698
+ "ruff_diagnostics",
1699
+ "ruff_source_file",
1700
+ "ruff_text_size",
1701
+ "serde",
1702
+ "serde_json",
1703
+ "serde_with",
1704
+ "thiserror",
1705
+ "uuid",
1706
+ ]
1707
+
1382
1708
  [[package]]
1383
1709
  name = "ruff_python_ast"
1384
1710
  version = "0.0.0"
1385
- source = "git+https://github.com/astral-sh/ruff#0724bee59c12da9cedc84f4238b08aabe9ecaaa1"
1711
+ source = "git+https://github.com/astral-sh/ruff#e6fe2af292e7be87c2917863464a5455c5b22c38"
1386
1712
  dependencies = [
1387
1713
  "aho-corasick",
1388
1714
  "bitflags",
@@ -1394,12 +1720,25 @@ dependencies = [
1394
1720
  "ruff_source_file",
1395
1721
  "ruff_text_size",
1396
1722
  "rustc-hash",
1723
+ "salsa",
1724
+ "thiserror",
1725
+ ]
1726
+
1727
+ [[package]]
1728
+ name = "ruff_python_literal"
1729
+ version = "0.0.0"
1730
+ source = "git+https://github.com/astral-sh/ruff#e6fe2af292e7be87c2917863464a5455c5b22c38"
1731
+ dependencies = [
1732
+ "bitflags",
1733
+ "itertools",
1734
+ "ruff_python_ast",
1735
+ "unic-ucd-category",
1397
1736
  ]
1398
1737
 
1399
1738
  [[package]]
1400
1739
  name = "ruff_python_parser"
1401
1740
  version = "0.0.0"
1402
- source = "git+https://github.com/astral-sh/ruff#0724bee59c12da9cedc84f4238b08aabe9ecaaa1"
1741
+ source = "git+https://github.com/astral-sh/ruff#e6fe2af292e7be87c2917863464a5455c5b22c38"
1403
1742
  dependencies = [
1404
1743
  "bitflags",
1405
1744
  "bstr",
@@ -1418,7 +1757,7 @@ dependencies = [
1418
1757
  [[package]]
1419
1758
  name = "ruff_python_resolver"
1420
1759
  version = "0.0.0"
1421
- source = "git+https://github.com/astral-sh/ruff#0724bee59c12da9cedc84f4238b08aabe9ecaaa1"
1760
+ source = "git+https://github.com/astral-sh/ruff#e6fe2af292e7be87c2917863464a5455c5b22c38"
1422
1761
  dependencies = [
1423
1762
  "log",
1424
1763
  ]
@@ -1426,7 +1765,7 @@ dependencies = [
1426
1765
  [[package]]
1427
1766
  name = "ruff_python_semantic"
1428
1767
  version = "0.0.0"
1429
- source = "git+https://github.com/astral-sh/ruff#0724bee59c12da9cedc84f4238b08aabe9ecaaa1"
1768
+ source = "git+https://github.com/astral-sh/ruff#e6fe2af292e7be87c2917863464a5455c5b22c38"
1430
1769
  dependencies = [
1431
1770
  "bitflags",
1432
1771
  "is-macro",
@@ -1444,7 +1783,7 @@ dependencies = [
1444
1783
  [[package]]
1445
1784
  name = "ruff_python_stdlib"
1446
1785
  version = "0.0.0"
1447
- source = "git+https://github.com/astral-sh/ruff#0724bee59c12da9cedc84f4238b08aabe9ecaaa1"
1786
+ source = "git+https://github.com/astral-sh/ruff#e6fe2af292e7be87c2917863464a5455c5b22c38"
1448
1787
  dependencies = [
1449
1788
  "bitflags",
1450
1789
  "unicode-ident",
@@ -1453,7 +1792,7 @@ dependencies = [
1453
1792
  [[package]]
1454
1793
  name = "ruff_python_trivia"
1455
1794
  version = "0.0.0"
1456
- source = "git+https://github.com/astral-sh/ruff#0724bee59c12da9cedc84f4238b08aabe9ecaaa1"
1795
+ source = "git+https://github.com/astral-sh/ruff#e6fe2af292e7be87c2917863464a5455c5b22c38"
1457
1796
  dependencies = [
1458
1797
  "itertools",
1459
1798
  "ruff_source_file",
@@ -1464,16 +1803,20 @@ dependencies = [
1464
1803
  [[package]]
1465
1804
  name = "ruff_source_file"
1466
1805
  version = "0.0.0"
1467
- source = "git+https://github.com/astral-sh/ruff#0724bee59c12da9cedc84f4238b08aabe9ecaaa1"
1806
+ source = "git+https://github.com/astral-sh/ruff#e6fe2af292e7be87c2917863464a5455c5b22c38"
1468
1807
  dependencies = [
1469
1808
  "memchr",
1470
1809
  "ruff_text_size",
1810
+ "serde",
1471
1811
  ]
1472
1812
 
1473
1813
  [[package]]
1474
1814
  name = "ruff_text_size"
1475
1815
  version = "0.0.0"
1476
- source = "git+https://github.com/astral-sh/ruff#0724bee59c12da9cedc84f4238b08aabe9ecaaa1"
1816
+ source = "git+https://github.com/astral-sh/ruff#e6fe2af292e7be87c2917863464a5455c5b22c38"
1817
+ dependencies = [
1818
+ "serde",
1819
+ ]
1477
1820
 
1478
1821
  [[package]]
1479
1822
  name = "rustc-demangle"
@@ -1559,6 +1902,46 @@ version = "1.0.20"
1559
1902
  source = "registry+https://github.com/rust-lang/crates.io-index"
1560
1903
  checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1561
1904
 
1905
+ [[package]]
1906
+ name = "salsa"
1907
+ version = "0.22.0"
1908
+ source = "git+https://github.com/salsa-rs/salsa.git?rev=09627e450566f894956710a3fd923dc80462ae6d#09627e450566f894956710a3fd923dc80462ae6d"
1909
+ dependencies = [
1910
+ "boxcar",
1911
+ "compact_str",
1912
+ "crossbeam-queue",
1913
+ "crossbeam-utils",
1914
+ "hashbrown 0.15.4",
1915
+ "hashlink",
1916
+ "indexmap",
1917
+ "intrusive-collections",
1918
+ "parking_lot",
1919
+ "portable-atomic",
1920
+ "rayon",
1921
+ "rustc-hash",
1922
+ "salsa-macro-rules",
1923
+ "salsa-macros",
1924
+ "smallvec",
1925
+ "thin-vec",
1926
+ "tracing",
1927
+ ]
1928
+
1929
+ [[package]]
1930
+ name = "salsa-macro-rules"
1931
+ version = "0.22.0"
1932
+ source = "git+https://github.com/salsa-rs/salsa.git?rev=09627e450566f894956710a3fd923dc80462ae6d#09627e450566f894956710a3fd923dc80462ae6d"
1933
+
1934
+ [[package]]
1935
+ name = "salsa-macros"
1936
+ version = "0.22.0"
1937
+ source = "git+https://github.com/salsa-rs/salsa.git?rev=09627e450566f894956710a3fd923dc80462ae6d#09627e450566f894956710a3fd923dc80462ae6d"
1938
+ dependencies = [
1939
+ "proc-macro2",
1940
+ "quote",
1941
+ "syn",
1942
+ "synstructure",
1943
+ ]
1944
+
1562
1945
  [[package]]
1563
1946
  name = "schannel"
1564
1947
  version = "0.1.27"
@@ -1568,6 +1951,12 @@ dependencies = [
1568
1951
  "windows-sys 0.59.0",
1569
1952
  ]
1570
1953
 
1954
+ [[package]]
1955
+ name = "scopeguard"
1956
+ version = "1.2.0"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1959
+
1571
1960
  [[package]]
1572
1961
  name = "seahash"
1573
1962
  version = "4.1.0"
@@ -1641,6 +2030,29 @@ dependencies = [
1641
2030
  "serde",
1642
2031
  ]
1643
2032
 
2033
+ [[package]]
2034
+ name = "serde_with"
2035
+ version = "3.12.0"
2036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2037
+ checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa"
2038
+ dependencies = [
2039
+ "serde",
2040
+ "serde_derive",
2041
+ "serde_with_macros",
2042
+ ]
2043
+
2044
+ [[package]]
2045
+ name = "serde_with_macros"
2046
+ version = "3.12.0"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e"
2049
+ dependencies = [
2050
+ "darling",
2051
+ "proc-macro2",
2052
+ "quote",
2053
+ "syn",
2054
+ ]
2055
+
1644
2056
  [[package]]
1645
2057
  name = "sha1"
1646
2058
  version = "0.10.6"
@@ -1707,6 +2119,34 @@ version = "1.1.0"
1707
2119
  source = "registry+https://github.com/rust-lang/crates.io-index"
1708
2120
  checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1709
2121
 
2122
+ [[package]]
2123
+ name = "strsim"
2124
+ version = "0.11.1"
2125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2126
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2127
+
2128
+ [[package]]
2129
+ name = "strum"
2130
+ version = "0.27.1"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "f64def088c51c9510a8579e3c5d67c65349dcf755e5479ad3d010aa6454e2c32"
2133
+ dependencies = [
2134
+ "strum_macros",
2135
+ ]
2136
+
2137
+ [[package]]
2138
+ name = "strum_macros"
2139
+ version = "0.27.1"
2140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2141
+ checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8"
2142
+ dependencies = [
2143
+ "heck",
2144
+ "proc-macro2",
2145
+ "quote",
2146
+ "rustversion",
2147
+ "syn",
2148
+ ]
2149
+
1710
2150
  [[package]]
1711
2151
  name = "subtle"
1712
2152
  version = "2.6.1"
@@ -1774,6 +2214,45 @@ dependencies = [
1774
2214
  "windows-sys 0.59.0",
1775
2215
  ]
1776
2216
 
2217
+ [[package]]
2218
+ name = "test-case"
2219
+ version = "3.3.1"
2220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2221
+ checksum = "eb2550dd13afcd286853192af8601920d959b14c401fcece38071d53bf0768a8"
2222
+ dependencies = [
2223
+ "test-case-macros",
2224
+ ]
2225
+
2226
+ [[package]]
2227
+ name = "test-case-core"
2228
+ version = "3.3.1"
2229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2230
+ checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f"
2231
+ dependencies = [
2232
+ "cfg-if",
2233
+ "proc-macro2",
2234
+ "quote",
2235
+ "syn",
2236
+ ]
2237
+
2238
+ [[package]]
2239
+ name = "test-case-macros"
2240
+ version = "3.3.1"
2241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2242
+ checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb"
2243
+ dependencies = [
2244
+ "proc-macro2",
2245
+ "quote",
2246
+ "syn",
2247
+ "test-case-core",
2248
+ ]
2249
+
2250
+ [[package]]
2251
+ name = "thin-vec"
2252
+ version = "0.2.14"
2253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2254
+ checksum = "144f754d318415ac792f9d69fc87abbbfc043ce2ef041c60f16ad828f638717d"
2255
+
1777
2256
  [[package]]
1778
2257
  name = "thiserror"
1779
2258
  version = "2.0.12"
@@ -1915,9 +2394,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1915
2394
  checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
1916
2395
  dependencies = [
1917
2396
  "pin-project-lite",
2397
+ "tracing-attributes",
1918
2398
  "tracing-core",
1919
2399
  ]
1920
2400
 
2401
+ [[package]]
2402
+ name = "tracing-attributes"
2403
+ version = "0.1.29"
2404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2405
+ checksum = "1b1ffbcf9c6f6b99d386e7444eb608ba646ae452a36b39737deb9663b610f662"
2406
+ dependencies = [
2407
+ "proc-macro2",
2408
+ "quote",
2409
+ "syn",
2410
+ ]
2411
+
1921
2412
  [[package]]
1922
2413
  name = "tracing-core"
1923
2414
  version = "0.1.34"
@@ -1933,12 +2424,93 @@ version = "0.2.5"
1933
2424
  source = "registry+https://github.com/rust-lang/crates.io-index"
1934
2425
  checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1935
2426
 
2427
+ [[package]]
2428
+ name = "ty_python_semantic"
2429
+ version = "0.0.0"
2430
+ source = "git+https://github.com/astral-sh/ruff#e6fe2af292e7be87c2917863464a5455c5b22c38"
2431
+ dependencies = [
2432
+ "anyhow",
2433
+ "bitflags",
2434
+ "camino",
2435
+ "colored",
2436
+ "compact_str",
2437
+ "countme",
2438
+ "drop_bomb",
2439
+ "hashbrown 0.15.4",
2440
+ "indexmap",
2441
+ "itertools",
2442
+ "memchr",
2443
+ "ordermap",
2444
+ "ruff_annotate_snippets",
2445
+ "ruff_db",
2446
+ "ruff_index",
2447
+ "ruff_macros",
2448
+ "ruff_python_ast",
2449
+ "ruff_python_literal",
2450
+ "ruff_python_parser",
2451
+ "ruff_python_stdlib",
2452
+ "ruff_python_trivia",
2453
+ "ruff_source_file",
2454
+ "ruff_text_size",
2455
+ "rustc-hash",
2456
+ "salsa",
2457
+ "smallvec",
2458
+ "static_assertions",
2459
+ "strum",
2460
+ "strum_macros",
2461
+ "test-case",
2462
+ "thiserror",
2463
+ "tracing",
2464
+ ]
2465
+
1936
2466
  [[package]]
1937
2467
  name = "typenum"
1938
2468
  version = "1.18.0"
1939
2469
  source = "registry+https://github.com/rust-lang/crates.io-index"
1940
2470
  checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
1941
2471
 
2472
+ [[package]]
2473
+ name = "unic-char-property"
2474
+ version = "0.9.0"
2475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2476
+ checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
2477
+ dependencies = [
2478
+ "unic-char-range",
2479
+ ]
2480
+
2481
+ [[package]]
2482
+ name = "unic-char-range"
2483
+ version = "0.9.0"
2484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2485
+ checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
2486
+
2487
+ [[package]]
2488
+ name = "unic-common"
2489
+ version = "0.9.0"
2490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2491
+ checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
2492
+
2493
+ [[package]]
2494
+ name = "unic-ucd-category"
2495
+ version = "0.9.0"
2496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2497
+ checksum = "1b8d4591f5fcfe1bd4453baaf803c40e1b1e69ff8455c47620440b46efef91c0"
2498
+ dependencies = [
2499
+ "matches",
2500
+ "unic-char-property",
2501
+ "unic-char-range",
2502
+ "unic-ucd-version",
2503
+ ]
2504
+
2505
+ [[package]]
2506
+ name = "unic-ucd-version"
2507
+ version = "0.9.0"
2508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2509
+ checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
2510
+ dependencies = [
2511
+ "unic-common",
2512
+ ]
2513
+
1942
2514
  [[package]]
1943
2515
  name = "unicode-ident"
1944
2516
  version = "1.0.18"
@@ -1960,6 +2532,12 @@ version = "0.1.14"
1960
2532
  source = "registry+https://github.com/rust-lang/crates.io-index"
1961
2533
  checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
1962
2534
 
2535
+ [[package]]
2536
+ name = "unicode-width"
2537
+ version = "0.2.1"
2538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2539
+ checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
2540
+
1963
2541
  [[package]]
1964
2542
  name = "unicode_names2"
1965
2543
  version = "1.3.0"
@@ -2011,6 +2589,30 @@ version = "1.0.4"
2011
2589
  source = "registry+https://github.com/rust-lang/crates.io-index"
2012
2590
  checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2013
2591
 
2592
+ [[package]]
2593
+ name = "uuid"
2594
+ version = "1.17.0"
2595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2596
+ checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
2597
+ dependencies = [
2598
+ "getrandom 0.3.3",
2599
+ "js-sys",
2600
+ "rand 0.9.1",
2601
+ "uuid-macro-internal",
2602
+ "wasm-bindgen",
2603
+ ]
2604
+
2605
+ [[package]]
2606
+ name = "uuid-macro-internal"
2607
+ version = "1.17.0"
2608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2609
+ checksum = "26b682e8c381995ea03130e381928e0e005b7c9eb483c6c8682f50e07b33c2b7"
2610
+ dependencies = [
2611
+ "proc-macro2",
2612
+ "quote",
2613
+ "syn",
2614
+ ]
2615
+
2014
2616
  [[package]]
2015
2617
  name = "version_check"
2016
2618
  version = "0.9.5"
@@ -2375,6 +2977,17 @@ dependencies = [
2375
2977
  "syn",
2376
2978
  ]
2377
2979
 
2980
+ [[package]]
2981
+ name = "zip"
2982
+ version = "0.6.6"
2983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2984
+ checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
2985
+ dependencies = [
2986
+ "byteorder",
2987
+ "crc32fast",
2988
+ "crossbeam-utils",
2989
+ ]
2990
+
2378
2991
  [[package]]
2379
2992
  name = "zip"
2380
2993
  version = "2.4.2"