polars-df 0.8.0-x86_64-linux → 0.9.0-x86_64-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +30 -1
  3. data/Cargo.lock +107 -59
  4. data/Cargo.toml +0 -3
  5. data/LICENSE-THIRD-PARTY.txt +1726 -754
  6. data/LICENSE.txt +1 -1
  7. data/README.md +2 -2
  8. data/lib/polars/3.1/polars.so +0 -0
  9. data/lib/polars/3.2/polars.so +0 -0
  10. data/lib/polars/3.3/polars.so +0 -0
  11. data/lib/polars/array_expr.rb +449 -0
  12. data/lib/polars/array_name_space.rb +346 -0
  13. data/lib/polars/cat_expr.rb +24 -0
  14. data/lib/polars/cat_name_space.rb +75 -0
  15. data/lib/polars/config.rb +2 -2
  16. data/lib/polars/data_frame.rb +179 -43
  17. data/lib/polars/data_types.rb +191 -28
  18. data/lib/polars/date_time_expr.rb +31 -14
  19. data/lib/polars/exceptions.rb +12 -1
  20. data/lib/polars/expr.rb +866 -186
  21. data/lib/polars/functions/aggregation/horizontal.rb +246 -0
  22. data/lib/polars/functions/aggregation/vertical.rb +282 -0
  23. data/lib/polars/functions/as_datatype.rb +248 -0
  24. data/lib/polars/functions/col.rb +47 -0
  25. data/lib/polars/functions/eager.rb +182 -0
  26. data/lib/polars/functions/lazy.rb +1280 -0
  27. data/lib/polars/functions/len.rb +49 -0
  28. data/lib/polars/functions/lit.rb +35 -0
  29. data/lib/polars/functions/random.rb +16 -0
  30. data/lib/polars/functions/range/date_range.rb +103 -0
  31. data/lib/polars/functions/range/int_range.rb +51 -0
  32. data/lib/polars/functions/repeat.rb +144 -0
  33. data/lib/polars/functions/whenthen.rb +27 -0
  34. data/lib/polars/functions.rb +29 -416
  35. data/lib/polars/group_by.rb +2 -2
  36. data/lib/polars/io.rb +18 -25
  37. data/lib/polars/lazy_frame.rb +367 -53
  38. data/lib/polars/list_expr.rb +152 -6
  39. data/lib/polars/list_name_space.rb +102 -0
  40. data/lib/polars/meta_expr.rb +175 -7
  41. data/lib/polars/series.rb +273 -34
  42. data/lib/polars/string_cache.rb +75 -0
  43. data/lib/polars/string_expr.rb +412 -96
  44. data/lib/polars/string_name_space.rb +4 -4
  45. data/lib/polars/testing.rb +507 -0
  46. data/lib/polars/utils.rb +52 -8
  47. data/lib/polars/version.rb +1 -1
  48. data/lib/polars.rb +15 -2
  49. metadata +33 -4
  50. data/lib/polars/lazy_functions.rb +0 -1181
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 531c36f1e61d0ed3fbf45fb36069159676eae15a220259f44e7214ae828ce20e
4
- data.tar.gz: a966c92dc5764a1284dfc1323f9ae725eb04bb9ef52ad0701c4cb6d12d6cc65c
3
+ metadata.gz: 9fc36b7a7945b1b6af6d205b717f74a4840d3e330a091407fd080e7f872a882f
4
+ data.tar.gz: 46662c51a7bb515d291cda1b43ad60d7940bffb0d69020b3f019491218847001
5
5
  SHA512:
