rust-crate-pipeline 1.1.1__py3-none-any.whl → 1.2.1__py3-none-any.whl

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.
@@ -0,0 +1,573 @@
1
+ Metadata-Version: 2.4
2
+ Name: rust-crate-pipeline
3
+ Version: 1.2.1
4
+ Summary: A comprehensive system for gathering, enriching, and analyzing metadata for Rust crates using AI-powered insights
5
+ Home-page: https://github.com/DaveTmire85/SigilDERG-Data_Production
6
+ Author: SuperUser666-Sigil
7
+ Author-email: SuperUser666-Sigil <miragemodularframework@gmail.com>
8
+ License-Expression: MIT
9
+ Project-URL: Homepage, https://github.com/DaveTmire85/SigilDERG-Data_Production
10
+ Project-URL: Documentation, https://github.com/DaveTmire85/SigilDERG-Data_Production#readme
11
+ Project-URL: Repository, https://github.com/DaveTmire85/SigilDERG-Data_Production
12
+ Project-URL: Bug Tracker, https://github.com/DaveTmire85/SigilDERG-Data_Production/issues
13
+ Keywords: rust,crates,metadata,ai,analysis,pipeline,dependencies
14
+ Classifier: Development Status :: 4 - Beta
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.8
19
+ Classifier: Programming Language :: Python :: 3.9
20
+ Classifier: Programming Language :: Python :: 3.10
21
+ Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
23
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
24
+ Classifier: Topic :: Software Development :: Build Tools
25
+ Classifier: Topic :: Software Development :: Quality Assurance
26
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
27
+ Requires-Python: >=3.8
28
+ Description-Content-Type: text/markdown
29
+ License-File: LICENSE
30
+ Requires-Dist: requests>=2.28.0
31
+ Requires-Dist: requests-cache>=1.0.0
32
+ Requires-Dist: beautifulsoup4>=4.11.0
33
+ Requires-Dist: tqdm>=4.64.0
34
+ Requires-Dist: llama-cpp-python>=0.2.0
35
+ Requires-Dist: tiktoken>=0.5.0
36
+ Requires-Dist: psutil>=5.9.0
37
+ Requires-Dist: python-dateutil>=2.8.0
38
+ Provides-Extra: dev
39
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
40
+ Requires-Dist: black>=22.0.0; extra == "dev"
41
+ Requires-Dist: isort>=5.10.0; extra == "dev"
42
+ Provides-Extra: advanced
43
+ Requires-Dist: radon>=6.0.0; extra == "advanced"
44
+ Requires-Dist: rustworkx>=0.13.0; extra == "advanced"
45
+ Dynamic: author
46
+ Dynamic: home-page
47
+ Dynamic: license-file
48
+ Dynamic: requires-python
49
+
50
+ # Rust Crate Pipeline
51
+
52
+ [![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
53
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
54
+ [![PyPI Ready](https://img.shields.io/badge/PyPI-Ready-green.svg)](https://pypi.org/)
55
+ [![Docker Ready](https://img.shields.io/badge/Docker-Ready-blue.svg)](https://docker.com/)
56
+
57
+ A production-ready pipeline for comprehensive Rust crate analysis, featuring AI-powered insights, dependency mapping, and automated data enrichment. Designed for researchers, developers, and data scientists studying the Rust ecosystem.
58
+
59
+ ## 🚀 Quick Start
60
+
61
+ ### 1. Installation
62
+
63
+ #### From PyPI (Recommended)
64
+ ```bash
65
+ pip install rust-crate-pipeline
66
+ ```
67
+
68
+ #### From Source
69
+ ```bash
70
+ git clone https://github.com/DaveTmire85/SigilDERG-Data_Production.git
71
+ cd SigilDERG-Data_Production
72
+ pip install -e .
73
+ ```
74
+
75
+ #### Development Installation
76
+ ```bash
77
+ git clone https://github.com/DaveTmire85/SigilDERG-Data_Production.git
78
+ cd SigilDERG-Data_Production
79
+ pip install -e ".[dev]"
80
+ ```
81
+
82
+ ### 2. GitHub Token Setup
83
+
84
+ The pipeline requires a GitHub Personal Access Token for optimal performance:
85
+
86
+ ```bash
87
+ # Interactive setup (Linux/Unix)
88
+ chmod +x setup_github_token.sh
89
+ ./setup_github_token.sh
90
+
91
+ # Manual setup
92
+ export GITHUB_TOKEN="your_token_here"
93
+ echo 'export GITHUB_TOKEN="your_token_here"' >> ~/.bashrc
94
+
95
+ # Verify setup
96
+ python3 check_github_token.py
97
+ ```
98
+
99
+ **Get your token at**: [GitHub Settings](https://github.com/settings/tokens)
100
+ **Required scopes**: `public_repo`, `read:user`
101
+
102
+ ### 3. Basic Usage
103
+
104
+ ```bash
105
+ # Standard mode
106
+ python3 -m rust_crate_pipeline
107
+
108
+ # Production mode (reduced warnings, optimized settings)
109
+ python3 run_production.py
110
+
111
+ # Process only 20 crates for testing
112
+ python3 -m rust_crate_pipeline --limit 20
113
+
114
+ # Skip AI processing for faster metadata-only collection
115
+ python3 -m rust_crate_pipeline --skip-ai --limit 50
116
+ ```
117
+
118
+ ### 4. Advanced Usage
119
+
120
+ ```bash
121
+ # Custom configuration
122
+ python3 -m rust_crate_pipeline \
123
+ --limit 100 \
124
+ --batch-size 5 \
125
+ --workers 2 \
126
+ --log-level DEBUG \
127
+ --output-dir ./results
128
+
129
+ # Process specific crates
130
+ python3 -m rust_crate_pipeline \
131
+ --crate-list serde tokio actix-web reqwest \
132
+ --output-dir ./specific_crates
133
+
134
+ # Use custom model and config
135
+ python3 -m rust_crate_pipeline \
136
+ --model-path ./my-model.gguf \
137
+ --config-file ./custom_config.json
138
+ ```
139
+
140
+ ## 🎯 Features
141
+
142
+ ### 📊 Data Collection & Analysis
143
+
144
+ - **Multi-source metadata**: crates.io, GitHub, lib.rs integration
145
+ - **Dependency mapping**: Complete dependency graphs and analysis
146
+ - **Code extraction**: Automatic Rust code example extraction
147
+ - **Security scanning**: Vulnerability and security pattern analysis
148
+ - **Performance metrics**: Lines of code, complexity, API surface analysis
149
+
150
+ ### 🤖 AI-Powered Enrichment
151
+
152
+ - **Smart categorization**: Automatic crate classification (Web, ML, Database, etc.)
153
+ - **Feature summarization**: AI-generated explanations and insights
154
+ - **Content optimization**: Intelligent README section preservation
155
+ - **Factual pairs**: Training data generation for fact verification
156
+
157
+ ### ⚡ Production Features
158
+
159
+ - **Automatic GitHub token detection**: Seamless setup and validation
160
+ - **Smart rate limiting**: Respects GitHub API limits with intelligent backoff
161
+ - **Robust error handling**: Graceful degradation and comprehensive logging
162
+ - **Progress checkpointing**: Automatic saving for long-running processes
163
+ - **Docker ready**: Full container support with optimized configurations
164
+
165
+ ## 💻 System Requirements
166
+
167
+ ### Minimum Requirements
168
+
169
+ - **Python**: 3.8+
170
+ - **Memory**: 4GB RAM
171
+ - **Storage**: 2GB free space
172
+ - **Network**: Stable internet connection
173
+
174
+ ### Recommended Setup
175
+
176
+ - **Python**: 3.10+
177
+ - **Memory**: 8GB+ RAM
178
+ - **Storage**: 10GB+ free space (SSD preferred)
179
+ - **GitHub Token**: For enhanced API access (5000 vs 60 requests/hour)
180
+
181
+ ### Dependencies
182
+
183
+ Core dependencies are automatically installed:
184
+
185
+ ```bash
186
+ requests>=2.28.0
187
+ requests-cache>=0.9.0
188
+ beautifulsoup4>=4.11.0
189
+ tqdm>=4.64.0
190
+ llama-cpp-python>=0.2.0
191
+ tiktoken>=0.4.0
192
+ psutil>=5.9.0
193
+ python-dateutil>=2.8.0
194
+ ```
195
+
196
+ ## ⚙️ Configuration & Usage
197
+
198
+ ### Command Line Options
199
+
200
+ | Argument | Type | Default | Description |
201
+ |----------|------|---------|-------------|
202
+ | `--limit` | int | None | Limit number of crates to process |
203
+ | `--batch-size` | int | 10 | Crates processed per batch |
204
+ | `--workers` | int | 4 | Parallel workers for API requests |
205
+ | `--output-dir` | str | auto | Custom output directory |
206
+ | `--model-path` | str | default | Path to LLM model file |
207
+ | `--max-tokens` | int | 256 | Maximum tokens for LLM generation |
208
+ | `--checkpoint-interval` | int | 10 | Save progress every N crates |
209
+ | `--log-level` | str | INFO | Logging verbosity |
210
+ | `--skip-ai` | flag | False | Skip AI enrichment |
211
+ | `--skip-source-analysis` | flag | False | Skip source code analysis |
212
+ | `--crate-list` | list | None | Specific crates to process |
213
+ | `--config-file` | str | None | JSON configuration file |
214
+
215
+ ### Production Mode
216
+
217
+ Production mode provides optimized settings with reduced warnings:
218
+
219
+ ```bash
220
+ # Using production launcher
221
+ python3 run_production.py [OPTIONS]
222
+
223
+ # Using environment variable
224
+ PRODUCTION=true python3 -m rust_crate_pipeline
225
+
226
+ # Docker production mode
227
+ docker run -e PRODUCTION=true -e GITHUB_TOKEN="token" your-image
228
+ ```
229
+
230
+ **Production optimizations:**
231
+
232
+ - Reduced retry attempts (3→2) to minimize warnings
233
+ - Smart GitHub API rate limiting with proactive pausing
234
+ - Enhanced logging with appropriate levels
235
+ - Optimized timeout and backoff strategies
236
+
237
+ ### Configuration Files
238
+
239
+ Create a JSON configuration file for custom settings:
240
+
241
+ ```json
242
+ {
243
+ "max_retries": 2,
244
+ "batch_size": 10,
245
+ "github_min_remaining": 500,
246
+ "cache_ttl": 7200,
247
+ "model_path": "~/models/your-model.gguf"
248
+ }
249
+ ```
250
+
251
+ Use with: `python3 -m rust_crate_pipeline --config-file config.json`
252
+
253
+ ## 🐳 Docker Deployment
254
+
255
+ ### Using Docker Compose (Recommended)
256
+
257
+ ```bash
258
+ # Set up environment
259
+ echo "GITHUB_TOKEN=your_token_here" > .env
260
+
261
+ # Run with compose
262
+ docker-compose up -d
263
+
264
+ # Monitor logs
265
+ docker-compose logs -f
266
+ ```
267
+
268
+ ### Manual Docker Commands
269
+
270
+ ```bash
271
+ # Build image
272
+ docker build -t rust-crate-pipeline .
273
+
274
+ # Run container
275
+ docker run -e GITHUB_TOKEN="your_token" \
276
+ -e PRODUCTION=true \
277
+ -v $(pwd)/output:/app/output \
278
+ rust-crate-pipeline
279
+
280
+ # Background execution
281
+ docker run -d --name pipeline \
282
+ -e GITHUB_TOKEN="your_token" \
283
+ rust-crate-pipeline
284
+ ```
285
+
286
+ ### Docker Environment Variables
287
+
288
+ | Variable | Description | Default |
289
+ |----------|-------------|---------|
290
+ | `GITHUB_TOKEN` | GitHub Personal Access Token | Required |
291
+ | `PRODUCTION` | Enable production mode | `false` |
292
+ | `PYTHONUNBUFFERED` | Force unbuffered output | `1` |
293
+
294
+ ## 📊 Output & Data Format
295
+
296
+ ### Output Structure
297
+
298
+ ```
299
+ output/
300
+ ├── enriched_crates_YYYYMMDD_HHMMSS.json # Main results
301
+ ├── metadata_YYYYMMDD_HHMMSS.json # Raw metadata
302
+ ├── errors_YYYYMMDD_HHMMSS.log # Error log
303
+ └── checkpoints/
304
+ └── checkpoint_N.json # Progress saves
305
+ ```
306
+
307
+ ### Data Schema
308
+
309
+ Each processed crate includes:
310
+
311
+ ```json
312
+ {
313
+ "name": "serde",
314
+ "version": "1.0.193",
315
+ "description": "A generic serialization/deserialization framework",
316
+ "repository": "https://github.com/serde-rs/serde",
317
+ "downloads": 50000000,
318
+ "github_stars": 8500,
319
+ "category": "Serialization",
320
+ "use_case": "Data serialization and deserialization",
321
+ "feature_summary": "Compile-time serialization framework...",
322
+ "dependencies": [...],
323
+ "security_analysis": {...},
324
+ "source_metrics": {...}
325
+ }
326
+ ```
327
+
328
+ ## 🔍 Monitoring & Troubleshooting
329
+
330
+ ### Common Issues & Solutions
331
+
332
+ #### GitHub Token Problems
333
+
334
+ ```bash
335
+ # Check token status
336
+ python3 check_github_token.py
337
+
338
+ # Common error: Rate limit warnings
339
+ [WARNING] GitHub API rate limit low: 60 remaining
340
+ # Solution: Set GITHUB_TOKEN environment variable
341
+
342
+ # Common error: Invalid token
343
+ [ERROR] GitHub token is invalid or expired
344
+ # Solution: Generate new token at https://github.com/settings/tokens
345
+ ```
346
+
347
+ #### LLM Validation Retries
348
+
349
+ ```bash
350
+ # Common warning: Validation failures
351
+ [WARNING] Validation failed on attempt 1/3. Retrying...
352
+ # Solution: Use production mode to reduce retry warnings
353
+ PRODUCTION=true python3 -m rust_crate_pipeline
354
+ ```
355
+
356
+ #### Resource Issues
357
+
358
+ ```bash
359
+ # Memory usage optimization
360
+ python3 -m rust_crate_pipeline --batch-size 3
361
+
362
+ # Disk space monitoring
363
+ df -h . # Check available space
364
+
365
+ # Network timeout handling
366
+ python3 -m rust_crate_pipeline --log-level DEBUG
367
+ ```
368
+
369
+ ### Performance Monitoring
370
+
371
+ #### Processing Times (Typical)
372
+
373
+ - **Metadata only**: 2-3 seconds per crate
374
+ - **With AI enrichment**: 15-30 seconds per crate
375
+ - **Full analysis**: 45-60 seconds per crate
376
+
377
+ #### Resource Usage
378
+
379
+ - **Memory**: 2-4GB during processing
380
+ - **Storage**: 10-50MB per crate (temporary files)
381
+ - **Network**: 1-5MB per crate (API calls)
382
+
383
+ #### Monitoring Commands
384
+
385
+ ```bash
386
+ # Check process status
387
+ ps aux | grep rust_crate_pipeline
388
+
389
+ # Monitor resource usage
390
+ top -p $(pgrep -f rust_crate_pipeline)
391
+
392
+ # Check logs
393
+ tail -f pipeline.log
394
+
395
+ # Docker monitoring
396
+ docker stats pipeline
397
+ ```
398
+
399
+ ## 🚀 Deployment Guide
400
+
401
+ ### SSH/Remote Server Deployment
402
+
403
+ ```bash
404
+ # Background execution with logging
405
+ nohup python3 run_production.py > pipeline.log 2>&1 &
406
+
407
+ # Monitor progress
408
+ tail -f pipeline.log
409
+
410
+ # Check process
411
+ jobs
412
+ ps aux | grep rust_crate_pipeline
413
+ ```
414
+
415
+ ### Systemd Service (Linux)
416
+
417
+ Create `/etc/systemd/system/rust-crate-pipeline.service`:
418
+
419
+ ```ini
420
+ [Unit]
421
+ Description=Rust Crate Data Pipeline
422
+ After=network.target
423
+
424
+ [Service]
425
+ Type=simple
426
+ User=your-username
427
+ WorkingDirectory=/path/to/pipeline
428
+ Environment=GITHUB_TOKEN=your_token_here
429
+ Environment=PRODUCTION=true
430
+ ExecStart=/usr/bin/python3 run_production.py
431
+ Restart=on-failure
432
+ RestartSec=30
433
+
434
+ [Install]
435
+ WantedBy=multi-user.target
436
+ ```
437
+
438
+ Enable and start:
439
+
440
+ ```bash
441
+ sudo systemctl daemon-reload
442
+ sudo systemctl enable rust-crate-pipeline
443
+ sudo systemctl start rust-crate-pipeline
444
+ sudo systemctl status rust-crate-pipeline
445
+ ```
446
+
447
+ ## 🏗️ Architecture
448
+
449
+ ### Core Components
450
+
451
+ 1. **CrateDataPipeline**: Main orchestration class that coordinates all processing
452
+ 2. **LLMEnricher**: Handles AI-powered enrichment using local LLM models
453
+ 3. **CrateAPIClient**: Manages API interactions with crates.io and fallback sources
454
+ 4. **GitHubBatchClient**: Optimized GitHub API client with rate limiting
455
+ 5. **SourceAnalyzer**: Analyzes source code metrics and complexity
456
+ 6. **SecurityAnalyzer**: Checks for security vulnerabilities and patterns
457
+ 7. **UserBehaviorAnalyzer**: Tracks community engagement and version adoption
458
+ 8. **DependencyAnalyzer**: Builds and analyzes dependency relationships
459
+
460
+ ### Processing Flow
461
+
462
+ ```
463
+ 1. Crate Discovery → 2. Metadata Fetching → 3. AI Enrichment
464
+ ↓ ↓ ↓
465
+ 4. Source Analysis → 5. Security Scanning → 6. Community Analysis
466
+ ↓ ↓ ↓
467
+ 7. Dependency Mapping → 8. Data Aggregation → 9. Report Generation
468
+ ```
469
+
470
+ ### Project Structure
471
+
472
+ ```
473
+ rust_crate_pipeline/
474
+ ├── __init__.py # Package initialization
475
+ ├── __main__.py # Entry point for python -m execution
476
+ ├── main.py # CLI interface and main execution logic
477
+ ├── config.py # Configuration classes and data models
478
+ ├── pipeline.py # Main orchestration and workflow management
479
+ ├── ai_processing.py # LLM integration and AI-powered enrichment
480
+ ├── network.py # API clients and HTTP request handling
481
+ ├── analysis.py # Source code, security, and dependency analysis
482
+ ├── github_token_checker.py # Token validation and setup
483
+ ├── production_config.py # Production optimizations
484
+ └── utils/ # Utility functions
485
+ ├── logging_utils.py # Logging configuration and decorators
486
+ └── file_utils.py # File operations and disk management
487
+ ```
488
+
489
+ ## 🧪 API Usage
490
+
491
+ ### Programmatic Usage
492
+
493
+ ```python
494
+ from rust_crate_pipeline import CrateDataPipeline, PipelineConfig
495
+
496
+ # Create custom configuration
497
+ config = PipelineConfig(
498
+ batch_size=5,
499
+ max_tokens=512,
500
+ model_path="/path/to/model.gguf"
501
+ )
502
+
503
+ # Initialize and run pipeline
504
+ pipeline = CrateDataPipeline(config)
505
+ pipeline.run()
506
+
507
+ # Or use individual components
508
+ from rust_crate_pipeline import LLMEnricher, SourceAnalyzer
509
+
510
+ enricher = LLMEnricher(config)
511
+ analyzer = SourceAnalyzer()
512
+ ```
513
+
514
+ ### Custom Processing
515
+
516
+ ```python
517
+ # Process specific crates with custom options
518
+ pipeline = CrateDataPipeline(
519
+ config,
520
+ limit=50,
521
+ crate_list=["serde", "tokio", "actix-web"],
522
+ skip_ai=False,
523
+ output_dir="./custom_analysis"
524
+ )
525
+ ```
526
+
527
+ ## 🔧 Development & Contributing
528
+
529
+ ### Development Setup
530
+
531
+ ```bash
532
+ # Clone and install
533
+ git clone https://github.com/DaveTmire85/SigilDERG-Data_Production.git
534
+ cd SigilDERG-Data_Production
535
+ pip install -r requirements.txt
536
+
537
+ # Run tests
538
+ python3 test_optimizations.py
539
+ python3 test_token_integration.py
540
+
541
+ # Verify installation
542
+ python3 check_github_token.py
543
+ ```
544
+
545
+ ### Adding Features
546
+
547
+ 1. Implement new analyzer in `analysis.py`
548
+ 2. Add configuration options to `config.py`
549
+ 3. Integrate with pipeline in `pipeline.py`
550
+ 4. Add CLI arguments in `main.py`
551
+ 5. Update tests and documentation
552
+
553
+ ## 📄 License
554
+
555
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
556
+
557
+ ## 🙏 Acknowledgments
558
+
559
+ - **Rust Community** for the excellent crates ecosystem
560
+ - **crates.io** for comprehensive API access
561
+ - **GitHub** for repository metadata and community data
562
+ - **Deepseek** for powerful code-focused language models
563
+ - **llama.cpp** team for efficient local inference
564
+
565
+ ## 📞 Support
566
+
567
+ - **Issues**: Report bugs and request features
568
+ - **Documentation**: Complete guides and API reference
569
+ - **Community**: Join discussions and get help
570
+
571
+ ---
572
+
573
+ **Ready to analyze the Rust ecosystem! 🦀✨**
@@ -1,17 +1,19 @@
1
1
  rust_crate_pipeline/__init__.py,sha256=m9fb1WGbyOimxK2e18FSgvLWGYBwbLoHM_mscr-nAPs,1429
2
2
  rust_crate_pipeline/__main__.py,sha256=fYgtPofuk4vkwiZ7ELP4GVMNj_QiKmZMSlvhzsNGuDs,155
3
- rust_crate_pipeline/ai_processing.py,sha256=kmV6RfhwRVYQyp55Eez8R0jNAVJB8sdfIB1-60j1Eio,18027
3
+ rust_crate_pipeline/ai_processing.py,sha256=zs0eHxnoSajRqpUoZ5fXLxrK68jZ-J1Vavtsujskc9Q,18821
4
4
  rust_crate_pipeline/analysis.py,sha256=ijP4zp3cFnN09nZkeCluyAvbyAtAW_M2YSxALpQX8LY,18615
5
5
  rust_crate_pipeline/config.py,sha256=r4Y_5SD-lfrM1112edk9T0S0MiVxaNSSHk4q2yDrM88,1528
6
- rust_crate_pipeline/main.py,sha256=vPLvuwekNpwSUHEAc6lnzQ0q3QU-YZS9ZIijhkkfRzI,5384
6
+ rust_crate_pipeline/github_token_checker.py,sha256=MJqHP8J84NEZ6nzdutpC7iRnsP0kyqscjLUosvmI4MI,3768
7
+ rust_crate_pipeline/main.py,sha256=J8ORQA6s3wyWw2R3oB_IEm2J5tx1CFdspw5kb5Ep8zQ,6323
7
8
  rust_crate_pipeline/network.py,sha256=t_G8eh_WHNugm_laMftcWVbHsmP0bOlTPnVW9DqF6SU,13375
8
9
  rust_crate_pipeline/pipeline.py,sha256=Uwfw4uLL3aN1gJl5xSwvvyaY9ceeP7LVr02IzNx0tPM,12033
9
- rust_crate_pipeline/version.py,sha256=np_eAssJT7w0mfKLkvPGj07FJndSt79OH1PjHEaXb_s,542
10
+ rust_crate_pipeline/production_config.py,sha256=2GT8bxytcrMRrcfjzpay5RTtATE3rbmDvNUBvVhrYSQ,2472
11
+ rust_crate_pipeline/version.py,sha256=8LymcBLNSPWijVTHpd9sS_Aqp8vRoMyZLCupAOnQkfs,1022
10
12
  rust_crate_pipeline/utils/file_utils.py,sha256=lnHeLrt1JYaQhRDKtA1TWR2HIyRO8zwOyWb-KmAmWgk,2126
11
13
  rust_crate_pipeline/utils/logging_utils.py,sha256=O4Jnr_k9dBchrVqXf-vqtDKgizDtL_ljh8g7G2VCX_c,2241
12
- rust_crate_pipeline-1.1.1.dist-info/licenses/LICENSE,sha256=tpd4XNpbssrSx9-iErATOLrOh0ivNPfO2I5MAPUpats,1088
13
- rust_crate_pipeline-1.1.1.dist-info/METADATA,sha256=96NawdhQK_JtrzH7uQYVxD4JJtsr-p8ask9tf6QmgTc,15260
14
- rust_crate_pipeline-1.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
15
- rust_crate_pipeline-1.1.1.dist-info/entry_points.txt,sha256=9Rr_IRuFRIridXxUSdEJbB3ba0NnpEfKmknZXFdYRC0,70
16
- rust_crate_pipeline-1.1.1.dist-info/top_level.txt,sha256=GUdB7RyxHLhijQxui_KTy3B8p_L2APui9C6RYa0FuaE,20
17
- rust_crate_pipeline-1.1.1.dist-info/RECORD,,
14
+ rust_crate_pipeline-1.2.1.dist-info/licenses/LICENSE,sha256=tpd4XNpbssrSx9-iErATOLrOh0ivNPfO2I5MAPUpats,1088
15
+ rust_crate_pipeline-1.2.1.dist-info/METADATA,sha256=zRFlOck4m9GDEHrmBM_cvzKVVKD-zBK4hzfClVbhuq0,16741
16
+ rust_crate_pipeline-1.2.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
+ rust_crate_pipeline-1.2.1.dist-info/entry_points.txt,sha256=9Rr_IRuFRIridXxUSdEJbB3ba0NnpEfKmknZXFdYRC0,70
18
+ rust_crate_pipeline-1.2.1.dist-info/top_level.txt,sha256=GUdB7RyxHLhijQxui_KTy3B8p_L2APui9C6RYa0FuaE,20
19
+ rust_crate_pipeline-1.2.1.dist-info/RECORD,,