pulci 0.0.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.
- pulci-0.0.1/Cargo.lock +616 -0
- pulci-0.0.1/Cargo.toml +25 -0
- pulci-0.0.1/LICENSE +201 -0
- pulci-0.0.1/PKG-INFO +178 -0
- pulci-0.0.1/README.md +153 -0
- pulci-0.0.1/crates/pulci-core/Cargo.toml +17 -0
- pulci-0.0.1/crates/pulci-core/src/cache.rs +142 -0
- pulci-0.0.1/crates/pulci-core/src/config.rs +102 -0
- pulci-0.0.1/crates/pulci-core/src/hooks/mod.rs +41 -0
- pulci-0.0.1/crates/pulci-core/src/hooks/pytest.rs +151 -0
- pulci-0.0.1/crates/pulci-core/src/hooks/ruff.rs +104 -0
- pulci-0.0.1/crates/pulci-core/src/hooks/ty.rs +165 -0
- pulci-0.0.1/crates/pulci-core/src/lib.rs +36 -0
- pulci-0.0.1/crates/pulci-core/src/orchestrator.rs +143 -0
- pulci-0.0.1/crates/pulci-core/src/state.rs +237 -0
- pulci-0.0.1/crates/pulci-core/src/watcher.rs +113 -0
- pulci-0.0.1/crates/pulci-py/Cargo.toml +20 -0
- pulci-0.0.1/crates/pulci-py/src/lib.rs +176 -0
- pulci-0.0.1/pyproject.toml +62 -0
- pulci-0.0.1/python/pulci/__init__.py +7 -0
- pulci-0.0.1/python/pulci/cli.py +143 -0
- pulci-0.0.1/python/pulci/py.typed +0 -0
pulci-0.0.1/Cargo.lock
ADDED
|
@@ -0,0 +1,616 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "anyhow"
|
|
7
|
+
version = "1.0.102"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "autocfg"
|
|
13
|
+
version = "1.5.0"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "bitflags"
|
|
19
|
+
version = "1.3.2"
|
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "bitflags"
|
|
25
|
+
version = "2.11.1"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "bytes"
|
|
31
|
+
version = "1.11.1"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "cfg-if"
|
|
37
|
+
version = "1.0.4"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "crossbeam-channel"
|
|
43
|
+
version = "0.5.15"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"crossbeam-utils",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "crossbeam-utils"
|
|
52
|
+
version = "0.8.21"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "equivalent"
|
|
58
|
+
version = "1.0.2"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "filetime"
|
|
64
|
+
version = "0.2.29"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
|
|
67
|
+
dependencies = [
|
|
68
|
+
"cfg-if",
|
|
69
|
+
"libc",
|
|
70
|
+
]
|
|
71
|
+
|
|
72
|
+
[[package]]
|
|
73
|
+
name = "fsevent-sys"
|
|
74
|
+
version = "4.1.0"
|
|
75
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
76
|
+
checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
|
|
77
|
+
dependencies = [
|
|
78
|
+
"libc",
|
|
79
|
+
]
|
|
80
|
+
|
|
81
|
+
[[package]]
|
|
82
|
+
name = "hashbrown"
|
|
83
|
+
version = "0.17.1"
|
|
84
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
85
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "heck"
|
|
89
|
+
version = "0.5.0"
|
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
92
|
+
|
|
93
|
+
[[package]]
|
|
94
|
+
name = "indexmap"
|
|
95
|
+
version = "2.14.0"
|
|
96
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
98
|
+
dependencies = [
|
|
99
|
+
"equivalent",
|
|
100
|
+
"hashbrown",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "indoc"
|
|
105
|
+
version = "2.0.7"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
108
|
+
dependencies = [
|
|
109
|
+
"rustversion",
|
|
110
|
+
]
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "inotify"
|
|
114
|
+
version = "0.9.6"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff"
|
|
117
|
+
dependencies = [
|
|
118
|
+
"bitflags 1.3.2",
|
|
119
|
+
"inotify-sys",
|
|
120
|
+
"libc",
|
|
121
|
+
]
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "inotify-sys"
|
|
125
|
+
version = "0.1.5"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
|
|
128
|
+
dependencies = [
|
|
129
|
+
"libc",
|
|
130
|
+
]
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "itoa"
|
|
134
|
+
version = "1.0.18"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "kqueue"
|
|
140
|
+
version = "1.1.1"
|
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
+
checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
|
|
143
|
+
dependencies = [
|
|
144
|
+
"kqueue-sys",
|
|
145
|
+
"libc",
|
|
146
|
+
]
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "kqueue-sys"
|
|
150
|
+
version = "1.1.2"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "07293a4e297ac234359b510362495713f75ea345d5307140414f20c69ffeb087"
|
|
153
|
+
dependencies = [
|
|
154
|
+
"bitflags 2.11.1",
|
|
155
|
+
"libc",
|
|
156
|
+
]
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "libc"
|
|
160
|
+
version = "0.2.186"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "log"
|
|
166
|
+
version = "0.4.29"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
169
|
+
|
|
170
|
+
[[package]]
|
|
171
|
+
name = "memchr"
|
|
172
|
+
version = "2.8.0"
|
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "memoffset"
|
|
178
|
+
version = "0.9.1"
|
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
181
|
+
dependencies = [
|
|
182
|
+
"autocfg",
|
|
183
|
+
]
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "mio"
|
|
187
|
+
version = "0.8.11"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
|
|
190
|
+
dependencies = [
|
|
191
|
+
"libc",
|
|
192
|
+
"log",
|
|
193
|
+
"wasi",
|
|
194
|
+
"windows-sys 0.48.0",
|
|
195
|
+
]
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "notify"
|
|
199
|
+
version = "6.1.1"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d"
|
|
202
|
+
dependencies = [
|
|
203
|
+
"bitflags 2.11.1",
|
|
204
|
+
"crossbeam-channel",
|
|
205
|
+
"filetime",
|
|
206
|
+
"fsevent-sys",
|
|
207
|
+
"inotify",
|
|
208
|
+
"kqueue",
|
|
209
|
+
"libc",
|
|
210
|
+
"log",
|
|
211
|
+
"mio",
|
|
212
|
+
"walkdir",
|
|
213
|
+
"windows-sys 0.48.0",
|
|
214
|
+
]
|
|
215
|
+
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "once_cell"
|
|
218
|
+
version = "1.21.4"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "pin-project-lite"
|
|
224
|
+
version = "0.2.17"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "portable-atomic"
|
|
230
|
+
version = "1.13.1"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "proc-macro2"
|
|
236
|
+
version = "1.0.106"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
239
|
+
dependencies = [
|
|
240
|
+
"unicode-ident",
|
|
241
|
+
]
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "pulci-core"
|
|
245
|
+
version = "0.0.1"
|
|
246
|
+
dependencies = [
|
|
247
|
+
"anyhow",
|
|
248
|
+
"notify",
|
|
249
|
+
"serde",
|
|
250
|
+
"serde_json",
|
|
251
|
+
"tokio",
|
|
252
|
+
"toml",
|
|
253
|
+
]
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "pulci-py"
|
|
257
|
+
version = "0.0.1"
|
|
258
|
+
dependencies = [
|
|
259
|
+
"pulci-core",
|
|
260
|
+
"pyo3",
|
|
261
|
+
"serde",
|
|
262
|
+
"serde_json",
|
|
263
|
+
"tokio",
|
|
264
|
+
]
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "pyo3"
|
|
268
|
+
version = "0.22.6"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
|
|
271
|
+
dependencies = [
|
|
272
|
+
"cfg-if",
|
|
273
|
+
"indoc",
|
|
274
|
+
"libc",
|
|
275
|
+
"memoffset",
|
|
276
|
+
"once_cell",
|
|
277
|
+
"portable-atomic",
|
|
278
|
+
"pyo3-build-config",
|
|
279
|
+
"pyo3-ffi",
|
|
280
|
+
"pyo3-macros",
|
|
281
|
+
"unindent",
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "pyo3-build-config"
|
|
286
|
+
version = "0.22.6"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"once_cell",
|
|
291
|
+
"target-lexicon",
|
|
292
|
+
]
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "pyo3-ffi"
|
|
296
|
+
version = "0.22.6"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
|
|
299
|
+
dependencies = [
|
|
300
|
+
"libc",
|
|
301
|
+
"pyo3-build-config",
|
|
302
|
+
]
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "pyo3-macros"
|
|
306
|
+
version = "0.22.6"
|
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
+
checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
|
|
309
|
+
dependencies = [
|
|
310
|
+
"proc-macro2",
|
|
311
|
+
"pyo3-macros-backend",
|
|
312
|
+
"quote",
|
|
313
|
+
"syn",
|
|
314
|
+
]
|
|
315
|
+
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "pyo3-macros-backend"
|
|
318
|
+
version = "0.22.6"
|
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
+
checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
|
|
321
|
+
dependencies = [
|
|
322
|
+
"heck",
|
|
323
|
+
"proc-macro2",
|
|
324
|
+
"pyo3-build-config",
|
|
325
|
+
"quote",
|
|
326
|
+
"syn",
|
|
327
|
+
]
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "quote"
|
|
331
|
+
version = "1.0.45"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"proc-macro2",
|
|
336
|
+
]
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "rustversion"
|
|
340
|
+
version = "1.0.22"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "same-file"
|
|
346
|
+
version = "1.0.6"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"winapi-util",
|
|
351
|
+
]
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "serde"
|
|
355
|
+
version = "1.0.228"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
358
|
+
dependencies = [
|
|
359
|
+
"serde_core",
|
|
360
|
+
"serde_derive",
|
|
361
|
+
]
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "serde_core"
|
|
365
|
+
version = "1.0.228"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
368
|
+
dependencies = [
|
|
369
|
+
"serde_derive",
|
|
370
|
+
]
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "serde_derive"
|
|
374
|
+
version = "1.0.228"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
377
|
+
dependencies = [
|
|
378
|
+
"proc-macro2",
|
|
379
|
+
"quote",
|
|
380
|
+
"syn",
|
|
381
|
+
]
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "serde_json"
|
|
385
|
+
version = "1.0.149"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
388
|
+
dependencies = [
|
|
389
|
+
"itoa",
|
|
390
|
+
"memchr",
|
|
391
|
+
"serde",
|
|
392
|
+
"serde_core",
|
|
393
|
+
"zmij",
|
|
394
|
+
]
|
|
395
|
+
|
|
396
|
+
[[package]]
|
|
397
|
+
name = "serde_spanned"
|
|
398
|
+
version = "0.6.9"
|
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
401
|
+
dependencies = [
|
|
402
|
+
"serde",
|
|
403
|
+
]
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "syn"
|
|
407
|
+
version = "2.0.117"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
410
|
+
dependencies = [
|
|
411
|
+
"proc-macro2",
|
|
412
|
+
"quote",
|
|
413
|
+
"unicode-ident",
|
|
414
|
+
]
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "target-lexicon"
|
|
418
|
+
version = "0.12.16"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "tokio"
|
|
424
|
+
version = "1.52.3"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
427
|
+
dependencies = [
|
|
428
|
+
"bytes",
|
|
429
|
+
"pin-project-lite",
|
|
430
|
+
"tokio-macros",
|
|
431
|
+
]
|
|
432
|
+
|
|
433
|
+
[[package]]
|
|
434
|
+
name = "tokio-macros"
|
|
435
|
+
version = "2.7.0"
|
|
436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
438
|
+
dependencies = [
|
|
439
|
+
"proc-macro2",
|
|
440
|
+
"quote",
|
|
441
|
+
"syn",
|
|
442
|
+
]
|
|
443
|
+
|
|
444
|
+
[[package]]
|
|
445
|
+
name = "toml"
|
|
446
|
+
version = "0.8.23"
|
|
447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
448
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
449
|
+
dependencies = [
|
|
450
|
+
"serde",
|
|
451
|
+
"serde_spanned",
|
|
452
|
+
"toml_datetime",
|
|
453
|
+
"toml_edit",
|
|
454
|
+
]
|
|
455
|
+
|
|
456
|
+
[[package]]
|
|
457
|
+
name = "toml_datetime"
|
|
458
|
+
version = "0.6.11"
|
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
461
|
+
dependencies = [
|
|
462
|
+
"serde",
|
|
463
|
+
]
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "toml_edit"
|
|
467
|
+
version = "0.22.27"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
470
|
+
dependencies = [
|
|
471
|
+
"indexmap",
|
|
472
|
+
"serde",
|
|
473
|
+
"serde_spanned",
|
|
474
|
+
"toml_datetime",
|
|
475
|
+
"toml_write",
|
|
476
|
+
"winnow",
|
|
477
|
+
]
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "toml_write"
|
|
481
|
+
version = "0.1.2"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
484
|
+
|
|
485
|
+
[[package]]
|
|
486
|
+
name = "unicode-ident"
|
|
487
|
+
version = "1.0.24"
|
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "unindent"
|
|
493
|
+
version = "0.2.4"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "walkdir"
|
|
499
|
+
version = "2.5.0"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
502
|
+
dependencies = [
|
|
503
|
+
"same-file",
|
|
504
|
+
"winapi-util",
|
|
505
|
+
]
|
|
506
|
+
|
|
507
|
+
[[package]]
|
|
508
|
+
name = "wasi"
|
|
509
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
512
|
+
|
|
513
|
+
[[package]]
|
|
514
|
+
name = "winapi-util"
|
|
515
|
+
version = "0.1.11"
|
|
516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
518
|
+
dependencies = [
|
|
519
|
+
"windows-sys 0.61.2",
|
|
520
|
+
]
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "windows-link"
|
|
524
|
+
version = "0.2.1"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "windows-sys"
|
|
530
|
+
version = "0.48.0"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
533
|
+
dependencies = [
|
|
534
|
+
"windows-targets",
|
|
535
|
+
]
|
|
536
|
+
|
|
537
|
+
[[package]]
|
|
538
|
+
name = "windows-sys"
|
|
539
|
+
version = "0.61.2"
|
|
540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
542
|
+
dependencies = [
|
|
543
|
+
"windows-link",
|
|
544
|
+
]
|
|
545
|
+
|
|
546
|
+
[[package]]
|
|
547
|
+
name = "windows-targets"
|
|
548
|
+
version = "0.48.5"
|
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
551
|
+
dependencies = [
|
|
552
|
+
"windows_aarch64_gnullvm",
|
|
553
|
+
"windows_aarch64_msvc",
|
|
554
|
+
"windows_i686_gnu",
|
|
555
|
+
"windows_i686_msvc",
|
|
556
|
+
"windows_x86_64_gnu",
|
|
557
|
+
"windows_x86_64_gnullvm",
|
|
558
|
+
"windows_x86_64_msvc",
|
|
559
|
+
]
|
|
560
|
+
|
|
561
|
+
[[package]]
|
|
562
|
+
name = "windows_aarch64_gnullvm"
|
|
563
|
+
version = "0.48.5"
|
|
564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
566
|
+
|
|
567
|
+
[[package]]
|
|
568
|
+
name = "windows_aarch64_msvc"
|
|
569
|
+
version = "0.48.5"
|
|
570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
572
|
+
|
|
573
|
+
[[package]]
|
|
574
|
+
name = "windows_i686_gnu"
|
|
575
|
+
version = "0.48.5"
|
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "windows_i686_msvc"
|
|
581
|
+
version = "0.48.5"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "windows_x86_64_gnu"
|
|
587
|
+
version = "0.48.5"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "windows_x86_64_gnullvm"
|
|
593
|
+
version = "0.48.5"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "windows_x86_64_msvc"
|
|
599
|
+
version = "0.48.5"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "winnow"
|
|
605
|
+
version = "0.7.15"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
608
|
+
dependencies = [
|
|
609
|
+
"memchr",
|
|
610
|
+
]
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "zmij"
|
|
614
|
+
version = "1.0.21"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
pulci-0.0.1/Cargo.toml
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[workspace]
|
|
2
|
+
members = ["crates/pulci-core", "crates/pulci-py"]
|
|
3
|
+
resolver = "2"
|
|
4
|
+
|
|
5
|
+
[workspace.package]
|
|
6
|
+
version = "0.0.1"
|
|
7
|
+
edition = "2021"
|
|
8
|
+
license = "Apache-2.0"
|
|
9
|
+
authors = ["Grego Casparri <gregocasparri@gmail.com>"]
|
|
10
|
+
repository = "https://github.com/grego-casparri/pulci"
|
|
11
|
+
homepage = "https://github.com/grego-casparri/pulci"
|
|
12
|
+
description = "Continuous quality gate daemon for agent-driven Python development."
|
|
13
|
+
|
|
14
|
+
[workspace.dependencies]
|
|
15
|
+
notify = "6"
|
|
16
|
+
toml = "0.8"
|
|
17
|
+
serde = { version = "1", features = ["derive"] }
|
|
18
|
+
serde_json = "1"
|
|
19
|
+
anyhow = "1"
|
|
20
|
+
tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs", "io-util", "sync", "time"] }
|
|
21
|
+
|
|
22
|
+
[profile.release]
|
|
23
|
+
lto = "thin"
|
|
24
|
+
codegen-units = 1
|
|
25
|
+
strip = true
|