fdu 0.1.0__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 (121) hide show
  1. fdu-0.1.0/Cargo.lock +731 -0
  2. fdu-0.1.0/Cargo.toml +53 -0
  3. fdu-0.1.0/LICENSE +21 -0
  4. fdu-0.1.0/PKG-INFO +228 -0
  5. fdu-0.1.0/README.md +201 -0
  6. fdu-0.1.0/crates/fdu/Cargo.toml +102 -0
  7. fdu-0.1.0/crates/fdu/LICENSE +21 -0
  8. fdu-0.1.0/crates/fdu/README.md +90 -0
  9. fdu-0.1.0/crates/fdu/build.rs +87 -0
  10. fdu-0.1.0/crates/fdu/src/cli.rs +3785 -0
  11. fdu-0.1.0/crates/fdu/src/interrupt.rs +184 -0
  12. fdu-0.1.0/crates/fdu/src/lib.rs +28 -0
  13. fdu-0.1.0/crates/fdu/src/main.rs +16 -0
  14. fdu-0.1.0/crates/fdu/src/progress_line.rs +1068 -0
  15. fdu-0.1.0/crates/fdu/src/progress_ticker.rs +625 -0
  16. fdu-0.1.0/crates/fdu/src/skill_install.rs +340 -0
  17. fdu-0.1.0/crates/fdu/src/skills/SKILL.md +361 -0
  18. fdu-0.1.0/crates/fdu/tests/cli_color.rs +189 -0
  19. fdu-0.1.0/crates/fdu/tests/cli_exit.rs +280 -0
  20. fdu-0.1.0/crates/fdu/tests/detached_performance_invariants.rs +330 -0
  21. fdu-0.1.0/crates/fdu/tests/directory_queries.rs +83 -0
  22. fdu-0.1.0/crates/fdu/tests/scan_watermark_integration.rs +114 -0
  23. fdu-0.1.0/crates/fdu/tests/watch_controls.rs +350 -0
  24. fdu-0.1.0/crates/fdu/tests/watch_persistence.rs +311 -0
  25. fdu-0.1.0/crates/fdu-core/Cargo.toml +79 -0
  26. fdu-0.1.0/crates/fdu-core/LICENSE +21 -0
  27. fdu-0.1.0/crates/fdu-core/README.md +76 -0
  28. fdu-0.1.0/crates/fdu-core/build.rs +141 -0
  29. fdu-0.1.0/crates/fdu-core/rules/file-types.toml +354 -0
  30. fdu-0.1.0/crates/fdu-core/src/admission.rs +243 -0
  31. fdu-0.1.0/crates/fdu-core/src/cache.rs +1256 -0
  32. fdu-0.1.0/crates/fdu-core/src/classify/file_rollup_manifest.rs +791 -0
  33. fdu-0.1.0/crates/fdu-core/src/classify/file_type_detection.rs +197 -0
  34. fdu-0.1.0/crates/fdu-core/src/classify/manifest_toml.rs +415 -0
  35. fdu-0.1.0/crates/fdu-core/src/classify/type_rule_manifest.rs +404 -0
  36. fdu-0.1.0/crates/fdu-core/src/classify.rs +1821 -0
  37. fdu-0.1.0/crates/fdu-core/src/content/content_analysis.rs +1311 -0
  38. fdu-0.1.0/crates/fdu-core/src/content/content_basic_metrics.rs +325 -0
  39. fdu-0.1.0/crates/fdu-core/src/content/content_cache.rs +1633 -0
  40. fdu-0.1.0/crates/fdu-core/src/content/content_code_metrics.rs +438 -0
  41. fdu-0.1.0/crates/fdu-core/src/content/content_index.rs +845 -0
  42. fdu-0.1.0/crates/fdu-core/src/content/content_markdown_metrics.rs +216 -0
  43. fdu-0.1.0/crates/fdu-core/src/content/content_model.rs +832 -0
  44. fdu-0.1.0/crates/fdu-core/src/content.rs +31 -0
  45. fdu-0.1.0/crates/fdu-core/src/control/gitignore.rs +817 -0
  46. fdu-0.1.0/crates/fdu-core/src/control.rs +1222 -0
  47. fdu-0.1.0/crates/fdu-core/src/counters/alloc.rs +181 -0
  48. fdu-0.1.0/crates/fdu-core/src/counters/process.rs +392 -0
  49. fdu-0.1.0/crates/fdu-core/src/counters.rs +1063 -0
  50. fdu-0.1.0/crates/fdu-core/src/emit/emit_json.rs +169 -0
  51. fdu-0.1.0/crates/fdu-core/src/emit/emit_scalar.rs +336 -0
  52. fdu-0.1.0/crates/fdu-core/src/emit/emit_yaml.rs +223 -0
  53. fdu-0.1.0/crates/fdu-core/src/emit.rs +136 -0
  54. fdu-0.1.0/crates/fdu-core/src/engine_contract.rs +2160 -0
  55. fdu-0.1.0/crates/fdu-core/src/execution.rs +1943 -0
  56. fdu-0.1.0/crates/fdu-core/src/index.rs +10236 -0
  57. fdu-0.1.0/crates/fdu-core/src/lib.rs +2229 -0
  58. fdu-0.1.0/crates/fdu-core/src/opened/continuation.rs +481 -0
  59. fdu-0.1.0/crates/fdu-core/src/opened/golden_support.rs +701 -0
  60. fdu-0.1.0/crates/fdu-core/src/opened/golden_tests.rs +779 -0
  61. fdu-0.1.0/crates/fdu-core/src/opened/journal.rs +237 -0
  62. fdu-0.1.0/crates/fdu-core/src/opened/read.rs +1218 -0
  63. fdu-0.1.0/crates/fdu-core/src/opened.rs +7353 -0
  64. fdu-0.1.0/crates/fdu-core/src/platform_tuning.rs +340 -0
  65. fdu-0.1.0/crates/fdu-core/src/progress.rs +372 -0
  66. fdu-0.1.0/crates/fdu-core/src/query/query_glob.rs +544 -0
  67. fdu-0.1.0/crates/fdu-core/src/query/query_report.rs +3490 -0
  68. fdu-0.1.0/crates/fdu-core/src/query/query_request.rs +2099 -0
  69. fdu-0.1.0/crates/fdu-core/src/query/query_selection.rs +904 -0
  70. fdu-0.1.0/crates/fdu-core/src/query/query_status.rs +406 -0
  71. fdu-0.1.0/crates/fdu-core/src/query/query_subtrees.rs +162 -0
  72. fdu-0.1.0/crates/fdu-core/src/query/query_values.rs +874 -0
  73. fdu-0.1.0/crates/fdu-core/src/query.rs +40 -0
  74. fdu-0.1.0/crates/fdu-core/src/report_format.rs +4035 -0
  75. fdu-0.1.0/crates/fdu-core/src/scan/macos_bulk.rs +463 -0
  76. fdu-0.1.0/crates/fdu-core/src/scan/windows_metadata.rs +443 -0
  77. fdu-0.1.0/crates/fdu-core/src/scan.rs +10205 -0
  78. fdu-0.1.0/crates/fdu-core/src/snapshot.rs +3035 -0
  79. fdu-0.1.0/crates/fdu-core/src/stored_state.rs +976 -0
  80. fdu-0.1.0/crates/fdu-core/src/test_support.rs +76 -0
  81. fdu-0.1.0/crates/fdu-core/src/testdata/tree-schema-v2.json +69 -0
  82. fdu-0.1.0/crates/fdu-core/src/testdata/yaml-scalar-corpus.json +627 -0
  83. fdu-0.1.0/crates/fdu-core/src/testdata/yaml-scalar-corpus.yaml +125 -0
  84. fdu-0.1.0/crates/fdu-core/src/watch/scripted_events.rs +143 -0
  85. fdu-0.1.0/crates/fdu-core/src/watch.rs +2170 -0
  86. fdu-0.1.0/crates/fdu-core/src/watch_session.rs +1261 -0
  87. fdu-0.1.0/crates/fdu-core/tests/golden/opened-root/coherent-projections-and-continuations.golden +43 -0
  88. fdu-0.1.0/crates/fdu-core/tests/golden/opened-root/cold-progressive-knowledge.golden +25 -0
  89. fdu-0.1.0/crates/fdu-core/tests/golden/opened-root/exact-mutation-and-refresh.golden +45 -0
  90. fdu-0.1.0/crates/fdu-core/tests/golden/opened-root/failed-listing-and-recovery.golden +19 -0
  91. fdu-0.1.0/crates/fdu-core/tests/golden/opened-root/journal-and-observation-recovery.golden +28 -0
  92. fdu-0.1.0/crates/fdu-core/tests/golden/opened-root/ownership-races-and-shutdown.golden +25 -0
  93. fdu-0.1.0/crates/fdu-core/tests/parallel_equivalence.rs +469 -0
  94. fdu-0.1.0/crates/fdu-core/tests/partial_directory_queries.rs +176 -0
  95. fdu-0.1.0/crates/fdu-core/tests/query_allocations.rs +176 -0
  96. fdu-0.1.0/crates/fdu-core/tests/reference_model.rs +1337 -0
  97. fdu-0.1.0/crates/fdu-core/tests/state_transition_regressions.rs +169 -0
  98. fdu-0.1.0/crates/fdu-core/tests/watch_session_integration.rs +557 -0
  99. fdu-0.1.0/crates/fdu-py/Cargo.toml +52 -0
  100. fdu-0.1.0/crates/fdu-py/LICENSE +21 -0
  101. fdu-0.1.0/crates/fdu-py/README.md +201 -0
  102. fdu-0.1.0/crates/fdu-py/examples/rollup_adapter.py +53 -0
  103. fdu-0.1.0/crates/fdu-py/src/lib.rs +1473 -0
  104. fdu-0.1.0/crates/fdu-py/src/opened_binding.rs +1380 -0
  105. fdu-0.1.0/crates/fdu-py/tests/public_smoke.py +853 -0
  106. fdu-0.1.0/crates/fdu-py/tests/run_concurrency.py +59 -0
  107. fdu-0.1.0/crates/fdu-py/tests/smoke.py +846 -0
  108. fdu-0.1.0/crates/fdu-py/tests/test_directory_queries.py +216 -0
  109. fdu-0.1.0/crates/fdu-py/tests/test_models.py +737 -0
  110. fdu-0.1.0/crates/fdu-py/tests/test_readme_examples.py +61 -0
  111. fdu-0.1.0/crates/fdu-py/tests/typecheck/consumer.py +52 -0
  112. fdu-0.1.0/crates/fdu-py/tests/typecheck/pyrightconfig.json +8 -0
  113. fdu-0.1.0/crates/fdu-py/uv.lock +185 -0
  114. fdu-0.1.0/crates/fdu-py/uv.toml +9 -0
  115. fdu-0.1.0/pyproject.toml +76 -0
  116. fdu-0.1.0/python/fdu/__init__.py +188 -0
  117. fdu-0.1.0/python/fdu/_api.py +704 -0
  118. fdu-0.1.0/python/fdu/_models.py +1569 -0
  119. fdu-0.1.0/python/fdu/_native.pyi +99 -0
  120. fdu-0.1.0/python/fdu/opened.py +1521 -0
  121. fdu-0.1.0/python/fdu/py.typed +1 -0
