polars-bio 0.12.0__tar.gz → 0.13.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.
- {polars_bio-0.12.0 → polars_bio-0.13.0}/Cargo.lock +197 -167
- {polars_bio-0.12.0 → polars_bio-0.13.0}/Cargo.toml +7 -7
- {polars_bio-0.12.0 → polars_bio-0.13.0}/PKG-INFO +2 -2
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/faq.md +2 -2
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/features.md +40 -21
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/notebooks/tutorial.ipynb +93 -103
- polars_bio-0.13.0/polars_bio/__init__.py +120 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/polars_bio/interval_op_helpers.py +1 -5
- {polars_bio-0.12.0 → polars_bio-0.13.0}/polars_bio/io.py +291 -286
- {polars_bio-0.12.0 → polars_bio-0.13.0}/polars_bio/range_op.py +2 -16
- {polars_bio-0.12.0 → polars_bio-0.13.0}/polars_bio/range_op_helpers.py +0 -13
- {polars_bio-0.12.0 → polars_bio-0.13.0}/polars_bio/sql.py +4 -8
- polars_bio-0.13.0/polars_bio/utils.py +46 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/pyproject.toml +3 -3
- {polars_bio-0.12.0 → polars_bio-0.13.0}/src/lib.rs +22 -6
- {polars_bio-0.12.0 → polars_bio-0.13.0}/src/operation.rs +0 -4
- {polars_bio-0.12.0 → polars_bio-0.13.0}/src/option.rs +1 -10
- polars_bio-0.13.0/src/streaming.rs +59 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/test_ensembl_parsing.py +2 -2
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/test_ensembl_vcf_parsing.py +2 -2
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/test_io.py +23 -25
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/test_parallel_io.py +2 -2
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/test_polars_ext.py +11 -11
- polars_bio-0.13.0/tests/test_streaming.py +695 -0
- polars_bio-0.12.0/polars_bio/__init__.py +0 -77
- polars_bio-0.12.0/src/streaming.rs +0 -45
- polars_bio-0.12.0/tests/test_streaming.py +0 -132
- {polars_bio-0.12.0 → polars_bio-0.13.0}/.github/workflows/publish_documentation.yml +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/.github/workflows/publish_to_pypi.yml +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/.github/workflows/release.yml +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/.gitignore +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/.pre-commit-config.yaml +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/.readthedocs.yaml +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/LICENSE +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/Makefile +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/README.md +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/api.md +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/count-overlaps-parallel.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/count-overlaps-single.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/coverage-parallel.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/coverage-single.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/logo-large.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/logo.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/memory/bioframe.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/memory/bioframe_sink.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/memory/dataframes/polars-bio-overlap-mem.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/memory/dataframes/polars-bio-overlap-pd-mem.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/memory/dataframes/polars-bio-overlap-pl-mem.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/memory/polars-bio.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/memory/polars-bio_sink.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/memory/polars-bio_stream_sink.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/memory/pyranges0.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/memory/pyranges0_sink.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/memory/pyranges1.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/memory/pyranges1_sink.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/nearest-parallel.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/nearest-single.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/overlap-parallel.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/overlap-single.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/results-nearest-0.1.1.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/assets/results-overlap-0.1.1.png +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/contact.md +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/index.md +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/notebooks/data/example.bam +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/notebooks/data/example.bed.bgz +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/notebooks/data/example.fastq.gz +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/notebooks/data/example.gff3.bgz +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/notebooks/data/example.vcf +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/notebooks/data/exons/.part-00000-47fafbb5-1cab-410c-9461-d10effacf760-c000.snappy.parquet.crc +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/notebooks/data/exons/.part-00001-47fafbb5-1cab-410c-9461-d10effacf760-c000.snappy.parquet.crc +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/notebooks/data/exons/_SUCCESS +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/notebooks/data/exons/part-00000-47fafbb5-1cab-410c-9461-d10effacf760-c000.snappy.parquet +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/notebooks/data/exons/part-00001-47fafbb5-1cab-410c-9461-d10effacf760-c000.snappy.parquet +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/notebooks/data/fBrain-DS14718/.part-00000-a0d75244-2d87-41eb-a3eb-a18847c7cb87-c000.snappy.parquet.crc +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/notebooks/data/fBrain-DS14718/.part-00001-a0d75244-2d87-41eb-a3eb-a18847c7cb87-c000.snappy.parquet.crc +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/notebooks/data/fBrain-DS14718/_SUCCESS +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/notebooks/data/fBrain-DS14718/part-00000-a0d75244-2d87-41eb-a3eb-a18847c7cb87-c000.snappy.parquet +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/notebooks/data/fBrain-DS14718/part-00001-a0d75244-2d87-41eb-a3eb-a18847c7cb87-c000.snappy.parquet +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/performance.md +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/quickstart.md +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/requirements.txt +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/supplement.md +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/docs/versions.json +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/it/README.md +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/it/bin/.env +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/it/bin/start.sh +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/it/bin/stop.sh +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/it/data/policy-anonymous.json +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/it/data/policy-priv.json +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/it/data/test.fasta +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/it/data/vep.vcf +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/it/data/vep.vcf.bgz +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/it/docker-compose.yml +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/it/it_ensembl_vcf_bgz.py +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/it/it_object_storage_io.py +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/mkdocs.yml +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/poetry.lock +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/polars-bio.iml +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/polars_bio/constants.py +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/polars_bio/context.py +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/polars_bio/logging.py +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/polars_bio/operations.py +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/polars_bio/polars_ext.py +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/polars_bio/range_op_io.py +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/polars_bio/range_utils.py +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/requirements.txt +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/rust-toolchain.toml +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/rustfmt.toml +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/src/context.rs +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/src/query.rs +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/src/scan.rs +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/src/udtf.rs +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/src/utils.rs +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/_expected.py +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/count_overlaps/reads.csv +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/count_overlaps/targets.csv +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/coverage/reads.csv +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/coverage/targets.csv +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/exons/.part-00000-47fafbb5-1cab-410c-9461-d10effacf760-c000.snappy.parquet.crc +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/exons/.part-00001-47fafbb5-1cab-410c-9461-d10effacf760-c000.snappy.parquet.crc +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/exons/_SUCCESS +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/exons/part-00000-47fafbb5-1cab-410c-9461-d10effacf760-c000.snappy.parquet +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/exons/part-00001-47fafbb5-1cab-410c-9461-d10effacf760-c000.snappy.parquet +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/fBrain-DS14718/.part-00000-a0d75244-2d87-41eb-a3eb-a18847c7cb87-c000.snappy.parquet.crc +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/fBrain-DS14718/.part-00001-a0d75244-2d87-41eb-a3eb-a18847c7cb87-c000.snappy.parquet.crc +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/fBrain-DS14718/_SUCCESS +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/fBrain-DS14718/part-00000-a0d75244-2d87-41eb-a3eb-a18847c7cb87-c000.snappy.parquet +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/fBrain-DS14718/part-00001-a0d75244-2d87-41eb-a3eb-a18847c7cb87-c000.snappy.parquet +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/bam/test.bam +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/bam/test.bam.bai +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/bed/ENCFF001XKR.bed.gz +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/bed/chr16_fragile_site.bed +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/bed/chr16_fragile_site.bed.bgz +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/bed/test.bed +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/fasta/test.fasta +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/fastq/example.fastq +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/fastq/example.fastq.bgz +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/fastq/example.fastq.bgz.gzi +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/fastq/example.fastq.gz +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/fastq/sample_parallel.fastq.bgz +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/fastq/sample_parallel.fastq.bgz.gzi +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/fastq/test.fastq +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/fastq/wrong_extension.fastq.gz +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/gff/gencode.v38.annotation.gff3 +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/gff/gencode.v38.annotation.gff3.bgz +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/gff/gencode.v38.annotation.gff3.gz +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/gff/wrong_extension.gff3.gz +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/vcf/ensembl-2.vcf +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/vcf/ensembl.vcf +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/vcf/vep.vcf +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/vcf/vep.vcf.bgz +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/vcf/vep.vcf.gz +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/vcf/wrong_extension.vcf.bgz +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/io/vcf/wrong_extension.vcf.gz +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/merge/input.csv +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/nearest/reads.csv +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/nearest/targets.csv +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/overlap/reads.csv +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/data/overlap/targets.csv +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/test_bioframe.py +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/test_native.py +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/test_overlap_algorithms.py +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/test_pandas.py +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/test_polars.py +0 -0
- {polars_bio-0.12.0 → polars_bio-0.13.0}/tests/test_warnings.py +0 -0
@@ -534,6 +534,18 @@ dependencies = [
|
|
534
534
|
"syn 1.0.109",
|
535
535
|
]
|
536
536
|
|
537
|
+
[[package]]
|
538
|
+
name = "async-channel"
|
539
|
+
version = "2.5.0"
|
540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
541
|
+
checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
|
542
|
+
dependencies = [
|
543
|
+
"concurrent-queue",
|
544
|
+
"event-listener-strategy",
|
545
|
+
"futures-core",
|
546
|
+
"pin-project-lite",
|
547
|
+
]
|
548
|
+
|
537
549
|
[[package]]
|
538
550
|
name = "async-compression"
|
539
551
|
version = "0.4.19"
|
@@ -715,7 +727,7 @@ dependencies = [
|
|
715
727
|
"editdistancek",
|
716
728
|
"enum-map",
|
717
729
|
"fxhash",
|
718
|
-
"itertools
|
730
|
+
"itertools",
|
719
731
|
"itertools-num",
|
720
732
|
"lazy_static",
|
721
733
|
"multimap",
|
@@ -1074,6 +1086,15 @@ dependencies = [
|
|
1074
1086
|
"static_assertions",
|
1075
1087
|
]
|
1076
1088
|
|
1089
|
+
[[package]]
|
1090
|
+
name = "concurrent-queue"
|
1091
|
+
version = "2.5.0"
|
1092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1093
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
1094
|
+
dependencies = [
|
1095
|
+
"crossbeam-utils",
|
1096
|
+
]
|
1097
|
+
|
1077
1098
|
[[package]]
|
1078
1099
|
name = "const-oid"
|
1079
1100
|
version = "0.9.6"
|
@@ -1364,9 +1385,9 @@ dependencies = [
|
|
1364
1385
|
"datafusion-sql",
|
1365
1386
|
"flate2",
|
1366
1387
|
"futures",
|
1367
|
-
"itertools
|
1388
|
+
"itertools",
|
1368
1389
|
"log",
|
1369
|
-
"object_store
|
1390
|
+
"object_store",
|
1370
1391
|
"parking_lot",
|
1371
1392
|
"parquet",
|
1372
1393
|
"rand 0.9.2",
|
@@ -1554,9 +1575,9 @@ dependencies = [
|
|
1554
1575
|
"datafusion-session",
|
1555
1576
|
"datafusion-sql",
|
1556
1577
|
"futures",
|
1557
|
-
"itertools
|
1578
|
+
"itertools",
|
1558
1579
|
"log",
|
1559
|
-
"object_store
|
1580
|
+
"object_store",
|
1560
1581
|
"parking_lot",
|
1561
1582
|
"tokio",
|
1562
1583
|
]
|
@@ -1580,7 +1601,7 @@ dependencies = [
|
|
1580
1601
|
"datafusion-session",
|
1581
1602
|
"futures",
|
1582
1603
|
"log",
|
1583
|
-
"object_store
|
1604
|
+
"object_store",
|
1584
1605
|
"tokio",
|
1585
1606
|
]
|
1586
1607
|
|
@@ -1600,7 +1621,7 @@ dependencies = [
|
|
1600
1621
|
"indexmap",
|
1601
1622
|
"libc",
|
1602
1623
|
"log",
|
1603
|
-
"object_store
|
1624
|
+
"object_store",
|
1604
1625
|
"parquet",
|
1605
1626
|
"paste",
|
1606
1627
|
"recursive",
|
@@ -1643,9 +1664,9 @@ dependencies = [
|
|
1643
1664
|
"flate2",
|
1644
1665
|
"futures",
|
1645
1666
|
"glob",
|
1646
|
-
"itertools
|
1667
|
+
"itertools",
|
1647
1668
|
"log",
|
1648
|
-
"object_store
|
1669
|
+
"object_store",
|
1649
1670
|
"parquet",
|
1650
1671
|
"rand 0.9.2",
|
1651
1672
|
"tempfile",
|
@@ -1677,7 +1698,7 @@ dependencies = [
|
|
1677
1698
|
"datafusion-session",
|
1678
1699
|
"futures",
|
1679
1700
|
"num-traits",
|
1680
|
-
"object_store
|
1701
|
+
"object_store",
|
1681
1702
|
"tokio",
|
1682
1703
|
]
|
1683
1704
|
|
@@ -1701,7 +1722,7 @@ dependencies = [
|
|
1701
1722
|
"datafusion-physical-plan",
|
1702
1723
|
"datafusion-session",
|
1703
1724
|
"futures",
|
1704
|
-
"object_store
|
1725
|
+
"object_store",
|
1705
1726
|
"regex",
|
1706
1727
|
"tokio",
|
1707
1728
|
]
|
@@ -1726,7 +1747,7 @@ dependencies = [
|
|
1726
1747
|
"datafusion-physical-plan",
|
1727
1748
|
"datafusion-session",
|
1728
1749
|
"futures",
|
1729
|
-
"object_store
|
1750
|
+
"object_store",
|
1730
1751
|
"serde_json",
|
1731
1752
|
"tokio",
|
1732
1753
|
]
|
@@ -1753,9 +1774,9 @@ dependencies = [
|
|
1753
1774
|
"datafusion-physical-plan",
|
1754
1775
|
"datafusion-session",
|
1755
1776
|
"futures",
|
1756
|
-
"itertools
|
1777
|
+
"itertools",
|
1757
1778
|
"log",
|
1758
|
-
"object_store
|
1779
|
+
"object_store",
|
1759
1780
|
"parking_lot",
|
1760
1781
|
"parquet",
|
1761
1782
|
"rand 0.9.2",
|
@@ -1780,7 +1801,7 @@ dependencies = [
|
|
1780
1801
|
"datafusion-expr",
|
1781
1802
|
"futures",
|
1782
1803
|
"log",
|
1783
|
-
"object_store
|
1804
|
+
"object_store",
|
1784
1805
|
"parking_lot",
|
1785
1806
|
"rand 0.9.2",
|
1786
1807
|
"tempfile",
|
@@ -1817,7 +1838,7 @@ dependencies = [
|
|
1817
1838
|
"arrow",
|
1818
1839
|
"datafusion-common",
|
1819
1840
|
"indexmap",
|
1820
|
-
"itertools
|
1841
|
+
"itertools",
|
1821
1842
|
"paste",
|
1822
1843
|
]
|
1823
1844
|
|
@@ -1862,7 +1883,7 @@ dependencies = [
|
|
1862
1883
|
"datafusion-expr-common",
|
1863
1884
|
"datafusion-macros",
|
1864
1885
|
"hex",
|
1865
|
-
"itertools
|
1886
|
+
"itertools",
|
1866
1887
|
"log",
|
1867
1888
|
"md-5",
|
1868
1889
|
"rand 0.9.2",
|
@@ -1922,7 +1943,7 @@ dependencies = [
|
|
1922
1943
|
"datafusion-functions-aggregate",
|
1923
1944
|
"datafusion-macros",
|
1924
1945
|
"datafusion-physical-expr-common",
|
1925
|
-
"itertools
|
1946
|
+
"itertools",
|
1926
1947
|
"log",
|
1927
1948
|
"paste",
|
1928
1949
|
]
|
@@ -1994,7 +2015,7 @@ dependencies = [
|
|
1994
2015
|
"datafusion-expr",
|
1995
2016
|
"datafusion-physical-expr",
|
1996
2017
|
"indexmap",
|
1997
|
-
"itertools
|
2018
|
+
"itertools",
|
1998
2019
|
"log",
|
1999
2020
|
"recursive",
|
2000
2021
|
"regex",
|
@@ -2017,7 +2038,7 @@ dependencies = [
|
|
2017
2038
|
"half",
|
2018
2039
|
"hashbrown 0.14.5",
|
2019
2040
|
"indexmap",
|
2020
|
-
"itertools
|
2041
|
+
"itertools",
|
2021
2042
|
"log",
|
2022
2043
|
"paste",
|
2023
2044
|
"petgraph",
|
@@ -2034,7 +2055,7 @@ dependencies = [
|
|
2034
2055
|
"datafusion-common",
|
2035
2056
|
"datafusion-expr-common",
|
2036
2057
|
"hashbrown 0.14.5",
|
2037
|
-
"itertools
|
2058
|
+
"itertools",
|
2038
2059
|
]
|
2039
2060
|
|
2040
2061
|
[[package]]
|
@@ -2051,7 +2072,7 @@ dependencies = [
|
|
2051
2072
|
"datafusion-physical-expr",
|
2052
2073
|
"datafusion-physical-expr-common",
|
2053
2074
|
"datafusion-physical-plan",
|
2054
|
-
"itertools
|
2075
|
+
"itertools",
|
2055
2076
|
"log",
|
2056
2077
|
"recursive",
|
2057
2078
|
]
|
@@ -2079,7 +2100,7 @@ dependencies = [
|
|
2079
2100
|
"half",
|
2080
2101
|
"hashbrown 0.14.5",
|
2081
2102
|
"indexmap",
|
2082
|
-
"itertools
|
2103
|
+
"itertools",
|
2083
2104
|
"log",
|
2084
2105
|
"parking_lot",
|
2085
2106
|
"pin-project-lite",
|
@@ -2098,7 +2119,7 @@ dependencies = [
|
|
2098
2119
|
"datafusion-common",
|
2099
2120
|
"datafusion-expr",
|
2100
2121
|
"datafusion-proto-common",
|
2101
|
-
"object_store
|
2122
|
+
"object_store",
|
2102
2123
|
"prost",
|
2103
2124
|
]
|
2104
2125
|
|
@@ -2127,7 +2148,7 @@ dependencies = [
|
|
2127
2148
|
"futures",
|
2128
2149
|
"log",
|
2129
2150
|
"mimalloc",
|
2130
|
-
"object_store
|
2151
|
+
"object_store",
|
2131
2152
|
"prost",
|
2132
2153
|
"prost-types",
|
2133
2154
|
"pyo3",
|
@@ -2156,9 +2177,9 @@ dependencies = [
|
|
2156
2177
|
"datafusion-physical-plan",
|
2157
2178
|
"datafusion-sql",
|
2158
2179
|
"futures",
|
2159
|
-
"itertools
|
2180
|
+
"itertools",
|
2160
2181
|
"log",
|
2161
|
-
"object_store
|
2182
|
+
"object_store",
|
2162
2183
|
"parking_lot",
|
2163
2184
|
"tokio",
|
2164
2185
|
]
|
@@ -2392,6 +2413,27 @@ version = "1.5.2"
|
|
2392
2413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2393
2414
|
checksum = "ca81e6b4777c89fd810c25a4be2b1bd93ea034fbe58e6a75216a34c6b82c539b"
|
2394
2415
|
|
2416
|
+
[[package]]
|
2417
|
+
name = "event-listener"
|
2418
|
+
version = "5.4.1"
|
2419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2420
|
+
checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
|
2421
|
+
dependencies = [
|
2422
|
+
"concurrent-queue",
|
2423
|
+
"parking",
|
2424
|
+
"pin-project-lite",
|
2425
|
+
]
|
2426
|
+
|
2427
|
+
[[package]]
|
2428
|
+
name = "event-listener-strategy"
|
2429
|
+
version = "0.5.4"
|
2430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2431
|
+
checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
|
2432
|
+
dependencies = [
|
2433
|
+
"event-listener",
|
2434
|
+
"pin-project-lite",
|
2435
|
+
]
|
2436
|
+
|
2395
2437
|
[[package]]
|
2396
2438
|
name = "fallible-streaming-iterator"
|
2397
2439
|
version = "0.1.9"
|
@@ -2475,12 +2517,12 @@ dependencies = [
|
|
2475
2517
|
|
2476
2518
|
[[package]]
|
2477
2519
|
name = "fs4"
|
2478
|
-
version = "0.
|
2520
|
+
version = "0.13.1"
|
2479
2521
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2480
|
-
checksum = "
|
2522
|
+
checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4"
|
2481
2523
|
dependencies = [
|
2482
|
-
"rustix 0.
|
2483
|
-
"windows-sys 0.
|
2524
|
+
"rustix 1.0.8",
|
2525
|
+
"windows-sys 0.59.0",
|
2484
2526
|
]
|
2485
2527
|
|
2486
2528
|
[[package]]
|
@@ -3072,15 +3114,6 @@ version = "1.70.1"
|
|
3072
3114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3073
3115
|
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
3074
3116
|
|
3075
|
-
[[package]]
|
3076
|
-
name = "itertools"
|
3077
|
-
version = "0.13.0"
|
3078
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3079
|
-
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
3080
|
-
dependencies = [
|
3081
|
-
"either",
|
3082
|
-
]
|
3083
|
-
|
3084
3117
|
[[package]]
|
3085
3118
|
name = "itertools"
|
3086
3119
|
version = "0.14.0"
|
@@ -4227,38 +4260,6 @@ dependencies = [
|
|
4227
4260
|
"memchr",
|
4228
4261
|
]
|
4229
4262
|
|
4230
|
-
[[package]]
|
4231
|
-
name = "object_store"
|
4232
|
-
version = "0.11.2"
|
4233
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4234
|
-
checksum = "3cfccb68961a56facde1163f9319e0d15743352344e7808a11795fb99698dcaf"
|
4235
|
-
dependencies = [
|
4236
|
-
"async-trait",
|
4237
|
-
"base64",
|
4238
|
-
"bytes",
|
4239
|
-
"chrono",
|
4240
|
-
"futures",
|
4241
|
-
"httparse",
|
4242
|
-
"humantime",
|
4243
|
-
"hyper",
|
4244
|
-
"itertools 0.13.0",
|
4245
|
-
"md-5",
|
4246
|
-
"parking_lot",
|
4247
|
-
"percent-encoding",
|
4248
|
-
"quick-xml 0.37.5",
|
4249
|
-
"rand 0.8.5",
|
4250
|
-
"reqwest",
|
4251
|
-
"ring",
|
4252
|
-
"rustls-pemfile",
|
4253
|
-
"serde",
|
4254
|
-
"serde_json",
|
4255
|
-
"snafu",
|
4256
|
-
"tokio",
|
4257
|
-
"tracing",
|
4258
|
-
"url",
|
4259
|
-
"walkdir",
|
4260
|
-
]
|
4261
|
-
|
4262
4263
|
[[package]]
|
4263
4264
|
name = "object_store"
|
4264
4265
|
version = "0.12.3"
|
@@ -4276,7 +4277,7 @@ dependencies = [
|
|
4276
4277
|
"httparse",
|
4277
4278
|
"humantime",
|
4278
4279
|
"hyper",
|
4279
|
-
"itertools
|
4280
|
+
"itertools",
|
4280
4281
|
"md-5",
|
4281
4282
|
"parking_lot",
|
4282
4283
|
"percent-encoding",
|
@@ -4379,6 +4380,12 @@ version = "0.1.1"
|
|
4379
4380
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4380
4381
|
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
4381
4382
|
|
4383
|
+
[[package]]
|
4384
|
+
name = "parking"
|
4385
|
+
version = "2.2.1"
|
4386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4387
|
+
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
4388
|
+
|
4382
4389
|
[[package]]
|
4383
4390
|
name = "parking_lot"
|
4384
4391
|
version = "0.12.4"
|
@@ -4427,7 +4434,7 @@ dependencies = [
|
|
4427
4434
|
"lz4_flex",
|
4428
4435
|
"num",
|
4429
4436
|
"num-bigint",
|
4430
|
-
"object_store
|
4437
|
+
"object_store",
|
4431
4438
|
"paste",
|
4432
4439
|
"seq-macro",
|
4433
4440
|
"simdutf8",
|
@@ -4594,8 +4601,8 @@ dependencies = [
|
|
4594
4601
|
|
4595
4602
|
[[package]]
|
4596
4603
|
name = "polars"
|
4597
|
-
version = "0.
|
4598
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
4604
|
+
version = "0.46.0"
|
4605
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
4599
4606
|
dependencies = [
|
4600
4607
|
"getrandom 0.2.16",
|
4601
4608
|
"polars-arrow",
|
@@ -4614,10 +4621,9 @@ dependencies = [
|
|
4614
4621
|
|
4615
4622
|
[[package]]
|
4616
4623
|
name = "polars-arrow"
|
4617
|
-
version = "0.
|
4618
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
4624
|
+
version = "0.46.0"
|
4625
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
4619
4626
|
dependencies = [
|
4620
|
-
"ahash",
|
4621
4627
|
"atoi_simd",
|
4622
4628
|
"avro-schema",
|
4623
4629
|
"bytemuck",
|
@@ -4657,30 +4663,34 @@ dependencies = [
|
|
4657
4663
|
|
4658
4664
|
[[package]]
|
4659
4665
|
name = "polars-compute"
|
4660
|
-
version = "0.
|
4661
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
4666
|
+
version = "0.46.0"
|
4667
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
4662
4668
|
dependencies = [
|
4663
4669
|
"atoi_simd",
|
4664
4670
|
"bytemuck",
|
4665
4671
|
"chrono",
|
4666
4672
|
"either",
|
4667
4673
|
"fast-float2",
|
4674
|
+
"hashbrown 0.15.5",
|
4668
4675
|
"itoa",
|
4669
4676
|
"num-traits",
|
4670
4677
|
"polars-arrow",
|
4671
4678
|
"polars-error",
|
4672
4679
|
"polars-utils",
|
4680
|
+
"rand 0.8.5",
|
4673
4681
|
"ryu",
|
4682
|
+
"serde",
|
4683
|
+
"skiplist",
|
4674
4684
|
"strength_reduce",
|
4685
|
+
"strum_macros",
|
4675
4686
|
"version_check",
|
4676
4687
|
]
|
4677
4688
|
|
4678
4689
|
[[package]]
|
4679
4690
|
name = "polars-core"
|
4680
|
-
version = "0.
|
4681
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
4691
|
+
version = "0.46.0"
|
4692
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
4682
4693
|
dependencies = [
|
4683
|
-
"ahash",
|
4684
4694
|
"bitflags",
|
4685
4695
|
"bytemuck",
|
4686
4696
|
"chrono",
|
@@ -4693,7 +4703,6 @@ dependencies = [
|
|
4693
4703
|
"itoa",
|
4694
4704
|
"ndarray",
|
4695
4705
|
"num-traits",
|
4696
|
-
"once_cell",
|
4697
4706
|
"polars-arrow",
|
4698
4707
|
"polars-compute",
|
4699
4708
|
"polars-error",
|
@@ -4707,34 +4716,32 @@ dependencies = [
|
|
4707
4716
|
"serde",
|
4708
4717
|
"serde_json",
|
4709
4718
|
"strum_macros",
|
4710
|
-
"thiserror 2.0.15",
|
4711
4719
|
"version_check",
|
4712
4720
|
"xxhash-rust",
|
4713
4721
|
]
|
4714
4722
|
|
4715
4723
|
[[package]]
|
4716
4724
|
name = "polars-error"
|
4717
|
-
version = "0.
|
4718
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
4725
|
+
version = "0.46.0"
|
4726
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
4719
4727
|
dependencies = [
|
4720
4728
|
"avro-schema",
|
4721
|
-
"object_store
|
4729
|
+
"object_store",
|
4730
|
+
"parking_lot",
|
4722
4731
|
"polars-arrow-format",
|
4723
4732
|
"regex",
|
4733
|
+
"signal-hook",
|
4724
4734
|
"simdutf8",
|
4725
|
-
"thiserror 2.0.15",
|
4726
4735
|
]
|
4727
4736
|
|
4728
4737
|
[[package]]
|
4729
4738
|
name = "polars-expr"
|
4730
|
-
version = "0.
|
4731
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
4739
|
+
version = "0.46.0"
|
4740
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
4732
4741
|
dependencies = [
|
4733
|
-
"ahash",
|
4734
4742
|
"bitflags",
|
4735
4743
|
"hashbrown 0.15.5",
|
4736
4744
|
"num-traits",
|
4737
|
-
"once_cell",
|
4738
4745
|
"polars-arrow",
|
4739
4746
|
"polars-compute",
|
4740
4747
|
"polars-core",
|
@@ -4746,12 +4753,13 @@ dependencies = [
|
|
4746
4753
|
"polars-utils",
|
4747
4754
|
"rand 0.8.5",
|
4748
4755
|
"rayon",
|
4756
|
+
"recursive",
|
4749
4757
|
]
|
4750
4758
|
|
4751
4759
|
[[package]]
|
4752
4760
|
name = "polars-ffi"
|
4753
|
-
version = "0.
|
4754
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
4761
|
+
version = "0.46.0"
|
4762
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
4755
4763
|
dependencies = [
|
4756
4764
|
"polars-arrow",
|
4757
4765
|
"polars-core",
|
@@ -4759,10 +4767,9 @@ dependencies = [
|
|
4759
4767
|
|
4760
4768
|
[[package]]
|
4761
4769
|
name = "polars-io"
|
4762
|
-
version = "0.
|
4763
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
4770
|
+
version = "0.46.0"
|
4771
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
4764
4772
|
dependencies = [
|
4765
|
-
"ahash",
|
4766
4773
|
"async-trait",
|
4767
4774
|
"atoi_simd",
|
4768
4775
|
"blake3",
|
@@ -4780,8 +4787,7 @@ dependencies = [
|
|
4780
4787
|
"memchr",
|
4781
4788
|
"memmap2",
|
4782
4789
|
"num-traits",
|
4783
|
-
"object_store
|
4784
|
-
"once_cell",
|
4790
|
+
"object_store",
|
4785
4791
|
"percent-encoding",
|
4786
4792
|
"polars-arrow",
|
4787
4793
|
"polars-core",
|
@@ -4808,10 +4814,9 @@ dependencies = [
|
|
4808
4814
|
|
4809
4815
|
[[package]]
|
4810
4816
|
name = "polars-json"
|
4811
|
-
version = "0.
|
4812
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
4817
|
+
version = "0.46.0"
|
4818
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
4813
4819
|
dependencies = [
|
4814
|
-
"ahash",
|
4815
4820
|
"chrono",
|
4816
4821
|
"chrono-tz",
|
4817
4822
|
"fallible-streaming-iterator",
|
@@ -4830,16 +4835,16 @@ dependencies = [
|
|
4830
4835
|
|
4831
4836
|
[[package]]
|
4832
4837
|
name = "polars-lazy"
|
4833
|
-
version = "0.
|
4834
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
4838
|
+
version = "0.46.0"
|
4839
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
4835
4840
|
dependencies = [
|
4836
|
-
"ahash",
|
4837
4841
|
"bitflags",
|
4838
4842
|
"chrono",
|
4843
|
+
"either",
|
4839
4844
|
"futures",
|
4840
4845
|
"memchr",
|
4841
|
-
"once_cell",
|
4842
4846
|
"polars-arrow",
|
4847
|
+
"polars-compute",
|
4843
4848
|
"polars-core",
|
4844
4849
|
"polars-expr",
|
4845
4850
|
"polars-io",
|
@@ -4859,8 +4864,8 @@ dependencies = [
|
|
4859
4864
|
|
4860
4865
|
[[package]]
|
4861
4866
|
name = "polars-mem-engine"
|
4862
|
-
version = "0.
|
4863
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
4867
|
+
version = "0.46.0"
|
4868
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
4864
4869
|
dependencies = [
|
4865
4870
|
"futures",
|
4866
4871
|
"memmap2",
|
@@ -4876,15 +4881,15 @@ dependencies = [
|
|
4876
4881
|
"polars-utils",
|
4877
4882
|
"pyo3",
|
4878
4883
|
"rayon",
|
4884
|
+
"recursive",
|
4879
4885
|
"tokio",
|
4880
4886
|
]
|
4881
4887
|
|
4882
4888
|
[[package]]
|
4883
4889
|
name = "polars-ops"
|
4884
|
-
version = "0.
|
4885
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
4890
|
+
version = "0.46.0"
|
4891
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
4886
4892
|
dependencies = [
|
4887
|
-
"ahash",
|
4888
4893
|
"aho-corasick",
|
4889
4894
|
"argminmax",
|
4890
4895
|
"base64",
|
@@ -4896,9 +4901,9 @@ dependencies = [
|
|
4896
4901
|
"hex",
|
4897
4902
|
"indexmap",
|
4898
4903
|
"jsonpath_lib_polars_vendor",
|
4904
|
+
"libm",
|
4899
4905
|
"memchr",
|
4900
4906
|
"num-traits",
|
4901
|
-
"once_cell",
|
4902
4907
|
"polars-arrow",
|
4903
4908
|
"polars-compute",
|
4904
4909
|
"polars-core",
|
@@ -4921,10 +4926,9 @@ dependencies = [
|
|
4921
4926
|
|
4922
4927
|
[[package]]
|
4923
4928
|
name = "polars-parquet"
|
4924
|
-
version = "0.
|
4925
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
4929
|
+
version = "0.46.0"
|
4930
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
4926
4931
|
dependencies = [
|
4927
|
-
"ahash",
|
4928
4932
|
"async-stream",
|
4929
4933
|
"base64",
|
4930
4934
|
"brotli 7.0.0",
|
@@ -4959,8 +4963,8 @@ dependencies = [
|
|
4959
4963
|
|
4960
4964
|
[[package]]
|
4961
4965
|
name = "polars-pipe"
|
4962
|
-
version = "0.
|
4963
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
4966
|
+
version = "0.46.0"
|
4967
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
4964
4968
|
dependencies = [
|
4965
4969
|
"crossbeam-channel",
|
4966
4970
|
"crossbeam-queue",
|
@@ -4968,7 +4972,6 @@ dependencies = [
|
|
4968
4972
|
"futures",
|
4969
4973
|
"hashbrown 0.15.5",
|
4970
4974
|
"num-traits",
|
4971
|
-
"once_cell",
|
4972
4975
|
"polars-arrow",
|
4973
4976
|
"polars-compute",
|
4974
4977
|
"polars-core",
|
@@ -4986,10 +4989,9 @@ dependencies = [
|
|
4986
4989
|
|
4987
4990
|
[[package]]
|
4988
4991
|
name = "polars-plan"
|
4989
|
-
version = "0.
|
4990
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
4992
|
+
version = "0.46.0"
|
4993
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
4991
4994
|
dependencies = [
|
4992
|
-
"ahash",
|
4993
4995
|
"bitflags",
|
4994
4996
|
"bytemuck",
|
4995
4997
|
"bytes",
|
@@ -5001,7 +5003,6 @@ dependencies = [
|
|
5001
5003
|
"libloading 0.8.8",
|
5002
5004
|
"memmap2",
|
5003
5005
|
"num-traits",
|
5004
|
-
"once_cell",
|
5005
5006
|
"percent-encoding",
|
5006
5007
|
"polars-arrow",
|
5007
5008
|
"polars-compute",
|
@@ -5024,10 +5025,9 @@ dependencies = [
|
|
5024
5025
|
|
5025
5026
|
[[package]]
|
5026
5027
|
name = "polars-python"
|
5027
|
-
version = "0.
|
5028
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
5028
|
+
version = "0.46.0"
|
5029
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
5029
5030
|
dependencies = [
|
5030
|
-
"ahash",
|
5031
5031
|
"arboard",
|
5032
5032
|
"bincode",
|
5033
5033
|
"bytemuck",
|
@@ -5036,18 +5036,19 @@ dependencies = [
|
|
5036
5036
|
"chrono-tz",
|
5037
5037
|
"either",
|
5038
5038
|
"flate2",
|
5039
|
+
"hashbrown 0.15.5",
|
5039
5040
|
"itoa",
|
5040
5041
|
"libc",
|
5041
5042
|
"ndarray",
|
5042
5043
|
"num-traits",
|
5043
5044
|
"numpy",
|
5044
|
-
"once_cell",
|
5045
5045
|
"polars",
|
5046
5046
|
"polars-arrow",
|
5047
5047
|
"polars-compute",
|
5048
5048
|
"polars-core",
|
5049
5049
|
"polars-error",
|
5050
5050
|
"polars-expr",
|
5051
|
+
"polars-ffi",
|
5051
5052
|
"polars-io",
|
5052
5053
|
"polars-lazy",
|
5053
5054
|
"polars-mem-engine",
|
@@ -5061,14 +5062,13 @@ dependencies = [
|
|
5061
5062
|
"rayon",
|
5062
5063
|
"recursive",
|
5063
5064
|
"serde_json",
|
5064
|
-
"thiserror 2.0.15",
|
5065
5065
|
"version_check",
|
5066
5066
|
]
|
5067
5067
|
|
5068
5068
|
[[package]]
|
5069
5069
|
name = "polars-row"
|
5070
|
-
version = "0.
|
5071
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
5070
|
+
version = "0.46.0"
|
5071
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
5072
5072
|
dependencies = [
|
5073
5073
|
"bitflags",
|
5074
5074
|
"bytemuck",
|
@@ -5080,8 +5080,8 @@ dependencies = [
|
|
5080
5080
|
|
5081
5081
|
[[package]]
|
5082
5082
|
name = "polars-schema"
|
5083
|
-
version = "0.
|
5084
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
5083
|
+
version = "0.46.0"
|
5084
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
5085
5085
|
dependencies = [
|
5086
5086
|
"indexmap",
|
5087
5087
|
"polars-error",
|
@@ -5092,9 +5092,10 @@ dependencies = [
|
|
5092
5092
|
|
5093
5093
|
[[package]]
|
5094
5094
|
name = "polars-sql"
|
5095
|
-
version = "0.
|
5096
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
5095
|
+
version = "0.46.0"
|
5096
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
5097
5097
|
dependencies = [
|
5098
|
+
"bitflags",
|
5098
5099
|
"hex",
|
5099
5100
|
"polars-core",
|
5100
5101
|
"polars-error",
|
@@ -5111,16 +5112,23 @@ dependencies = [
|
|
5111
5112
|
|
5112
5113
|
[[package]]
|
5113
5114
|
name = "polars-stream"
|
5114
|
-
version = "0.
|
5115
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
5115
|
+
version = "0.46.0"
|
5116
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
5116
5117
|
dependencies = [
|
5118
|
+
"async-channel",
|
5119
|
+
"async-trait",
|
5117
5120
|
"atomic-waker",
|
5121
|
+
"bitflags",
|
5122
|
+
"crossbeam-channel",
|
5118
5123
|
"crossbeam-deque",
|
5124
|
+
"crossbeam-queue",
|
5119
5125
|
"crossbeam-utils",
|
5120
5126
|
"futures",
|
5121
5127
|
"memmap2",
|
5122
5128
|
"parking_lot",
|
5129
|
+
"percent-encoding",
|
5123
5130
|
"pin-project-lite",
|
5131
|
+
"polars-arrow",
|
5124
5132
|
"polars-core",
|
5125
5133
|
"polars-error",
|
5126
5134
|
"polars-expr",
|
@@ -5130,6 +5138,7 @@ dependencies = [
|
|
5130
5138
|
"polars-parquet",
|
5131
5139
|
"polars-plan",
|
5132
5140
|
"polars-utils",
|
5141
|
+
"pyo3",
|
5133
5142
|
"rand 0.8.5",
|
5134
5143
|
"rayon",
|
5135
5144
|
"recursive",
|
@@ -5140,8 +5149,8 @@ dependencies = [
|
|
5140
5149
|
|
5141
5150
|
[[package]]
|
5142
5151
|
name = "polars-time"
|
5143
|
-
version = "0.
|
5144
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
5152
|
+
version = "0.46.0"
|
5153
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
5145
5154
|
dependencies = [
|
5146
5155
|
"atoi_simd",
|
5147
5156
|
"bytemuck",
|
@@ -5149,7 +5158,6 @@ dependencies = [
|
|
5149
5158
|
"chrono-tz",
|
5150
5159
|
"now",
|
5151
5160
|
"num-traits",
|
5152
|
-
"once_cell",
|
5153
5161
|
"polars-arrow",
|
5154
5162
|
"polars-compute",
|
5155
5163
|
"polars-core",
|
@@ -5164,28 +5172,30 @@ dependencies = [
|
|
5164
5172
|
|
5165
5173
|
[[package]]
|
5166
5174
|
name = "polars-utils"
|
5167
|
-
version = "0.
|
5168
|
-
source = "git+https://github.com/mwiewior/polars.git?rev=
|
5175
|
+
version = "0.46.0"
|
5176
|
+
source = "git+https://github.com/mwiewior/polars.git?rev=da42ae21ca9c25bc14562e36e07cf02eafd620ee#da42ae21ca9c25bc14562e36e07cf02eafd620ee"
|
5169
5177
|
dependencies = [
|
5170
|
-
"ahash",
|
5171
5178
|
"bincode",
|
5172
5179
|
"bytemuck",
|
5173
5180
|
"bytes",
|
5174
5181
|
"compact_str",
|
5175
5182
|
"flate2",
|
5183
|
+
"foldhash",
|
5176
5184
|
"hashbrown 0.15.5",
|
5177
5185
|
"indexmap",
|
5178
5186
|
"libc",
|
5179
5187
|
"memmap2",
|
5180
5188
|
"num-traits",
|
5181
|
-
"once_cell",
|
5182
5189
|
"polars-error",
|
5183
5190
|
"pyo3",
|
5184
5191
|
"rand 0.8.5",
|
5185
5192
|
"raw-cpuid",
|
5186
5193
|
"rayon",
|
5194
|
+
"regex",
|
5195
|
+
"rmp-serde",
|
5187
5196
|
"serde",
|
5188
5197
|
"serde_json",
|
5198
|
+
"slotmap",
|
5189
5199
|
"stacker",
|
5190
5200
|
"sysinfo",
|
5191
5201
|
"version_check",
|
@@ -5193,7 +5203,7 @@ dependencies = [
|
|
5193
5203
|
|
5194
5204
|
[[package]]
|
5195
5205
|
name = "polars_bio"
|
5196
|
-
version = "0.
|
5206
|
+
version = "0.13.0"
|
5197
5207
|
dependencies = [
|
5198
5208
|
"arrow",
|
5199
5209
|
"arrow-array",
|
@@ -5292,7 +5302,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5292
5302
|
checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
|
5293
5303
|
dependencies = [
|
5294
5304
|
"anyhow",
|
5295
|
-
"itertools
|
5305
|
+
"itertools",
|
5296
5306
|
"proc-macro2",
|
5297
5307
|
"quote",
|
5298
5308
|
"syn 2.0.106",
|
@@ -5808,6 +5818,28 @@ version = "1.0.3"
|
|
5808
5818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
5809
5819
|
checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
|
5810
5820
|
|
5821
|
+
[[package]]
|
5822
|
+
name = "rmp"
|
5823
|
+
version = "0.8.14"
|
5824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
5825
|
+
checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4"
|
5826
|
+
dependencies = [
|
5827
|
+
"byteorder",
|
5828
|
+
"num-traits",
|
5829
|
+
"paste",
|
5830
|
+
]
|
5831
|
+
|
5832
|
+
[[package]]
|
5833
|
+
name = "rmp-serde"
|
5834
|
+
version = "1.3.0"
|
5835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
5836
|
+
checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db"
|
5837
|
+
dependencies = [
|
5838
|
+
"byteorder",
|
5839
|
+
"rmp",
|
5840
|
+
"serde",
|
5841
|
+
]
|
5842
|
+
|
5811
5843
|
[[package]]
|
5812
5844
|
name = "rsa"
|
5813
5845
|
version = "0.9.8"
|
@@ -6180,6 +6212,16 @@ version = "1.3.0"
|
|
6180
6212
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
6181
6213
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
6182
6214
|
|
6215
|
+
[[package]]
|
6216
|
+
name = "signal-hook"
|
6217
|
+
version = "0.3.18"
|
6218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
6219
|
+
checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
|
6220
|
+
dependencies = [
|
6221
|
+
"libc",
|
6222
|
+
"signal-hook-registry",
|
6223
|
+
]
|
6224
|
+
|
6183
6225
|
[[package]]
|
6184
6226
|
name = "signal-hook-registry"
|
6185
6227
|
version = "1.4.6"
|
@@ -6253,6 +6295,15 @@ version = "1.0.1"
|
|
6253
6295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
6254
6296
|
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
6255
6297
|
|
6298
|
+
[[package]]
|
6299
|
+
name = "skiplist"
|
6300
|
+
version = "0.5.1"
|
6301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
6302
|
+
checksum = "0eec25f46463fcdc5e02f388c2780b1b58e01be81a8378e62ec60931beccc3f6"
|
6303
|
+
dependencies = [
|
6304
|
+
"rand 0.8.5",
|
6305
|
+
]
|
6306
|
+
|
6256
6307
|
[[package]]
|
6257
6308
|
name = "slab"
|
6258
6309
|
version = "0.4.11"
|
@@ -6274,27 +6325,6 @@ version = "1.15.1"
|
|
6274
6325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
6275
6326
|
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
6276
6327
|
|
6277
|
-
[[package]]
|
6278
|
-
name = "snafu"
|
6279
|
-
version = "0.8.6"
|
6280
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
6281
|
-
checksum = "320b01e011bf8d5d7a4a4a4be966d9160968935849c83b918827f6a435e7f627"
|
6282
|
-
dependencies = [
|
6283
|
-
"snafu-derive",
|
6284
|
-
]
|
6285
|
-
|
6286
|
-
[[package]]
|
6287
|
-
name = "snafu-derive"
|
6288
|
-
version = "0.8.6"
|
6289
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
6290
|
-
checksum = "1961e2ef424c1424204d3a5d6975f934f56b6d50ff5732382d84ebf460e147f7"
|
6291
|
-
dependencies = [
|
6292
|
-
"heck",
|
6293
|
-
"proc-macro2",
|
6294
|
-
"quote",
|
6295
|
-
"syn 2.0.106",
|
6296
|
-
]
|
6297
|
-
|
6298
6328
|
[[package]]
|
6299
6329
|
name = "snap"
|
6300
6330
|
version = "1.1.1"
|