polars-df 0.21.1-arm64-darwin → 0.23.0-arm64-darwin

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f6079bcb0c3991c5894594ae855f0c01f764e2422541bdd8ad2d8f0f78e68c0f
4
- data.tar.gz: 18b74b240711e45db301f8dc9547414be7b813210af97ef34b07c271bcaf8e66
3
+ metadata.gz: 035b904234efe04de79e6a288df8855790897cb4aad0c180e72d97e83274a22e
4
+ data.tar.gz: 23a368554e25fc6dcbc83f8b6bddbe0182ac9399124b3207c77dcda3c21657c9
5
5
  SHA512:
6
- metadata.gz: d9f2610823af5ecfffde025d1b78783e22b5e22180b155982517b6f3357bd5c77a7a2a22d244886429545316523a9fc2fa9e49eec861f891ab7eaeaec25864e0
7
- data.tar.gz: b90adc1e21ea7f46b27864c2ff5bb400cd8a6f648e1c37d7cf0c27f3d913affebc4e72453092df3c125adc11dcc6c32adce4afcb7d9fd5e976b65286dae19efe
6
+ metadata.gz: ff226b99c2cc2e5358009961186afdb4277c8cd8ce3f9ed91f8009d53106d9d434fd12b1f369801101f316473ccda7aa2de935800aef54ff0fd6ac20f2b380b8
7
+ data.tar.gz: f34f3867d950de04e26ca00957bcab4d0b56f114c1b57a2555684763417189d9c2aaea4b69f605f65e615c8edec63fb046e49e2f5fc246aa919181ba37a759e7
data/CHANGELOG.md CHANGED
@@ -1,3 +1,18 @@
1
+ ## 0.23.0 (2025-11-04)
2
+
3
+ - Updated Polars to 0.52.0
4
+
5
+ ## 0.22.0 (2025-09-17)
6
+
7
+ - Updated Polars to 0.51.0
8
+ - Added `serialize` and `deserialize` methods to `DataFrame`
9
+ - Added `storage_options` and `retries` options to `sink_ipc` method
10
+ - Added `business_day_count` method to `Polars`
11
+ - Added experimental support for Iceberg
12
+ - Added experimental `cast_options` option to `scan_parquet` method
13
+ - Changed `read_parquet_schema` method to return `Schema`
14
+ - Fixed `Object` type
15
+
1
16
  ## 0.21.1 (2025-08-18)
2
17
 
3
18
  - Added `read_parquet_metadata` method to `Polars`
data/Cargo.lock CHANGED
@@ -710,6 +710,12 @@ version = "0.1.5"
710
710
  source = "registry+https://github.com/rust-lang/crates.io-index"
711
711
  checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
712
712
 
713
+ [[package]]
714
+ name = "foldhash"
715
+ version = "0.2.0"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
718
+
713
719
  [[package]]
714
720
  name = "form_urlencoded"
715
721
  version = "1.2.1"