fdu-0.1.0/Cargo.lock ADDED
@@ -0,0 +1,731 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "anstream"
7
+ version = "1.0.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
10
+ dependencies = [
11
+ "anstyle",
12
+ "anstyle-parse",
13
+ "anstyle-query",
14
+ "anstyle-wincon",
15
+ "colorchoice",
16
+ "is_terminal_polyfill",
17
+ "utf8parse",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "anstyle"
22
+ version = "1.0.14"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
25
+
26
+ [[package]]
27
+ name = "anstyle-parse"
28
+ version = "1.0.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
31
+ dependencies = [
32
+ "utf8parse",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstyle-query"
37
+ version = "1.1.5"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
40
+ dependencies = [
41
+ "windows-sys 0.61.2",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle-wincon"
46
+ version = "3.0.11"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
49
+ dependencies = [
50
+ "anstyle",
51
+ "once_cell_polyfill",
52
+ "windows-sys 0.61.2",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "anyhow"
57
+ version = "1.0.104"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
60
+
61
+ [[package]]
62
+ name = "bitflags"
63
+ version = "2.13.1"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
66
+
67
+ [[package]]
68
+ name = "block2"
69
+ version = "0.6.2"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
72
+ dependencies = [
73
+ "objc2",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "cfg-if"
78
+ version = "1.0.4"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
81
+
82
+ [[package]]
83
+ name = "cfg_aliases"
84
+ version = "0.2.2"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
87
+
88
+ [[package]]
89
+ name = "clap"
90
+ version = "4.6.4"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "d91e0c145792ef73a6ad36d27c75ac09f1832222a3c209689d90f534685ee5b7"
93
+ dependencies = [
94
+ "clap_builder",
95
+ "clap_derive",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "clap_builder"
100
+ version = "4.6.2"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
103
+ dependencies = [
104
+ "anstream",
105
+ "anstyle",
106
+ "clap_lex",
107
+ "strsim",
108
+ "terminal_size",
109
+ ]
110
+
111
+ [[package]]
112
+ name = "clap_derive"
113
+ version = "4.6.4"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
116
+ dependencies = [
117
+ "heck",
118
+ "proc-macro2",
119
+ "quote",
120
+ "syn 3.0.3",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "clap_lex"
125
+ version = "1.1.0"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
128
+
129
+ [[package]]
130
+ name = "colorchoice"
131
+ version = "1.0.5"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
134
+
135
+ [[package]]
136
+ name = "ctrlc"
137
+ version = "3.5.2"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "e0b1fab2ae45819af2d0731d60f2afe17227ebb1a1538a236da84c93e9a60162"
140
+ dependencies = [
141
+ "dispatch2",
142
+ "nix",
143
+ "windows-sys 0.61.2",
144
+ ]
145
+
146
+ [[package]]
147
+ name = "dispatch2"
148
+ version = "0.3.1"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
151
+ dependencies = [
152
+ "bitflags",
153
+ "block2",
154
+ "libc",
155
+ "objc2",
156
+ ]
157
+
158
+ [[package]]
159
+ name = "errno"
160
+ version = "0.3.14"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
163
+ dependencies = [
164
+ "libc",
165
+ "windows-sys 0.61.2",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "fastrand"
170
+ version = "2.5.0"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
173
+
174
+ [[package]]
175
+ name = "fdu"
176
+ version = "0.1.0"
177
+ dependencies = [
178
+ "anstyle-query",
179
+ "anyhow",
180
+ "clap",
181
+ "ctrlc",
182
+ "fdu-core",
183
+ "signal-hook",
184
+ "tempfile",
185
+ "terminal_size",
186
+ ]
187
+
188
+ [[package]]
189
+ name = "fdu-core"
190
+ version = "0.1.0"
191
+ dependencies = [
192
+ "anstyle",
193
+ "libc",
194
+ "notify",
195
+ "pulldown-cmark",
196
+ "tempfile",
197
+ "thiserror",
198
+ "windows-sys 0.61.2",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "fdu-py"
203
+ version = "0.1.0"
204
+ dependencies = [
205
+ "fdu",
206
+ "fdu-core",
207
+ "pyo3",
208
+ ]
209
+
210
+ [[package]]
211
+ name = "fsevent-sys"
212
+ version = "4.1.0"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
215
+ dependencies = [
216
+ "libc",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "getrandom"
221
+ version = "0.4.3"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
224
+ dependencies = [
225
+ "cfg-if",
226
+ "libc",
227
+ "r-efi",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "heck"
232
+ version = "0.5.0"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
235
+
236
+ [[package]]
237
+ name = "inotify"
238
+ version = "0.11.4"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "153be1941a183ec9ccd095ddbe17a8b8d435ef6c76e9e02451b933c3999af2c8"
241
+ dependencies = [
242
+ "bitflags",
243
+ "inotify-sys",
244
+ "libc",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "inotify-sys"
249
+ version = "0.1.8"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "c033f80b2c113cdf91ab7a33faa9cbc014726dcad99880c8609af2a370edf37d"
252
+ dependencies = [
253
+ "libc",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "is_terminal_polyfill"
258
+ version = "1.70.2"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
261
+
262
+ [[package]]
263
+ name = "kqueue"
264
+ version = "1.2.0"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "273c0752728918e0ac4976f2b275b6fefb9ecd400585dec929419f3844cd87b5"
267
+ dependencies = [
268
+ "kqueue-sys",
269
+ "libc",
270
+ ]
271
+
272
+ [[package]]
273
+ name = "kqueue-sys"
274
+ version = "1.1.2"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "07293a4e297ac234359b510362495713f75ea345d5307140414f20c69ffeb087"
277
+ dependencies = [
278
+ "bitflags",
279
+ "libc",
280
+ ]
281
+
282
+ [[package]]
283
+ name = "libc"
284
+ version = "0.2.189"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
287
+
288
+ [[package]]
289
+ name = "linux-raw-sys"
290
+ version = "0.12.1"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
293
+
294
+ [[package]]
295
+ name = "log"
296
+ version = "0.4.33"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
299
+
300
+ [[package]]
301
+ name = "memchr"
302
+ version = "2.8.3"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
305
+
306
+ [[package]]
307
+ name = "mio"
308
+ version = "1.2.2"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
311
+ dependencies = [
312
+ "libc",
313
+ "log",
314
+ "wasi",
315
+ "windows-sys 0.61.2",
316
+ ]
317
+
318
+ [[package]]
319
+ name = "nix"
320
+ version = "0.31.3"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
323
+ dependencies = [
324
+ "bitflags",
325
+ "cfg-if",
326
+ "cfg_aliases",
327
+ "libc",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "notify"
332
+ version = "8.2.0"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3"
335
+ dependencies = [
336
+ "bitflags",
337
+ "fsevent-sys",
338
+ "inotify",
339
+ "kqueue",
340
+ "libc",
341
+ "log",
342
+ "mio",
343
+ "notify-types",
344
+ "walkdir",
345
+ "windows-sys 0.60.2",
346
+ ]
347
+
348
+ [[package]]
349
+ name = "notify-types"
350
+ version = "2.1.0"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "42b8cfee0e339a0337359f3c88165702ac6e600dc01c0cc9579a92d62b08477a"
353
+ dependencies = [
354
+ "bitflags",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "objc2"
359
+ version = "0.6.4"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
362
+ dependencies = [
363
+ "objc2-encode",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "objc2-encode"
368
+ version = "4.1.0"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
371
+
372
+ [[package]]
373
+ name = "once_cell"
374
+ version = "1.21.4"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
377
+
378
+ [[package]]
379
+ name = "once_cell_polyfill"
380
+ version = "1.70.2"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
383
+
384
+ [[package]]
385
+ name = "portable-atomic"
386
+ version = "1.14.0"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
389
+
390
+ [[package]]
391
+ name = "proc-macro2"
392
+ version = "1.0.107"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
395
+ dependencies = [
396
+ "unicode-ident",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "pulldown-cmark"
401
+ version = "0.13.4"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "e9f068eba8e7071c5f9511831b44f32c740d5adf574e990f946ddb53db2f314e"
404
+ dependencies = [
405
+ "bitflags",
406
+ "memchr",
407
+ "unicase",
408
+ ]
409
+
410
+ [[package]]
411
+ name = "pyo3"
412
+ version = "0.29.0"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
415
+ dependencies = [
416
+ "libc",
417
+ "once_cell",
418
+ "portable-atomic",
419
+ "pyo3-build-config",
420
+ "pyo3-ffi",
421
+ "pyo3-macros",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "pyo3-build-config"
426
+ version = "0.29.0"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
429
+ dependencies = [
430
+ "target-lexicon",
431
+ ]
432
+
433
+ [[package]]
434
+ name = "pyo3-ffi"
435
+ version = "0.29.0"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
438
+ dependencies = [
439
+ "libc",
440
+ "pyo3-build-config",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "pyo3-macros"
445
+ version = "0.29.0"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
448
+ dependencies = [
449
+ "proc-macro2",
450
+ "pyo3-macros-backend",
451
+ "quote",
452
+ "syn 2.0.119",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "pyo3-macros-backend"
457
+ version = "0.29.0"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
460
+ dependencies = [
461
+ "heck",
462
+ "proc-macro2",
463
+ "quote",
464
+ "syn 2.0.119",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "quote"
469
+ version = "1.0.47"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
472
+ dependencies = [
473
+ "proc-macro2",
474
+ ]
475
+
476
+ [[package]]
477
+ name = "r-efi"
478
+ version = "6.0.0"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
481
+
482
+ [[package]]
483
+ name = "rustix"
484
+ version = "1.1.4"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
487
+ dependencies = [
488
+ "bitflags",
489
+ "errno",
490
+ "libc",
491
+ "linux-raw-sys",
492
+ "windows-sys 0.61.2",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "same-file"
497
+ version = "1.0.6"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
500
+ dependencies = [
501
+ "winapi-util",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "signal-hook"
506
+ version = "0.4.4"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "b2a0c28ca5908dbdbcd52e6fdaa00358ab88637f8ab33e1f188dd510eb44b53d"
509
+ dependencies = [
510
+ "libc",
511
+ "signal-hook-registry",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "signal-hook-registry"
516
+ version = "1.4.8"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
519
+ dependencies = [
520
+ "errno",
521
+ "libc",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "strsim"
526
+ version = "0.11.1"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
529
+
530
+ [[package]]
531
+ name = "syn"
532
+ version = "2.0.119"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
535
+ dependencies = [
536
+ "proc-macro2",
537
+ "quote",
538
+ "unicode-ident",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "syn"
543
+ version = "3.0.3"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
546
+ dependencies = [
547
+ "proc-macro2",
548
+ "quote",
549
+ "unicode-ident",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "target-lexicon"
554
+ version = "0.13.5"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
557
+
558
+ [[package]]
559
+ name = "tempfile"
560
+ version = "3.27.0"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
563
+ dependencies = [
564
+ "fastrand",
565
+ "getrandom",
566
+ "once_cell",
567
+ "rustix",
568
+ "windows-sys 0.61.2",
569
+ ]
570
+
571
+ [[package]]
572
+ name = "terminal_size"
573
+ version = "0.4.4"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874"
576
+ dependencies = [
577
+ "rustix",
578
+ "windows-sys 0.61.2",
579
+ ]
580
+
581
+ [[package]]
582
+ name = "thiserror"
583
+ version = "2.0.19"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
586
+ dependencies = [
587
+ "thiserror-impl",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "thiserror-impl"
592
+ version = "2.0.19"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
595
+ dependencies = [
596
+ "proc-macro2",
597
+ "quote",
598
+ "syn 3.0.3",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "unicase"
603
+ version = "2.9.0"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
606
+
607
+ [[package]]
608
+ name = "unicode-ident"
609
+ version = "1.0.24"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
612
+
613
+ [[package]]
614
+ name = "utf8parse"
615
+ version = "0.2.2"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
618
+
619
+ [[package]]
620
+ name = "walkdir"
621
+ version = "2.5.0"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
624
+ dependencies = [
625
+ "same-file",
626
+ "winapi-util",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "wasi"
631
+ version = "0.11.1+wasi-snapshot-preview1"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
634
+
635
+ [[package]]
636
+ name = "winapi-util"
637
+ version = "0.1.11"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
640
+ dependencies = [
641
+ "windows-sys 0.61.2",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "windows-link"
646
+ version = "0.2.1"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
649
+
650
+ [[package]]
651
+ name = "windows-sys"
652
+ version = "0.60.2"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
655
+ dependencies = [
656
+ "windows-targets",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "windows-sys"
661
+ version = "0.61.2"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
664
+ dependencies = [
665
+ "windows-link",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "windows-targets"
670
+ version = "0.53.5"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
673
+ dependencies = [
674
+ "windows-link",
675
+ "windows_aarch64_gnullvm",
676
+ "windows_aarch64_msvc",
677
+ "windows_i686_gnu",
678
+ "windows_i686_gnullvm",
679
+ "windows_i686_msvc",
680
+ "windows_x86_64_gnu",
681
+ "windows_x86_64_gnullvm",
682
+ "windows_x86_64_msvc",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "windows_aarch64_gnullvm"
687
+ version = "0.53.1"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
690
+
691
+ [[package]]
692
+ name = "windows_aarch64_msvc"
693
+ version = "0.53.1"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
696
+
697
+ [[package]]
698
+ name = "windows_i686_gnu"
699
+ version = "0.53.1"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
702
+
703
+ [[package]]
704
+ name = "windows_i686_gnullvm"
705
+ version = "0.53.1"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
708
+
709
+ [[package]]
710
+ name = "windows_i686_msvc"
711
+ version = "0.53.1"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
714
+
715
+ [[package]]
716
+ name = "windows_x86_64_gnu"
717
+ version = "0.53.1"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
720
+
721
+ [[package]]
722
+ name = "windows_x86_64_gnullvm"
723
+ version = "0.53.1"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
726
+
727
+ [[package]]
728
+ name = "windows_x86_64_msvc"
729
+ version = "0.53.1"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"