6
- metadata.gz: b3a158b0499182fe3813f26ab575addce52519ef4936addf847e1acd1e26798be2b193d9c578fea878e586b73b9ac2deb8bd079f1b45aa7007001dd8bc5e03ba
7
- data.tar.gz: f6a13cf105f04882cda2ae0e480f8c7dfb1deaf83f45c468828e26fc26c9857f2b1778c8d5b37cfa2afa695285d573019a4ba6947c6710062bb8759311cd8a3e
6
+ metadata.gz: 0560b68001d67303e098f398694ca40430f31469b3524edcf705ce6c656cb6bc5b6f44e7296f587474381567b9704846ea00370c104cdd359dbbeeeb71b0a2d1
7
+ data.tar.gz: 9d5bfb0bb8dd9989a9373a59c8588545f3a96d947f602ccaaf957f71b5f951781dee95349891301e97c58f1f7973f4ff84699c4d7635050691f64052680b2fea
data/CHANGELOG.md CHANGED
@@ -1,4 +1,33 @@
1
- ## 0.8.0 (2023-01-10)
1
+ ## 0.9.0 (2024-03-03)
2
+
3
+ See the [upgrade guide](https://docs.pola.rs/releases/upgrade/0.20/)
4
+
5
+ - Updated Polars to 0.38.1
6
+ - Changed `count` method to exclude null values
7
+ - Changed `dtype` and `schema` methods to always return instances of data types
8
+ - Added `Enum` type
9
+ - Added `Testing` module
10
+ - Added `arctan2`, `arctan2d`, `set_random_seed`, and `sql_expr` methods to `Polars`
11
+ - Added `enable_string_cache`, `disable_string_cache`, and `using_string_cache` to `Polars`
12
+ - Added methods for horizontal aggregations to `Polars`
13
+ - Added `sink_ipc`, `sink_csv`, and `sink_ndjson` methods to `LazyFrame`
14
+ - Added `replace` method to `Series` and `Expr`
15
+ - Added `eq`, `eq_missing`, `ne`, and `ne_missing` methods to `Series` and `Expr`
16
+ - Added `ge`, `gt`, `le`, and `lt` methods to `Series` and `Expr`
17
+ - Added `merge_sorted` method to `DataFrame` and `LazyFrame`
18
+ - Added more methods to `ArrayExpr` and `ArrayNameSpace`
19
+ - Added more methods to `CatExpr` and `CatNameSpace`
20
+ - Added more methods to `ListExpr` and `ListNameSpace`
21
+ - Added more methods to `MetaExpr`
22
+ - Added more methods to `StringExpr`
23
+ - Added `schema_overrides` option to `read_database` method
24
+ - Added `join_nulls` option to `join` method
25
+ - Added `ignore_nulls` option to `any` and `all` methods
26
+ - Aliased `apply` to `map_elements` for `Series`
27
+ - Aliased `cleared` to `clear` for `DataFrame` and `LazyFrame`
28
+ - Fixed error with `BigDecimal` objects
29
+
30
+ ## 0.8.0 (2024-01-10)
2
31
 
3
32
  - Updated Polars to 0.36.2
4
33
  - Added support for Ruby 3.3
data/Cargo.lock CHANGED
@@ -96,16 +96,6 @@ version = "0.2.0"
96
96
  source = "registry+https://github.com/rust-lang/crates.io-index"
97
97
  checksum = "bf7d0a018de4f6aa429b9d33d69edf69072b1c5b1cb8d3e4a5f7ef898fc3eb76"
98
98
 
99
- [[package]]
100
- name = "arrow-format"
101
- version = "0.8.1"
102
- source = "registry+https://github.com/rust-lang/crates.io-index"
103
- checksum = "07884ea216994cdc32a2d5f8274a8bee979cfe90274b83f86f440866ee3132c7"
104
- dependencies = [
105
- "planus",
106
- "serde",
107
- ]
108
-
109
99
  [[package]]
110
100
  name = "async-stream"
111
101
  version = "0.3.5"
@@ -800,9 +790,10 @@ dependencies = [
800
790
  ]
801
791
 
802
792
  [[package]]
803
- name = "jsonpath_lib"
804
- version = "0.3.0"
805
- source = "git+https://github.com/ritchie46/jsonpath?rev=24eaf0b4416edff38a4d1b6b17bc4b9f3f047b4b#24eaf0b4416edff38a4d1b6b17bc4b9f3f047b4b"
793
+ name = "jsonpath_lib_polars_vendor"
794
+ version = "0.0.1"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "f4bd9354947622f7471ff713eacaabdb683ccb13bba4edccaab9860abf480b7d"
806
797
  dependencies = [
807
798
  "log",
808
799
  "serde",
@@ -1252,7 +1243,7 @@ dependencies = [
1252
1243
 
1253
1244
  [[package]]
1254
1245
  name = "polars"
1255
- version = "0.8.0"
1246
+ version = "0.9.0"
1256
1247
  dependencies = [
1257
1248
  "ahash",
1258
1249
  "chrono",
@@ -1260,7 +1251,7 @@ dependencies = [
1260
1251
  "jemallocator",
1261
1252
  "magnus",
1262
1253
  "mimalloc",
1263
- "polars 0.36.2",
1254
+ "polars 0.38.1",
1264
1255
  "polars-core",
1265
1256
  "polars-parquet",
1266
1257
  "polars-utils",
@@ -1270,28 +1261,32 @@ dependencies = [
1270
1261
 
1271
1262
  [[package]]
1272
1263
  name = "polars"
1273
- version = "0.36.2"
1264
+ version = "0.38.1"
1274
1265
  source = "registry+https://github.com/rust-lang/crates.io-index"
1275
- checksum = "938048fcda6a8e2ace6eb168bee1b415a92423ce51e418b853bf08fc40349b6b"
1266
+ checksum = "3a26ef94cfedd5915da990a0b4740cca17b5854bd44a8e8c741fe732c02aac37"
1276
1267
  dependencies = [
1277
1268
  "getrandom",
1269
+ "polars-arrow",
1278
1270
  "polars-core",
1271
+ "polars-error",
1279
1272
  "polars-io",
1280
1273
  "polars-lazy",
1281
1274
  "polars-ops",
1275
+ "polars-parquet",
1276
+ "polars-plan",
1282
1277
  "polars-sql",
1283
1278
  "polars-time",
1279
+ "polars-utils",
1284
1280
  "version_check",
1285
1281
  ]
1286
1282
 
1287
1283
  [[package]]
1288
1284
  name = "polars-arrow"
1289
- version = "0.36.2"
1285
+ version = "0.38.1"
1290
1286
  source = "registry+https://github.com/rust-lang/crates.io-index"
1291
- checksum = "ce68a02f698ff7787c261aea1b4c040a8fe183a8fb200e2436d7f35d95a1b86f"
1287
+ checksum = "48e71d30a9fa503bc3baaff3b4c48f08d402c442a50ea7fb9d475ce7b575425a"
1292
1288
  dependencies = [
1293
1289
  "ahash",
1294
- "arrow-format",
1295
1290
  "atoi",
1296
1291
  "atoi_simd",
1297
1292
  "avro-schema",
@@ -1307,9 +1302,11 @@ dependencies = [
1307
1302
  "getrandom",
1308
1303
  "hashbrown 0.14.3",
1309
1304
  "itoa",
1305
+ "itoap",
1310
1306
  "lz4",
1311
1307
  "multiversion",
1312
1308
  "num-traits",
1309
+ "polars-arrow-format",
1313
1310
  "polars-error",
1314
1311
  "polars-utils",
1315
1312
  "ryu",
@@ -1321,24 +1318,37 @@ dependencies = [
1321
1318
  "zstd",
1322
1319
  ]
1323
1320
 
1321
+ [[package]]
1322
+ name = "polars-arrow-format"
1323
+ version = "0.1.0"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "19b0ef2474af9396b19025b189d96e992311e6a47f90c53cd998b36c4c64b84c"
1326
+ dependencies = [
1327
+ "planus",
1328
+ "serde",
1329
+ ]
1330
+
1324
1331
  [[package]]
1325
1332
  name = "polars-compute"
1326
- version = "0.36.2"
1333
+ version = "0.38.1"
1327
1334
  source = "registry+https://github.com/rust-lang/crates.io-index"
1328
- checksum = "b14fbc5f141b29b656a4cec4802632e5bff10bf801c6809c6bbfbd4078a044dd"
1335
+ checksum = "26342dea46502e8a3322f484062869c2fa49185d512bce4fb44f350b559b4eae"
1329
1336
  dependencies = [
1330
1337
  "bytemuck",
1338
+ "either",
1331
1339
  "num-traits",
1332
1340
  "polars-arrow",
1341
+ "polars-error",
1333
1342
  "polars-utils",
1343
+ "strength_reduce",
1334
1344
  "version_check",
1335
1345
  ]
1336
1346
 
1337
1347
  [[package]]
1338
1348
  name = "polars-core"
1339
- version = "0.36.2"
1349
+ version = "0.38.1"
1340
1350
  source = "registry+https://github.com/rust-lang/crates.io-index"
1341
- checksum = "d0f5efe734b6cbe5f97ea769be8360df5324fade396f1f3f5ad7fe9360ca4a23"
1351
+ checksum = "99e0885a8f1bd1f4d928f5eaa852825bf647b6b5e21e171b6af838f77b6565f3"
1342
1352
  dependencies = [
1343
1353
  "ahash",
1344
1354
  "bitflags 2.4.1",
@@ -1349,7 +1359,6 @@ dependencies = [
1349
1359
  "either",
1350
1360
  "hashbrown 0.14.3",
1351
1361
  "indexmap",
1352
- "itoap",
1353
1362
  "num-traits",
1354
1363
  "once_cell",
1355
1364
  "polars-arrow",
@@ -1371,12 +1380,12 @@ dependencies = [
1371
1380
 
1372
1381
  [[package]]
1373
1382
  name = "polars-error"
1374
- version = "0.36.2"
1383
+ version = "0.38.1"
1375
1384
  source = "registry+https://github.com/rust-lang/crates.io-index"
1376
- checksum = "6396de788f99ebfc9968e7b6f523e23000506cde4ba6dfc62ae4ce949002a886"
1385
+ checksum = "d259d905c17d8e8b2de1eadc94dc4186bf1d325f1be81b4087afea22a6f753d6"
1377
1386
  dependencies = [
1378
- "arrow-format",
1379
1387
  "avro-schema",
1388
+ "polars-arrow-format",
1380
1389
  "regex",
1381
1390
  "simdutf8",
1382
1391
  "thiserror",
@@ -1384,9 +1393,9 @@ dependencies = [
1384
1393
 
1385
1394
  [[package]]
1386
1395
  name = "polars-io"
1387
- version = "0.36.2"
1396
+ version = "0.38.1"
1388
1397
  source = "registry+https://github.com/rust-lang/crates.io-index"
1389
- checksum = "7d0458efe8946f4718fd352f230c0db5a37926bd0d2bd25af79dc24746abaaea"
1398
+ checksum = "45f694b918ba2ee7e6f13e8415598f94009c390a9e61c95e6b9c26c8fe1a1a54"
1390
1399
  dependencies = [
1391
1400
  "ahash",
1392
1401
  "async-trait",
@@ -1424,9 +1433,9 @@ dependencies = [
1424
1433
 
1425
1434
  [[package]]
1426
1435
  name = "polars-json"
1427
- version = "0.36.2"
1436
+ version = "0.38.1"
1428
1437
  source = "registry+https://github.com/rust-lang/crates.io-index"
1429
- checksum = "ea47d46b7a98fa683ef235ad48b783abf61734828e754096cfbdc77404fff9b3"
1438
+ checksum = "fd7c4d33540a22cd49ccb9b4da77999604ba986707d4568be57fde2f719954ae"
1430
1439
  dependencies = [
1431
1440
  "ahash",
1432
1441
  "chrono",
@@ -1445,9 +1454,9 @@ dependencies = [
1445
1454
 
1446
1455
  [[package]]
1447
1456
  name = "polars-lazy"
1448
- version = "0.36.2"
1457
+ version = "0.38.1"
1449
1458
  source = "registry+https://github.com/rust-lang/crates.io-index"
1450
- checksum = "9d7105b40905bb38e8fc4a7fd736594b7491baa12fad3ac492969ca221a1b5d5"
1459
+ checksum = "56e3b40272d24142bcecb2979b19ec8d8c1a14036cb3cea09ce8fb8a4a43bcde"
1451
1460
  dependencies = [
1452
1461
  "ahash",
1453
1462
  "bitflags 2.4.1",
@@ -1469,11 +1478,12 @@ dependencies = [
1469
1478
 
1470
1479
  [[package]]
1471
1480
  name = "polars-ops"
1472
- version = "0.36.2"
1481
+ version = "0.38.1"
1473
1482
  source = "registry+https://github.com/rust-lang/crates.io-index"
1474
- checksum = "2e09afc456ab11e75e5dcb43e00a01c71f3a46a2781e450054acb6bb096ca78e"
1483
+ checksum = "cd5bad61c2fa1977eb65bb719f12d4f68b908edf1106b91b3ab9615f9df8843e"
1475
1484
  dependencies = [
1476
1485
  "ahash",
1486
+ "aho-corasick",
1477
1487
  "argminmax",
1478
1488
  "base64",
1479
1489
  "bytemuck",
@@ -1483,7 +1493,7 @@ dependencies = [
1483
1493
  "hashbrown 0.14.3",
1484
1494
  "hex",
1485
1495
  "indexmap",
1486
- "jsonpath_lib",
1496
+ "jsonpath_lib_polars_vendor",
1487
1497
  "memchr",
1488
1498
  "num-traits",
1489
1499
  "polars-arrow",
@@ -1499,14 +1509,15 @@ dependencies = [
1499
1509
  "serde",
1500
1510
  "serde_json",
1501
1511
  "smartstring",
1512
+ "unicode-reverse",
1502
1513
  "version_check",
1503
1514
  ]
1504
1515
 
1505
1516
  [[package]]
1506
1517
  name = "polars-parquet"
1507
- version = "0.36.2"
1518
+ version = "0.38.1"
1508
1519
  source = "registry+https://github.com/rust-lang/crates.io-index"
1509
- checksum = "7ba24d67b1f64ab85143033dd46fa090b13c0f74acdf91b0780c16aecf005e3d"
1520
+ checksum = "06d84fb9b005a19ca523406df371d9329466ae87df48922d0d3d8955072502a4"
1510
1521
  dependencies = [
1511
1522
  "ahash",
1512
1523
  "async-stream",
@@ -1530,9 +1541,9 @@ dependencies = [
1530
1541
 
1531
1542
  [[package]]
1532
1543
  name = "polars-pipe"
1533
- version = "0.36.2"
1544
+ version = "0.38.1"
1534
1545
  source = "registry+https://github.com/rust-lang/crates.io-index"
1535
- checksum = "d9b7ead073cc3917027d77b59861a9f071db47125de9314f8907db1a0a3e4100"
1546
+ checksum = "58097bef7208a5b833c4d832d948026854917b4a219d55ab1779eb36b59fac0f"
1536
1547
  dependencies = [
1537
1548
  "crossbeam-channel",
1538
1549
  "crossbeam-queue",
@@ -1549,14 +1560,15 @@ dependencies = [
1549
1560
  "polars-utils",
1550
1561
  "rayon",
1551
1562
  "smartstring",
1563
+ "uuid",
1552
1564
  "version_check",
1553
1565
  ]
1554
1566
 
1555
1567
  [[package]]
1556
1568
  name = "polars-plan"
1557
- version = "0.36.2"
1569
+ version = "0.38.1"
1558
1570
  source = "registry+https://github.com/rust-lang/crates.io-index"
1559
- checksum = "384a175624d050c31c473ee11df9d7af5d729ae626375e522158cfb3d150acd0"
1571
+ checksum = "56493c0e13aaccfcae59985db34da30cd4893e57edc9715d8688c96d7e911d47"
1560
1572
  dependencies = [
1561
1573
  "ahash",
1562
1574
  "bytemuck",
@@ -1582,10 +1594,11 @@ dependencies = [
1582
1594
 
1583
1595
  [[package]]
1584
1596
  name = "polars-row"
1585
- version = "0.36.2"
1597
+ version = "0.38.1"
1586
1598
  source = "registry+https://github.com/rust-lang/crates.io-index"
1587
- checksum = "32322f7acbb83db3e9c7697dc821be73d06238da89c817dcc8bc1549a5e9c72f"
1599
+ checksum = "7def6f9fc14fbfc0550bad615a757f3e1d86c00983c5ff23166fcdf205438d51"
1588
1600
  dependencies = [
1601
+ "bytemuck",
1589
1602
  "polars-arrow",
1590
1603
  "polars-error",
1591
1604
  "polars-utils",
@@ -1593,10 +1606,11 @@ dependencies = [
1593
1606
 
1594
1607
  [[package]]
1595
1608
  name = "polars-sql"
1596
- version = "0.36.2"
1609
+ version = "0.38.1"
1597
1610
  source = "registry+https://github.com/rust-lang/crates.io-index"
1598
- checksum = "9f0b4c6ddffdfd0453e84bc3918572c633014d661d166654399cf93752aa95b5"
1611
+ checksum = "4f9d7de9dca8170a20b6c4cb7bafaf724abe88e807646bc3c2e98f13a34a7c4c"
1599
1612
  dependencies = [
1613
+ "hex",
1600
1614
  "polars-arrow",
1601
1615
  "polars-core",
1602
1616
  "polars-error",
@@ -1610,9 +1624,9 @@ dependencies = [
1610
1624
 
1611
1625
  [[package]]
1612
1626
  name = "polars-time"
1613
- version = "0.36.2"
1627
+ version = "0.38.1"
1614
1628
  source = "registry+https://github.com/rust-lang/crates.io-index"
1615
- checksum = "dee2649fc96bd1b6584e0e4a4b3ca7d22ed3d117a990e63ad438ecb26f7544d0"
1629
+ checksum = "162c815c3cb0f859da40f056c8a0a9c4247900e1275702ae399192ea60acac2a"
1616
1630
  dependencies = [
1617
1631
  "atoi",
1618
1632
  "chrono",
@@ -1631,9 +1645,9 @@ dependencies = [
1631
1645
 
1632
1646
  [[package]]
1633
1647
  name = "polars-utils"
1634
- version = "0.36.2"
1648
+ version = "0.38.1"
1635
1649
  source = "registry+https://github.com/rust-lang/crates.io-index"
1636
- checksum = "b174ca4a77ad47d7b91a0460aaae65bbf874c8bfbaaa5308675dadef3976bbda"
1650
+ checksum = "7fca7938ee789314ac92a0bf6c1c4e5eaeb5e428241df2519fd70f21dba49194"
1637
1651
  dependencies = [
1638
1652
  "ahash",
1639
1653
  "bytemuck",
@@ -1642,6 +1656,7 @@ dependencies = [
1642
1656
  "num-traits",
1643
1657
  "once_cell",
1644
1658
  "polars-error",
1659
+ "raw-cpuid",
1645
1660
  "rayon",
1646
1661
  "smartstring",
1647
1662
  "sysinfo",
@@ -1712,11 +1727,20 @@ dependencies = [
1712
1727
  "rand",
1713
1728
  ]
1714
1729
 
1730
+ [[package]]
1731
+ name = "raw-cpuid"
1732
+ version = "11.0.1"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "9d86a7c4638d42c44551f4791a20e687dbb4c3de1f33c43dd71e355cd429def1"
1735
+ dependencies = [
1736
+ "bitflags 2.4.1",
1737
+ ]
1738
+
1715
1739
  [[package]]
1716
1740
  name = "rayon"
1717
- version = "1.8.0"
1741
+ version = "1.9.0"
1718
1742
  source = "registry+https://github.com/rust-lang/crates.io-index"
1719
- checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1"
1743
+ checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd"
1720
1744
  dependencies = [
1721
1745
  "either",
1722
1746
  "rayon-core",
@@ -1724,9 +1748,9 @@ dependencies = [
1724
1748
 
1725
1749
  [[package]]
1726
1750
  name = "rayon-core"
1727
- version = "1.12.0"
1751
+ version = "1.12.1"
1728
1752
  source = "registry+https://github.com/rust-lang/crates.io-index"
1729
- checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed"
1753
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
1730
1754
  dependencies = [
1731
1755
  "crossbeam-deque",
1732
1756
  "crossbeam-utils",
@@ -1734,18 +1758,18 @@ dependencies = [
1734
1758
 
1735
1759
  [[package]]
1736
1760
  name = "rb-sys"
1737
- version = "0.9.86"
1761
+ version = "0.9.90"
1738
1762
  source = "registry+https://github.com/rust-lang/crates.io-index"
1739
- checksum = "7285f2a7b92f58ab198e3fd59a71d2861478f9c4642f41e83582385818941697"
1763
+ checksum = "55d933382388cc7a6fdfd54e222eca7994791ac4b9ce5c9e8df280c739d86bbe"
1740
1764
  dependencies = [
1741
1765
  "rb-sys-build",
1742
1766
  ]
1743
1767
 
1744
1768
  [[package]]
1745
1769
  name = "rb-sys-build"
1746
- version = "0.9.86"
1770
+ version = "0.9.90"
1747
1771
  source = "registry+https://github.com/rust-lang/crates.io-index"
1748
- checksum = "71583945f94dabb6c0dfa63f1b71e929c1901e1e288ef3739ab8bed3b7069550"
1772
+ checksum = "ebc5a7e3a875419baaa0d8cc606cdfb9361b444cb7e5abcf0de4693025887374"
1749
1773
  dependencies = [
1750
1774
  "bindgen",
1751
1775
  "lazy_static",
@@ -2131,12 +2155,36 @@ version = "1.0.12"
2131
2155
  source = "registry+https://github.com/rust-lang/crates.io-index"
2132
2156
  checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2133
2157
 
2158
+ [[package]]
2159
+ name = "unicode-reverse"
2160
+ version = "1.0.8"
2161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2162
+ checksum = "0bea5dacebb0d2d0a69a6700a05b59b3908bf801bf563a49bd27a1b60122962c"
2163
+ dependencies = [
2164
+ "unicode-segmentation",
2165
+ ]
2166
+
2167
+ [[package]]
2168
+ name = "unicode-segmentation"
2169
+ version = "1.10.1"
2170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+ checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
2172
+
2134
2173
  [[package]]
2135
2174
  name = "unicode-width"
2136
2175
  version = "0.1.11"
2137
2176
  source = "registry+https://github.com/rust-lang/crates.io-index"
2138
2177
  checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
2139
2178
 
2179
+ [[package]]
2180
+ name = "uuid"
2181
+ version = "1.7.0"
2182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2183
+ checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a"
2184
+ dependencies = [
2185
+ "getrandom",
2186
+ ]
2187
+
2140
2188
  [[package]]
2141
2189
  name = "value-trait"
2142
2190
  version = "0.8.0"
data/Cargo.toml CHANGED
@@ -2,8 +2,5 @@
2
2
  members = ["ext/polars"]
3
3
  resolver = "2"
4
4
 
5
- [patch.crates-io]
6
- jsonpath_lib = { git = "https://github.com/ritchie46/jsonpath", rev = "24eaf0b4416edff38a4d1b6b17bc4b9f3f047b4b" }
7
-
8
5
  [profile.release]
9
6
  strip = true