@@ -888,11 +894,11 @@ dependencies = [
888
894
 
889
895
  [[package]]
890
896
  name = "halfbrown"
891
- version = "0.3.0"
897
+ version = "0.4.0"
892
898
  source = "registry+https://github.com/rust-lang/crates.io-index"
893
- checksum = "aa2c385c6df70fd180bbb673d93039dbd2cd34e41d782600bdf6e1ca7bce39aa"
899
+ checksum = "0c7ed2f2edad8a14c8186b847909a41fbb9c3eafa44f88bd891114ed5019da09"
894
900
  dependencies = [
895
- "hashbrown",
901
+ "hashbrown 0.16.0",
896
902
  "serde",
897
903
  ]
898
904
 
@@ -904,7 +910,18 @@ checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
904
910
  dependencies = [
905
911
  "allocator-api2",
906
912
  "equivalent",
907
- "foldhash",
913
+ "foldhash 0.1.5",
914
+ ]
915
+
916
+ [[package]]
917
+ name = "hashbrown"
918
+ version = "0.16.0"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
921
+ dependencies = [
922
+ "allocator-api2",
923
+ "equivalent",
924
+ "foldhash 0.2.0",
908
925
  "rayon",
909
926
  "serde",
910
927
  ]
@@ -1167,13 +1184,14 @@ dependencies = [
1167
1184
 
1168
1185
  [[package]]
1169
1186
  name = "indexmap"
1170
- version = "2.9.0"
1187
+ version = "2.12.0"
1171
1188
  source = "registry+https://github.com/rust-lang/crates.io-index"
1172
- checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
1189
+ checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
1173
1190
  dependencies = [
1174
1191
  "equivalent",
1175
- "hashbrown",
1192
+ "hashbrown 0.16.0",
1176
1193
  "serde",
1194
+ "serde_core",
1177
1195
  ]
1178
1196
 
1179
1197
  [[package]]
@@ -1391,8 +1409,9 @@ dependencies = [
1391
1409
 
1392
1410
  [[package]]
1393
1411
  name = "magnus"
1394
- version = "0.7.1"
1395
- source = "git+https://github.com/matsadler/magnus.git?rev=4125ee2ab5a405d17aa6d7503961c1ecdbe499ef#4125ee2ab5a405d17aa6d7503961c1ecdbe499ef"
1412
+ version = "0.8.2"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
1396
1415
  dependencies = [
1397
1416
  "chrono",
1398
1417
  "magnus-macros",
@@ -1403,8 +1422,9 @@ dependencies = [
1403
1422
 
1404
1423
  [[package]]
1405
1424
  name = "magnus-macros"
1406
- version = "0.6.0"
1407
- source = "git+https://github.com/matsadler/magnus.git?rev=4125ee2ab5a405d17aa6d7503961c1ecdbe499ef#4125ee2ab5a405d17aa6d7503961c1ecdbe499ef"
1425
+ version = "0.8.0"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
1408
1428
  dependencies = [
1409
1429
  "proc-macro2",
1410
1430
  "quote",
@@ -1649,12 +1669,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
1669
  checksum = "3daf8e3d4b712abe1d690838f6e29fb76b76ea19589c4afa39ec30e12f62af71"
1650
1670
  dependencies = [
1651
1671
  "array-init-cursor",
1652
- "hashbrown",
1672
+ "hashbrown 0.15.3",
1653
1673
  ]
1654
1674
 
1655
1675
  [[package]]
1656
1676
  name = "polars"
1657
- version = "0.21.1"
1677
+ version = "0.23.0"
1658
1678
  dependencies = [
1659
1679
  "ahash",
1660
1680
  "bytes",
@@ -1664,10 +1684,12 @@ dependencies = [
1664
1684
  "magnus",
1665
1685
  "mimalloc",
1666
1686
  "num-traits",
1667
- "polars 0.50.0",
1687
+ "polars 0.52.0",
1668
1688
  "polars-arrow",
1689
+ "polars-compute",
1669
1690
  "polars-core",
1670
1691
  "polars-dtype",
1692
+ "polars-error",
1671
1693
  "polars-io",
1672
1694
  "polars-lazy",
1673
1695
  "polars-parquet",
@@ -1680,15 +1702,17 @@ dependencies = [
1680
1702
 
1681
1703
  [[package]]
1682
1704
  name = "polars"
1683
- version = "0.50.0"
1705
+ version = "0.52.0"
1684
1706
  source = "registry+https://github.com/rust-lang/crates.io-index"
1685
- checksum = "fde57577c2b4b823d85617c2c95c11fcdc649e68467030e321e573800524946c"
1707
+ checksum = "6bc9ea901050c1bb8747ee411bc7fbb390f3b399931e7484719512965132a248"
1686
1708
  dependencies = [
1687
1709
  "getrandom 0.2.16",
1688
1710
  "getrandom 0.3.3",
1689
1711
  "polars-arrow",
1712
+ "polars-compute",
1690
1713
  "polars-core",
1691
1714
  "polars-error",
1715
+ "polars-expr",
1692
1716
  "polars-io",
1693
1717
  "polars-lazy",
1694
1718
  "polars-ops",
@@ -1702,9 +1726,9 @@ dependencies = [
1702
1726
 
1703
1727
  [[package]]
1704
1728
  name = "polars-arrow"
1705
- version = "0.50.0"
1729
+ version = "0.52.0"
1706
1730
  source = "registry+https://github.com/rust-lang/crates.io-index"
1707
- checksum = "29f705dc037eb0a4213554a19320f13c02095c63bdd5e9e7f960817fa29b7b8d"
1731
+ checksum = "33d3fe43f8702cf7899ff3d516c2e5f7dc84ee6f6a3007e1a831a0ff87940704"
1708
1732
  dependencies = [
1709
1733
  "atoi_simd",
1710
1734
  "avro-schema",
@@ -1717,7 +1741,7 @@ dependencies = [
1717
1741
  "ethnum",
1718
1742
  "getrandom 0.2.16",
1719
1743
  "getrandom 0.3.3",
1720
- "hashbrown",
1744
+ "hashbrown 0.16.0",
1721
1745
  "itoa",
1722
1746
  "lz4",
1723
1747
  "num-traits",
@@ -1745,16 +1769,16 @@ dependencies = [
1745
1769
 
1746
1770
  [[package]]
1747
1771
  name = "polars-compute"
1748
- version = "0.50.0"
1772
+ version = "0.52.0"
1749
1773
  source = "registry+https://github.com/rust-lang/crates.io-index"
1750
- checksum = "896f4efdf1292121df34d6214fd32e634ce9aa5f3739519b3ccd9c11bda75d2a"
1774
+ checksum = "d29cc7497378dee3a002f117e0b4e16b7cbe6c8ed3da16a0229c89294af7c3bf"
1751
1775
  dependencies = [
1752
1776
  "atoi_simd",
1753
1777
  "bytemuck",
1754
1778
  "chrono",
1755
1779
  "either",
1756
1780
  "fast-float2",
1757
- "hashbrown",
1781
+ "hashbrown 0.16.0",
1758
1782
  "itoa",
1759
1783
  "num-traits",
1760
1784
  "polars-arrow",
@@ -1763,7 +1787,6 @@ dependencies = [
1763
1787
  "rand",
1764
1788
  "ryu",
1765
1789
  "serde",
1766
- "skiplist",
1767
1790
  "strength_reduce",
1768
1791
  "strum_macros",
1769
1792
  "version_check",
@@ -1771,9 +1794,9 @@ dependencies = [
1771
1794
 
1772
1795
  [[package]]
1773
1796
  name = "polars-core"
1774
- version = "0.50.0"
1797
+ version = "0.52.0"
1775
1798
  source = "registry+https://github.com/rust-lang/crates.io-index"
1776
- checksum = "11e2c54762ac17a039552033d81779b58619b832aa4f36ebc3395f9aa8bce083"
1799
+ checksum = "48409b7440cb1a4aa84953fe3a4189dfbfb300a3298266a92a37363476641e40"
1777
1800
  dependencies = [
1778
1801
  "bitflags",
1779
1802
  "boxcar",
@@ -1782,7 +1805,7 @@ dependencies = [
1782
1805
  "chrono-tz",
1783
1806
  "comfy-table",
1784
1807
  "either",
1785
- "hashbrown",
1808
+ "hashbrown 0.16.0",
1786
1809
  "indexmap",
1787
1810
  "itoa",
1788
1811
  "num-traits",
@@ -1807,12 +1830,12 @@ dependencies = [
1807
1830
 
1808
1831
  [[package]]
1809
1832
  name = "polars-dtype"
1810
- version = "0.50.0"
1833
+ version = "0.52.0"
1811
1834
  source = "registry+https://github.com/rust-lang/crates.io-index"
1812
- checksum = "6bdc47854d72f3df098a06b984de4105ca5030123445d3edef27502e6034019a"
1835
+ checksum = "7007e9e8b7b657cbd339b65246af7e87f5756ee9a860119b9424ddffd2aaf133"
1813
1836
  dependencies = [
1814
1837
  "boxcar",
1815
- "hashbrown",
1838
+ "hashbrown 0.16.0",
1816
1839
  "polars-arrow",
1817
1840
  "polars-error",
1818
1841
  "polars-utils",
@@ -1822,9 +1845,9 @@ dependencies = [
1822
1845
 
1823
1846
  [[package]]
1824
1847
  name = "polars-error"
1825
- version = "0.50.0"
1848
+ version = "0.52.0"
1826
1849
  source = "registry+https://github.com/rust-lang/crates.io-index"
1827
- checksum = "24d0fe86ef36dfa5c9e0b9833effd2e42cd64054b862fe40a243a635ecf62771"
1850
+ checksum = "f9a6be22566c89f6405f553bfdb7c8a6cb20ec51b35f3172de9a25fa3e252d85"
1828
1851
  dependencies = [
1829
1852
  "avro-schema",
1830
1853
  "object_store",
@@ -1837,17 +1860,18 @@ dependencies = [
1837
1860
 
1838
1861
  [[package]]
1839
1862
  name = "polars-expr"
1840
- version = "0.50.0"
1863
+ version = "0.52.0"
1841
1864
  source = "registry+https://github.com/rust-lang/crates.io-index"
1842
- checksum = "98212e4899b5432f2b89f2f33c665240f8882cf757e7a5d18cf7b03ba80cdc1e"
1865
+ checksum = "6199a50d3e1afd0674fb009e340cbfb0010682b2387187a36328c00f3f2ca87b"
1843
1866
  dependencies = [
1844
1867
  "bitflags",
1845
- "hashbrown",
1868
+ "hashbrown 0.16.0",
1846
1869
  "num-traits",
1847
1870
  "polars-arrow",
1848
1871
  "polars-compute",
1849
1872
  "polars-core",
1850
1873
  "polars-io",
1874
+ "polars-json",
1851
1875
  "polars-ops",
1852
1876
  "polars-plan",
1853
1877
  "polars-row",
@@ -1856,13 +1880,15 @@ dependencies = [
1856
1880
  "rand",
1857
1881
  "rayon",
1858
1882
  "recursive",
1883
+ "regex",
1884
+ "version_check",
1859
1885
  ]
1860
1886
 
1861
1887
  [[package]]
1862
1888
  name = "polars-io"
1863
- version = "0.50.0"
1889
+ version = "0.52.0"
1864
1890
  source = "registry+https://github.com/rust-lang/crates.io-index"
1865
- checksum = "cba1a01ed61ec1ba3f3f7d1a7c4ad61cb7ece4bfd606d5d52bfa1384ce707109"
1891
+ checksum = "be3714acdff87170141880a07f5d9233490d3bd5531c41898f6969d440feee11"
1866
1892
  dependencies = [
1867
1893
  "async-trait",
1868
1894
  "atoi_simd",
@@ -1875,7 +1901,7 @@ dependencies = [
1875
1901
  "fs4",
1876
1902
  "futures",
1877
1903
  "glob",
1878
- "hashbrown",
1904
+ "hashbrown 0.16.0",
1879
1905
  "home",
1880
1906
  "itoa",
1881
1907
  "memchr",
@@ -1884,6 +1910,7 @@ dependencies = [
1884
1910
  "object_store",
1885
1911
  "percent-encoding",
1886
1912
  "polars-arrow",
1913
+ "polars-compute",
1887
1914
  "polars-core",
1888
1915
  "polars-error",
1889
1916
  "polars-json",
@@ -1902,21 +1929,19 @@ dependencies = [
1902
1929
  "strum",
1903
1930
  "strum_macros",
1904
1931
  "tokio",
1905
- "tokio-util",
1906
- "url",
1907
1932
  "zstd",
1908
1933
  ]
1909
1934
 
1910
1935
  [[package]]
1911
1936
  name = "polars-json"
1912
- version = "0.50.0"
1937
+ version = "0.52.0"
1913
1938
  source = "registry+https://github.com/rust-lang/crates.io-index"
1914
- checksum = "9d546be779c0f2e87870538deb87ca6d90910ba09cb867409c87ed5c13518b5d"
1939
+ checksum = "3dd2126daebf58da564fc5840cd55eb8eb2479d24dfced0a1aea2178a9b33b12"
1915
1940
  dependencies = [
1916
1941
  "chrono",
1917
1942
  "chrono-tz",
1918
1943
  "fallible-streaming-iterator",
1919
- "hashbrown",
1944
+ "hashbrown 0.16.0",
1920
1945
  "indexmap",
1921
1946
  "itoa",
1922
1947
  "num-traits",
@@ -1931,9 +1956,9 @@ dependencies = [
1931
1956
 
1932
1957
  [[package]]
1933
1958
  name = "polars-lazy"
1934
- version = "0.50.0"
1959
+ version = "0.52.0"
1935
1960
  source = "registry+https://github.com/rust-lang/crates.io-index"
1936
- checksum = "1aa4dbd41c7508735c3e8c2607aef39679d89298b53f1462710fc3f95b6c5cbd"
1961
+ checksum = "ea136c360d03aafe56e0233495e30044ce43639b8b0360a4a38e840233f048a1"
1937
1962
  dependencies = [
1938
1963
  "bitflags",
1939
1964
  "chrono",
@@ -1959,9 +1984,9 @@ dependencies = [
1959
1984
 
1960
1985
  [[package]]
1961
1986
  name = "polars-mem-engine"
1962
- version = "0.50.0"
1987
+ version = "0.52.0"
1963
1988
  source = "registry+https://github.com/rust-lang/crates.io-index"
1964
- checksum = "712491f22624672d1c97a0f1faca93645ce749aa497c04dd67914738872474e1"
1989
+ checksum = "0f6e455ceb6e5aee7ed7d5c8944104e66992173e03a9c42f9670226318672249"
1965
1990
  dependencies = [
1966
1991
  "futures",
1967
1992
  "memmap2",
@@ -1982,9 +2007,9 @@ dependencies = [
1982
2007
 
1983
2008
  [[package]]
1984
2009
  name = "polars-ops"
1985
- version = "0.50.0"
2010
+ version = "0.52.0"
1986
2011
  source = "registry+https://github.com/rust-lang/crates.io-index"
1987
- checksum = "7c433eb8eb4d5767504a6a145df286e503307d773dc92a085b9cabc6eaaafb01"
2012
+ checksum = "7b59c80a019ef0e6f09b4416d2647076a52839305c9eb11919e8298ec667f853"
1988
2013
  dependencies = [
1989
2014
  "aho-corasick",
1990
2015
  "argminmax",
@@ -1993,7 +2018,7 @@ dependencies = [
1993
2018
  "chrono",
1994
2019
  "chrono-tz",
1995
2020
  "either",
1996
- "hashbrown",
2021
+ "hashbrown 0.16.0",
1997
2022
  "hex",
1998
2023
  "indexmap",
1999
2024
  "jsonpath_lib_polars_vendor",
@@ -2022,9 +2047,9 @@ dependencies = [
2022
2047
 
2023
2048
  [[package]]
2024
2049
  name = "polars-parquet"
2025
- version = "0.50.0"
2050
+ version = "0.52.0"
2026
2051
  source = "registry+https://github.com/rust-lang/crates.io-index"
2027
- checksum = "6efe8ffb9207c3d50d47ee9b5ee750beb889e7cffd2b61291766c74a020ee51d"
2052
+ checksum = "93c2439d127c59e6bfc9d698419bdb45210068a6f501d44e6096429ad72c2eaa"
2028
2053
  dependencies = [
2029
2054
  "async-stream",
2030
2055
  "base64",
@@ -2033,7 +2058,7 @@ dependencies = [
2033
2058
  "ethnum",
2034
2059
  "flate2",
2035
2060
  "futures",
2036
- "hashbrown",
2061
+ "hashbrown 0.16.0",
2037
2062
  "lz4",
2038
2063
  "num-traits",
2039
2064
  "polars-arrow",
@@ -2060,9 +2085,9 @@ dependencies = [
2060
2085
 
2061
2086
  [[package]]
2062
2087
  name = "polars-plan"
2063
- version = "0.50.0"
2088
+ version = "0.52.0"
2064
2089
  source = "registry+https://github.com/rust-lang/crates.io-index"
2065
- checksum = "2219ff36b304d0543185773cf182c49eca4f558403fb33c464b7688cd4f178d2"
2090
+ checksum = "65b4619f5c7e9b91f18611c9ed82ebeee4b10052160825c1316ecf4dbd4d97e6"
2066
2091
  dependencies = [
2067
2092
  "bitflags",
2068
2093
  "bytemuck",
@@ -2071,7 +2096,7 @@ dependencies = [
2071
2096
  "chrono-tz",
2072
2097
  "either",
2073
2098
  "futures",
2074
- "hashbrown",
2099
+ "hashbrown 0.16.0",
2075
2100
  "memmap2",
2076
2101
  "num-traits",
2077
2102
  "percent-encoding",
@@ -2090,15 +2115,16 @@ dependencies = [
2090
2115
  "regex",
2091
2116
  "serde",
2092
2117
  "sha2",
2118
+ "slotmap",
2093
2119
  "strum_macros",
2094
2120
  "version_check",
2095
2121
  ]
2096
2122
 
2097
2123
  [[package]]
2098
2124
  name = "polars-row"
2099
- version = "0.50.0"
2125
+ version = "0.52.0"
2100
2126
  source = "registry+https://github.com/rust-lang/crates.io-index"
2101
- checksum = "1eb03bbe6518a9a50fbe2f0d587f6634cf33f1e485657ef3db2bfab997fbc7a4"
2127
+ checksum = "a18d232f25b83032e280a279a1f40beb8a6f8fc43907b13dc07b1c56f3b11eea"
2102
2128
  dependencies = [
2103
2129
  "bitflags",
2104
2130
  "bytemuck",
@@ -2111,9 +2137,9 @@ dependencies = [
2111
2137
 
2112
2138
  [[package]]
2113
2139
  name = "polars-schema"
2114
- version = "0.50.0"
2140
+ version = "0.52.0"
2115
2141
  source = "registry+https://github.com/rust-lang/crates.io-index"
2116
- checksum = "4b2daa5d628c4aa56deed967cc64fd24c9f62a919c8aaaf2b77b1457f8684f98"
2142
+ checksum = "f73e21d429ae1c23f442b0220ccfe773a9734a44e997b5062a741842909d9441"
2117
2143
  dependencies = [
2118
2144
  "indexmap",
2119
2145
  "polars-error",
@@ -2124,9 +2150,9 @@ dependencies = [
2124
2150
 
2125
2151
  [[package]]
2126
2152
  name = "polars-sql"
2127
- version = "0.50.0"
2153
+ version = "0.52.0"
2128
2154
  source = "registry+https://github.com/rust-lang/crates.io-index"
2129
- checksum = "f9021d46eb864c2bd944a51676c24c17eaa9e5fe755be464a50827179e6dcb8d"
2155
+ checksum = "3e67ac1cbb0c972a57af3be12f19aa9803898863fe95c33cdd39df05f5738a75"
2130
2156
  dependencies = [
2131
2157
  "bitflags",
2132
2158
  "hex",
@@ -2145,14 +2171,15 @@ dependencies = [
2145
2171
 
2146
2172
  [[package]]
2147
2173
  name = "polars-stream"
2148
- version = "0.50.0"
2174
+ version = "0.52.0"
2149
2175
  source = "registry+https://github.com/rust-lang/crates.io-index"
2150
- checksum = "22323af55f0f2f9f9d64d65a5b0277b8dfa45300e4f6ba8d96e30817059c433e"
2176
+ checksum = "2ff19612074640a9d65e5928b7223db76ffee63e55b276f1e466d06719eb7362"
2151
2177
  dependencies = [
2152
2178
  "async-channel",
2153
2179
  "async-trait",
2154
2180
  "atomic-waker",
2155
2181
  "bitflags",
2182
+ "chrono-tz",
2156
2183
  "crossbeam-channel",
2157
2184
  "crossbeam-deque",
2158
2185
  "crossbeam-queue",
@@ -2163,6 +2190,7 @@ dependencies = [
2163
2190
  "percent-encoding",
2164
2191
  "pin-project-lite",
2165
2192
  "polars-arrow",
2193
+ "polars-compute",
2166
2194
  "polars-core",
2167
2195
  "polars-error",
2168
2196
  "polars-expr",
@@ -2171,6 +2199,7 @@ dependencies = [
2171
2199
  "polars-ops",
2172
2200
  "polars-parquet",
2173
2201
  "polars-plan",
2202
+ "polars-time",
2174
2203
  "polars-utils",
2175
2204
  "rand",
2176
2205
  "rayon",
@@ -2182,9 +2211,9 @@ dependencies = [
2182
2211
 
2183
2212
  [[package]]
2184
2213
  name = "polars-time"
2185
- version = "0.50.0"
2214
+ version = "0.52.0"
2186
2215
  source = "registry+https://github.com/rust-lang/crates.io-index"
2187
- checksum = "954b926cf121787c9fd2cf274b66ed85be46ab425405d0c5a1830c885c78b259"
2216
+ checksum = "ddce7a9f81d5f47d981bcee4a8db004f9596bb51f0f4d9d93667a1a00d88166c"
2188
2217
  dependencies = [
2189
2218
  "atoi_simd",
2190
2219
  "bytemuck",
@@ -2206,17 +2235,18 @@ dependencies = [
2206
2235
 
2207
2236
  [[package]]
2208
2237
  name = "polars-utils"
2209
- version = "0.50.0"
2238
+ version = "0.52.0"
2210
2239
  source = "registry+https://github.com/rust-lang/crates.io-index"
2211
- checksum = "846a868e172550e4a3a465d7cdddee06377ccd0ea863cd49afd6f903078e0cff"
2240
+ checksum = "667c1bc2d2313f934d711f6e3b58d8d9f80351d14ea60af936a26b7dfb06e309"
2212
2241
  dependencies = [
2213
2242
  "bincode",
2214
2243
  "bytemuck",
2215
2244
  "bytes",
2216
2245
  "compact_str",
2246
+ "either",
2217
2247
  "flate2",
2218
- "foldhash",
2219
- "hashbrown",
2248
+ "foldhash 0.2.0",
2249
+ "hashbrown 0.16.0",
2220
2250
  "indexmap",
2221
2251
  "libc",
2222
2252
  "memmap2",
@@ -2446,9 +2476,9 @@ dependencies = [
2446
2476
 
2447
2477
  [[package]]
2448
2478
  name = "rb-sys-env"
2449
- version = "0.1.2"
2479
+ version = "0.2.2"
2450
2480
  source = "registry+https://github.com/rust-lang/crates.io-index"
2451
- checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
2481
+ checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
2452
2482
 
2453
2483
  [[package]]
2454
2484
  name = "recursive"
@@ -2783,18 +2813,28 @@ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2783
2813
 
2784
2814
  [[package]]
2785
2815
  name = "serde"
2786
- version = "1.0.219"
2816
+ version = "1.0.228"
2787
2817
  source = "registry+https://github.com/rust-lang/crates.io-index"
2788
- checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
2818
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2819
+ dependencies = [
2820
+ "serde_core",
2821
+ "serde_derive",
2822
+ ]
2823
+
2824
+ [[package]]
2825
+ name = "serde_core"
2826
+ version = "1.0.228"
2827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2828
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2789
2829
  dependencies = [
2790
2830
  "serde_derive",
2791
2831
  ]
2792
2832
 
2793
2833
  [[package]]
2794
2834
  name = "serde_derive"
2795
- version = "1.0.219"
2835
+ version = "1.0.228"
2796
2836
  source = "registry+https://github.com/rust-lang/crates.io-index"
2797
- checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2837
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2798
2838
  dependencies = [
2799
2839
  "proc-macro2",
2800
2840
  "quote",
@@ -2880,12 +2920,11 @@ dependencies = [
2880
2920
 
2881
2921
  [[package]]
2882
2922
  name = "simd-json"
2883
- version = "0.15.1"
2923
+ version = "0.17.0"
2884
2924
  source = "registry+https://github.com/rust-lang/crates.io-index"
2885
- checksum = "c962f626b54771990066e5435ec8331d1462576cd2d1e62f24076ae014f92112"
2925
+ checksum = "4255126f310d2ba20048db6321c81ab376f6a6735608bf11f0785c41f01f64e3"
2886
2926
  dependencies = [
2887
2927
  "ahash",
2888
- "getrandom 0.3.3",
2889
2928
  "halfbrown",
2890
2929
  "once_cell",
2891
2930
  "ref-cast",
@@ -2907,16 +2946,6 @@ version = "1.0.1"
2907
2946
  source = "registry+https://github.com/rust-lang/crates.io-index"
2908
2947
  checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
2909
2948
 
2910
- [[package]]
2911
- name = "skiplist"
2912
- version = "0.6.0"
2913
- source = "registry+https://github.com/rust-lang/crates.io-index"
2914
- checksum = "f354fd282d3177c2951004953e2fdc4cb342fa159bbee8b829852b6a081c8ea1"
2915
- dependencies = [
2916
- "rand",
2917
- "thiserror",
2918
- ]
2919
-
2920
2949
  [[package]]
2921
2950
  name = "slab"
2922
2951
  version = "0.4.9"
@@ -2932,6 +2961,7 @@ version = "1.0.7"
2932
2961
  source = "registry+https://github.com/rust-lang/crates.io-index"
2933
2962
  checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
2934
2963
  dependencies = [
2964
+ "serde",
2935
2965
  "version_check",
2936
2966
  ]
2937
2967
 
@@ -3311,9 +3341,9 @@ dependencies = [
3311
3341
 
3312
3342
  [[package]]
3313
3343
  name = "value-trait"
3314
- version = "0.11.0"
3344
+ version = "0.12.1"
3315
3345
  source = "registry+https://github.com/rust-lang/crates.io-index"
3316
- checksum = "0508fce11ad19e0aab49ce20b6bec7f8f82902ded31df1c9fc61b90f0eb396b8"
3346
+ checksum = "8e80f0c733af0720a501b3905d22e2f97662d8eacfe082a75ed7ffb5ab08cb59"
3317
3347
  dependencies = [
3318
3348
  "float-cmp",
3319
3349
  "halfbrown",
data/Cargo.toml CHANGED
@@ -4,3 +4,6 @@ resolver = "2"
4
4
 
5
5
  [profile.release]
6
6
  strip = true
7
+
8
+ [profile.dev]
9
+ strip = true