maturin 1.7.0__tar.gz → 1.7.2__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.

Potentially problematic release.


This version of maturin might be problematic. Click here for more details.

Files changed (60) hide show
  1. {maturin-1.7.0 → maturin-1.7.2}/.pre-commit-config.yaml +2 -2
  2. {maturin-1.7.0 → maturin-1.7.2}/Cargo.lock +93 -141
  3. {maturin-1.7.0 → maturin-1.7.2}/Cargo.toml +6 -6
  4. {maturin-1.7.0 → maturin-1.7.2}/Changelog.md +15 -3
  5. {maturin-1.7.0 → maturin-1.7.2}/PKG-INFO +5 -3
  6. {maturin-1.7.0 → maturin-1.7.2}/README.md +2 -0
  7. {maturin-1.7.0 → maturin-1.7.2}/maturin.schema.json +37 -0
  8. {maturin-1.7.0 → maturin-1.7.2}/pyproject.toml +7 -4
  9. {maturin-1.7.0 → maturin-1.7.2}/setup.py +0 -22
  10. {maturin-1.7.0 → maturin-1.7.2}/src/auditwheel/audit.rs +27 -2
  11. maturin-1.7.2/src/auditwheel/manylinux-policy.json +699 -0
  12. {maturin-1.7.0 → maturin-1.7.2}/src/build_context.rs +19 -7
  13. {maturin-1.7.0 → maturin-1.7.2}/src/build_options.rs +25 -11
  14. {maturin-1.7.0 → maturin-1.7.2}/src/compile.rs +2 -1
  15. {maturin-1.7.0 → maturin-1.7.2}/src/develop.rs +2 -0
  16. {maturin-1.7.0 → maturin-1.7.2}/src/lib.rs +4 -4
  17. {maturin-1.7.0 → maturin-1.7.2}/src/main.rs +6 -0
  18. {maturin-1.7.0 → maturin-1.7.2}/src/module_writer.rs +51 -33
  19. {maturin-1.7.0 → maturin-1.7.2}/src/project_layout.rs +4 -0
  20. {maturin-1.7.0 → maturin-1.7.2}/src/pyproject_toml.rs +10 -0
  21. {maturin-1.7.0 → maturin-1.7.2}/src/python_interpreter/config.rs +39 -33
  22. {maturin-1.7.0 → maturin-1.7.2}/src/source_distribution.rs +153 -58
  23. {maturin-1.7.0 → maturin-1.7.2}/src/target.rs +40 -0
  24. {maturin-1.7.0 → maturin-1.7.2}/src/upload.rs +4 -3
  25. maturin-1.7.0/src/auditwheel/manylinux-policy.json +0 -507
  26. {maturin-1.7.0 → maturin-1.7.2}/.cirrus.yml +0 -0
  27. {maturin-1.7.0 → maturin-1.7.2}/.codespellrc +0 -0
  28. {maturin-1.7.0 → maturin-1.7.2}/.config/nextest.toml +0 -0
  29. {maturin-1.7.0 → maturin-1.7.2}/.gitignore +0 -0
  30. {maturin-1.7.0 → maturin-1.7.2}/MANIFEST.in +0 -0
  31. {maturin-1.7.0 → maturin-1.7.2}/clippy.toml +0 -0
  32. {maturin-1.7.0 → maturin-1.7.2}/license-apache +0 -0
  33. {maturin-1.7.0 → maturin-1.7.2}/license-mit +0 -0
  34. {maturin-1.7.0 → maturin-1.7.2}/maturin/__init__.py +0 -0
  35. {maturin-1.7.0 → maturin-1.7.2}/maturin/__main__.py +0 -0
  36. {maturin-1.7.0 → maturin-1.7.2}/netlify.toml +0 -0
  37. {maturin-1.7.0 → maturin-1.7.2}/src/auditwheel/mod.rs +0 -0
  38. {maturin-1.7.0 → maturin-1.7.2}/src/auditwheel/musllinux-policy.json +0 -0
  39. {maturin-1.7.0 → maturin-1.7.2}/src/auditwheel/musllinux.rs +0 -0
  40. {maturin-1.7.0 → maturin-1.7.2}/src/auditwheel/patchelf.rs +0 -0
  41. {maturin-1.7.0 → maturin-1.7.2}/src/auditwheel/platform_tag.rs +0 -0
  42. {maturin-1.7.0 → maturin-1.7.2}/src/auditwheel/policy.rs +0 -0
  43. {maturin-1.7.0 → maturin-1.7.2}/src/auditwheel/repair.rs +0 -0
  44. {maturin-1.7.0 → maturin-1.7.2}/src/cargo_toml.rs +0 -0
  45. {maturin-1.7.0 → maturin-1.7.2}/src/ci.rs +0 -0
  46. {maturin-1.7.0 → maturin-1.7.2}/src/cross_compile.rs +0 -0
  47. {maturin-1.7.0 → maturin-1.7.2}/src/generate_json_schema.rs +0 -0
  48. {maturin-1.7.0 → maturin-1.7.2}/src/metadata.rs +0 -0
  49. {maturin-1.7.0 → maturin-1.7.2}/src/new_project.rs +0 -0
  50. {maturin-1.7.0 → maturin-1.7.2}/src/python_interpreter/get_interpreter_metadata.py +0 -0
  51. {maturin-1.7.0 → maturin-1.7.2}/src/python_interpreter/mod.rs +0 -0
  52. {maturin-1.7.0 → maturin-1.7.2}/src/templates/.gitignore.j2 +0 -0
  53. {maturin-1.7.0 → maturin-1.7.2}/src/templates/Cargo.toml.j2 +0 -0
  54. {maturin-1.7.0 → maturin-1.7.2}/src/templates/__init__.py.j2 +0 -0
  55. {maturin-1.7.0 → maturin-1.7.2}/src/templates/build.rs.j2 +0 -0
  56. {maturin-1.7.0 → maturin-1.7.2}/src/templates/example.udl.j2 +0 -0
  57. {maturin-1.7.0 → maturin-1.7.2}/src/templates/lib.rs.j2 +0 -0
  58. {maturin-1.7.0 → maturin-1.7.2}/src/templates/main.rs.j2 +0 -0
  59. {maturin-1.7.0 → maturin-1.7.2}/src/templates/pyproject.toml.j2 +0 -0
  60. {maturin-1.7.0 → maturin-1.7.2}/src/templates/test_all.py.j2 +0 -0
@@ -56,12 +56,12 @@ repos:
56
56
  )
57
57
  - id: mixed-line-ending
58
58
  - repo: https://github.com/astral-sh/ruff-pre-commit
59
- rev: v0.5.0
59
+ rev: v0.6.7
60
60
  hooks:
61
61
  - id: ruff-format
62
62
  - id: ruff
63
63
  - repo: https://github.com/pre-commit/mirrors-mypy
64
- rev: v1.10.1
64
+ rev: v1.11.2
65
65
  hooks:
66
66
  - id: mypy
67
67
  entry: mypy maturin/
@@ -90,15 +90,6 @@ version = "1.0.86"
90
90
  source = "registry+https://github.com/rust-lang/crates.io-index"
91
91
  checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
92
92
 
93
- [[package]]
94
- name = "arbitrary"
95
- version = "1.3.2"
96
- source = "registry+https://github.com/rust-lang/crates.io-index"
97
- checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110"
98
- dependencies = [
99
- "derive_arbitrary",
100
- ]
101
-
102
93
  [[package]]
103
94
  name = "autocfg"
104
95
  version = "1.3.0"
@@ -113,15 +104,9 @@ checksum = "edf3ee19dbc0a46d740f6f0926bde8c50f02bdbc7b536842da28f6ac56513a8b"
113
104
  dependencies = [
114
105
  "proc-macro2",
115
106
  "quote",
116
- "syn 2.0.66",
107
+ "syn 2.0.76",
117
108
  ]
118
109
 
119
- [[package]]
120
- name = "base64"
121
- version = "0.13.1"
122
- source = "registry+https://github.com/rust-lang/crates.io-index"
123
- checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
124
-
125
110
  [[package]]
126
111
  name = "base64"
127
112
  version = "0.21.7"
@@ -157,9 +142,9 @@ dependencies = [
157
142
 
158
143
  [[package]]
159
144
  name = "bstr"
160
- version = "1.9.1"
145
+ version = "1.10.0"
161
146
  source = "registry+https://github.com/rust-lang/crates.io-index"
162
- checksum = "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706"
147
+ checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c"
163
148
  dependencies = [
164
149
  "memchr",
165
150
  "serde",
@@ -173,9 +158,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
173
158
 
174
159
  [[package]]
175
160
  name = "bytes"
176
- version = "1.6.0"
161
+ version = "1.7.1"
177
162
  source = "registry+https://github.com/rust-lang/crates.io-index"
178
- checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
163
+ checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50"
179
164
 
180
165
  [[package]]
181
166
  name = "bytesize"
@@ -218,9 +203,9 @@ dependencies = [
218
203
 
219
204
  [[package]]
220
205
  name = "camino"
221
- version = "1.1.7"
206
+ version = "1.1.9"
222
207
  source = "registry+https://github.com/rust-lang/crates.io-index"
223
- checksum = "e0ec6b951b160caa93cc0c7b209e5a3bff7aae9062213451ac99493cd844c239"
208
+ checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3"
224
209
  dependencies = [
225
210
  "serde",
226
211
  ]
@@ -282,18 +267,21 @@ dependencies = [
282
267
 
283
268
  [[package]]
284
269
  name = "cargo-zigbuild"
285
- version = "0.18.4"
270
+ version = "0.19.3"
286
271
  source = "registry+https://github.com/rust-lang/crates.io-index"
287
- checksum = "65004153e67ac23be88a8e244304a872d727b2aa08654dcabfbecd1fdea4a488"
272
+ checksum = "e700178b11124560cdbabc8808e938fe6d77abde036b77a4c03a191b02bac854"
288
273
  dependencies = [
289
274
  "anyhow",
275
+ "cargo-config2",
290
276
  "cargo-options",
291
277
  "cargo_metadata",
292
278
  "clap",
279
+ "crc",
293
280
  "dirs",
294
281
  "fs-err",
295
282
  "path-slash",
296
283
  "rustc_version",
284
+ "rustflags",
297
285
  "semver",
298
286
  "serde",
299
287
  "serde_json",
@@ -336,9 +324,12 @@ dependencies = [
336
324
 
337
325
  [[package]]
338
326
  name = "cc"
339
- version = "1.0.104"
327
+ version = "1.1.21"
340
328
  source = "registry+https://github.com/rust-lang/crates.io-index"
341
- checksum = "74b6a57f98764a267ff415d50a25e6e166f3831a5071af4995296ea97d210490"
329
+ checksum = "07b1695e2c7e8fc85310cde85aeaab7e3097f593c91d209d3f9df76c928100f0"
330
+ dependencies = [
331
+ "shlex",
332
+ ]
342
333
 
343
334
  [[package]]
344
335
  name = "cfb"
@@ -359,11 +350,11 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
359
350
 
360
351
  [[package]]
361
352
  name = "charset"
362
- version = "0.1.3"
353
+ version = "0.1.5"
363
354
  source = "registry+https://github.com/rust-lang/crates.io-index"
364
- checksum = "18e9079d1a12a2cc2bffb5db039c43661836ead4082120d5844f02555aca2d46"
355
+ checksum = "f1f927b07c74ba84c7e5fe4db2baeb3e996ab2688992e39ac68ce3220a677c7e"
365
356
  dependencies = [
366
- "base64 0.13.1",
357
+ "base64 0.22.1",
367
358
  "encoding_rs",
368
359
  ]
369
360
 
@@ -411,9 +402,9 @@ dependencies = [
411
402
 
412
403
  [[package]]
413
404
  name = "clap_complete_command"
414
- version = "0.5.1"
405
+ version = "0.6.1"
415
406
  source = "registry+https://github.com/rust-lang/crates.io-index"
416
- checksum = "183495371ea78d4c9ff638bfc6497d46fed2396e4f9c50aebc1278a4a9919a3d"
407
+ checksum = "da8e198c052315686d36371e8a3c5778b7852fc75cc313e4e11eeb7a644a1b62"
417
408
  dependencies = [
418
409
  "clap",
419
410
  "clap_complete",
@@ -422,9 +413,9 @@ dependencies = [
422
413
 
423
414
  [[package]]
424
415
  name = "clap_complete_nushell"
425
- version = "0.1.11"
416
+ version = "4.5.2"
426
417
  source = "registry+https://github.com/rust-lang/crates.io-index"
427
- checksum = "5d02bc8b1a18ee47c4d2eec3fb5ac034dc68ebea6125b1509e9ccdffcddce66e"
418
+ checksum = "1accf1b463dee0d3ab2be72591dccdab8bef314958340447c882c4c72acfe2a3"
428
419
  dependencies = [
429
420
  "clap",
430
421
  "clap_complete",
@@ -439,7 +430,7 @@ dependencies = [
439
430
  "heck 0.5.0",
440
431
  "proc-macro2",
441
432
  "quote",
442
- "syn 2.0.66",
433
+ "syn 2.0.76",
443
434
  ]
444
435
 
445
436
  [[package]]
@@ -517,6 +508,21 @@ dependencies = [
517
508
  "libc",
518
509
  ]
519
510
 
511
+ [[package]]
512
+ name = "crc"
513
+ version = "3.2.1"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636"
516
+ dependencies = [
517
+ "crc-catalog",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "crc-catalog"
522
+ version = "2.4.0"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
525
+
520
526
  [[package]]
521
527
  name = "crc32fast"
522
528
  version = "1.4.2"
@@ -596,17 +602,6 @@ dependencies = [
596
602
  "syn 1.0.109",
597
603
  ]
598
604
 
599
- [[package]]
600
- name = "derive_arbitrary"
601
- version = "1.3.2"
602
- source = "registry+https://github.com/rust-lang/crates.io-index"
603
- checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611"
604
- dependencies = [
605
- "proc-macro2",
606
- "quote",
607
- "syn 2.0.66",
608
- ]
609
-
610
605
  [[package]]
611
606
  name = "dialoguer"
612
607
  version = "0.11.0"
@@ -656,17 +651,6 @@ dependencies = [
656
651
  "windows-sys 0.48.0",
657
652
  ]
658
653
 
659
- [[package]]
660
- name = "displaydoc"
661
- version = "0.2.4"
662
- source = "registry+https://github.com/rust-lang/crates.io-index"
663
- checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d"
664
- dependencies = [
665
- "proc-macro2",
666
- "quote",
667
- "syn 2.0.66",
668
- ]
669
-
670
654
  [[package]]
671
655
  name = "dissimilar"
672
656
  version = "1.0.9"
@@ -675,9 +659,9 @@ checksum = "59f8e79d1fbf76bdfbde321e902714bf6c49df88a7dda6fc682fc2979226962d"
675
659
 
676
660
  [[package]]
677
661
  name = "dunce"
678
- version = "1.0.4"
662
+ version = "1.0.5"
679
663
  source = "registry+https://github.com/rust-lang/crates.io-index"
680
- checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
664
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
681
665
 
682
666
  [[package]]
683
667
  name = "dyn-clone"
@@ -687,9 +671,9 @@ checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
687
671
 
688
672
  [[package]]
689
673
  name = "either"
690
- version = "1.12.0"
674
+ version = "1.13.0"
691
675
  source = "registry+https://github.com/rust-lang/crates.io-index"
692
- checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b"
676
+ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
693
677
 
694
678
  [[package]]
695
679
  name = "encode_unicode"
@@ -864,7 +848,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
864
848
  dependencies = [
865
849
  "proc-macro2",
866
850
  "quote",
867
- "syn 2.0.66",
851
+ "syn 2.0.76",
868
852
  ]
869
853
 
870
854
  [[package]]
@@ -1045,9 +1029,9 @@ dependencies = [
1045
1029
 
1046
1030
  [[package]]
1047
1031
  name = "indexmap"
1048
- version = "2.2.6"
1032
+ version = "2.4.0"
1049
1033
  source = "registry+https://github.com/rust-lang/crates.io-index"
1050
- checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
1034
+ checksum = "93ead53efc7ea8ed3cfb0c79fc8023fbb782a5432b52830b6518941cebe6505c"
1051
1035
  dependencies = [
1052
1036
  "equivalent",
1053
1037
  "hashbrown 0.14.5",
@@ -1132,9 +1116,9 @@ dependencies = [
1132
1116
 
1133
1117
  [[package]]
1134
1118
  name = "libc"
1135
- version = "0.2.155"
1119
+ version = "0.2.158"
1136
1120
  source = "registry+https://github.com/rust-lang/crates.io-index"
1137
- checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
1121
+ checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439"
1138
1122
 
1139
1123
  [[package]]
1140
1124
  name = "libmimalloc-sys"
@@ -1216,7 +1200,7 @@ dependencies = [
1216
1200
 
1217
1201
  [[package]]
1218
1202
  name = "maturin"
1219
- version = "1.7.0"
1203
+ version = "1.7.2"
1220
1204
  dependencies = [
1221
1205
  "anyhow",
1222
1206
  "base64 0.21.7",
@@ -1242,7 +1226,7 @@ dependencies = [
1242
1226
  "glob",
1243
1227
  "goblin",
1244
1228
  "ignore",
1245
- "indexmap 2.2.6",
1229
+ "indexmap 2.4.0",
1246
1230
  "indoc",
1247
1231
  "itertools",
1248
1232
  "keyring",
@@ -1287,7 +1271,7 @@ dependencies = [
1287
1271
  "url",
1288
1272
  "which 6.0.1",
1289
1273
  "wild",
1290
- "zip 0.6.6",
1274
+ "zip",
1291
1275
  ]
1292
1276
 
1293
1277
  [[package]]
@@ -1428,27 +1412,6 @@ version = "0.1.0"
1428
1412
  source = "registry+https://github.com/rust-lang/crates.io-index"
1429
1413
  checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1430
1414
 
1431
- [[package]]
1432
- name = "num_enum"
1433
- version = "0.7.2"
1434
- source = "registry+https://github.com/rust-lang/crates.io-index"
1435
- checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845"
1436
- dependencies = [
1437
- "num_enum_derive",
1438
- ]
1439
-
1440
- [[package]]
1441
- name = "num_enum_derive"
1442
- version = "0.7.2"
1443
- source = "registry+https://github.com/rust-lang/crates.io-index"
1444
- checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b"
1445
- dependencies = [
1446
- "proc-macro-crate",
1447
- "proc-macro2",
1448
- "quote",
1449
- "syn 2.0.66",
1450
- ]
1451
-
1452
1415
  [[package]]
1453
1416
  name = "number_prefix"
1454
1417
  version = "0.4.0"
@@ -1463,9 +1426,9 @@ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
1463
1426
 
1464
1427
  [[package]]
1465
1428
  name = "openssl"
1466
- version = "0.10.64"
1429
+ version = "0.10.66"
1467
1430
  source = "registry+https://github.com/rust-lang/crates.io-index"
1468
- checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f"
1431
+ checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1"
1469
1432
  dependencies = [
1470
1433
  "bitflags 2.5.0",
1471
1434
  "cfg-if",
@@ -1484,7 +1447,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1484
1447
  dependencies = [
1485
1448
  "proc-macro2",
1486
1449
  "quote",
1487
- "syn 2.0.66",
1450
+ "syn 2.0.76",
1488
1451
  ]
1489
1452
 
1490
1453
  [[package]]
@@ -1495,9 +1458,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1495
1458
 
1496
1459
  [[package]]
1497
1460
  name = "openssl-sys"
1498
- version = "0.9.102"
1461
+ version = "0.9.103"
1499
1462
  source = "registry+https://github.com/rust-lang/crates.io-index"
1500
- checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2"
1463
+ checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6"
1501
1464
  dependencies = [
1502
1465
  "cc",
1503
1466
  "libc",
@@ -1564,9 +1527,9 @@ checksum = "1e91099d4268b0e11973f036e885d652fb0b21fedcf69738c627f94db6a44f42"
1564
1527
 
1565
1528
  [[package]]
1566
1529
  name = "pep440_rs"
1567
- version = "0.5.0"
1530
+ version = "0.6.0"
1568
1531
  source = "registry+https://github.com/rust-lang/crates.io-index"
1569
- checksum = "15efd4d885c29126cc93e12af3087896e2518bd5ca0fb328c19c4ef9cecfa8be"
1532
+ checksum = "ca0a570e7ec9171250cac57614e901f62408094b54b3798bb920d3cf0d4a0e09"
1570
1533
  dependencies = [
1571
1534
  "once_cell",
1572
1535
  "serde",
@@ -1577,9 +1540,9 @@ dependencies = [
1577
1540
 
1578
1541
  [[package]]
1579
1542
  name = "pep508_rs"
1580
- version = "0.4.2"
1543
+ version = "0.6.0"
1581
1544
  source = "registry+https://github.com/rust-lang/crates.io-index"
1582
- checksum = "1455babf8edd3eedcdfcb39700e455a4bb189e71b4f1fa0eacc9b244cc5a55e6"
1545
+ checksum = "581c27e97a3f38c5d691962af7da93c2672b5227d59cf165b87a9b1fd53dd724"
1583
1546
  dependencies = [
1584
1547
  "derivative",
1585
1548
  "once_cell",
@@ -1690,11 +1653,11 @@ dependencies = [
1690
1653
 
1691
1654
  [[package]]
1692
1655
  name = "pyproject-toml"
1693
- version = "0.10.0"
1656
+ version = "0.11.0"
1694
1657
  source = "registry+https://github.com/rust-lang/crates.io-index"
1695
- checksum = "3b80f889b6d413c3f8963a2c7db03f95dd6e1d85e1074137cb2013ea2faa8898"
1658
+ checksum = "ef7061023bcb58a0fc4a4bbe9819c13b0dca7c2abc14da14f5ecc1532ab3a36a"
1696
1659
  dependencies = [
1697
- "indexmap 2.2.6",
1660
+ "indexmap 2.4.0",
1698
1661
  "pep440_rs",
1699
1662
  "pep508_rs",
1700
1663
  "serde",
@@ -1713,7 +1676,7 @@ dependencies = [
1713
1676
  "rfc2047-decoder",
1714
1677
  "tar",
1715
1678
  "thiserror",
1716
- "zip 1.1.4",
1679
+ "zip",
1717
1680
  ]
1718
1681
 
1719
1682
  [[package]]
@@ -1915,7 +1878,7 @@ dependencies = [
1915
1878
  "regex",
1916
1879
  "relative-path",
1917
1880
  "rustc_version",
1918
- "syn 2.0.66",
1881
+ "syn 2.0.76",
1919
1882
  "unicode-ident",
1920
1883
  ]
1921
1884
 
@@ -1928,6 +1891,12 @@ dependencies = [
1928
1891
  "semver",
1929
1892
  ]
1930
1893
 
1894
+ [[package]]
1895
+ name = "rustflags"
1896
+ version = "0.1.6"
1897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1898
+ checksum = "d7fc92159fb50a431c5da366f7627751fe7263cf867f8a30f27fa6063ba02ac0"
1899
+
1931
1900
  [[package]]
1932
1901
  name = "rustix"
1933
1902
  version = "0.38.34"
@@ -2033,7 +2002,7 @@ dependencies = [
2033
2002
  "proc-macro2",
2034
2003
  "quote",
2035
2004
  "serde_derive_internals",
2036
- "syn 2.0.66",
2005
+ "syn 2.0.76",
2037
2006
  ]
2038
2007
 
2039
2008
  [[package]]
@@ -2059,7 +2028,7 @@ checksum = "7f81c2fde025af7e69b1d1420531c8a8811ca898919db177141a85313b1cb932"
2059
2028
  dependencies = [
2060
2029
  "proc-macro2",
2061
2030
  "quote",
2062
- "syn 2.0.66",
2031
+ "syn 2.0.76",
2063
2032
  ]
2064
2033
 
2065
2034
  [[package]]
@@ -2096,22 +2065,22 @@ dependencies = [
2096
2065
 
2097
2066
  [[package]]
2098
2067
  name = "serde"
2099
- version = "1.0.204"
2068
+ version = "1.0.210"
2100
2069
  source = "registry+https://github.com/rust-lang/crates.io-index"
2101
- checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
2070
+ checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
2102
2071
  dependencies = [
2103
2072
  "serde_derive",
2104
2073
  ]
2105
2074
 
2106
2075
  [[package]]
2107
2076
  name = "serde_derive"
2108
- version = "1.0.204"
2077
+ version = "1.0.210"
2109
2078
  source = "registry+https://github.com/rust-lang/crates.io-index"
2110
- checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
2079
+ checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
2111
2080
  dependencies = [
2112
2081
  "proc-macro2",
2113
2082
  "quote",
2114
- "syn 2.0.66",
2083
+ "syn 2.0.76",
2115
2084
  ]
2116
2085
 
2117
2086
  [[package]]
@@ -2122,16 +2091,17 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
2122
2091
  dependencies = [
2123
2092
  "proc-macro2",
2124
2093
  "quote",
2125
- "syn 2.0.66",
2094
+ "syn 2.0.76",
2126
2095
  ]
2127
2096
 
2128
2097
  [[package]]
2129
2098
  name = "serde_json"
2130
- version = "1.0.120"
2099
+ version = "1.0.128"
2131
2100
  source = "registry+https://github.com/rust-lang/crates.io-index"
2132
- checksum = "4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5"
2101
+ checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8"
2133
2102
  dependencies = [
2134
2103
  "itoa",
2104
+ "memchr",
2135
2105
  "ryu",
2136
2106
  "serde",
2137
2107
  ]
@@ -2296,9 +2266,9 @@ dependencies = [
2296
2266
 
2297
2267
  [[package]]
2298
2268
  name = "syn"
2299
- version = "2.0.66"
2269
+ version = "2.0.76"
2300
2270
  source = "registry+https://github.com/rust-lang/crates.io-index"
2301
- checksum = "c42f3f41a2de00b01c0aaad383c5a45241efc8b2d1eda5661812fda5f3cdcff5"
2271
+ checksum = "578e081a14e0cefc3279b0472138c513f37b41a08d5a3cca9b6e4e8ceb6cd525"
2302
2272
  dependencies = [
2303
2273
  "proc-macro2",
2304
2274
  "quote",
@@ -2318,9 +2288,9 @@ dependencies = [
2318
2288
 
2319
2289
  [[package]]
2320
2290
  name = "target-lexicon"
2321
- version = "0.12.14"
2291
+ version = "0.12.16"
2322
2292
  source = "registry+https://github.com/rust-lang/crates.io-index"
2323
- checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
2293
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
2324
2294
 
2325
2295
  [[package]]
2326
2296
  name = "tempfile"
@@ -2381,7 +2351,7 @@ checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533"
2381
2351
  dependencies = [
2382
2352
  "proc-macro2",
2383
2353
  "quote",
2384
- "syn 2.0.66",
2354
+ "syn 2.0.76",
2385
2355
  ]
2386
2356
 
2387
2357
  [[package]]
@@ -2475,7 +2445,7 @@ version = "0.21.1"
2475
2445
  source = "registry+https://github.com/rust-lang/crates.io-index"
2476
2446
  checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1"
2477
2447
  dependencies = [
2478
- "indexmap 2.2.6",
2448
+ "indexmap 2.4.0",
2479
2449
  "toml_datetime",
2480
2450
  "winnow 0.5.40",
2481
2451
  ]
@@ -2486,7 +2456,7 @@ version = "0.22.14"
2486
2456
  source = "registry+https://github.com/rust-lang/crates.io-index"
2487
2457
  checksum = "f21c7aaf97f1bd9ca9d4f9e73b0a6c74bd5afef56f2bc931943a6e1c37e04e38"
2488
2458
  dependencies = [
2489
- "indexmap 2.2.6",
2459
+ "indexmap 2.4.0",
2490
2460
  "serde",
2491
2461
  "serde_spanned",
2492
2462
  "toml_datetime",
@@ -2512,7 +2482,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
2512
2482
  dependencies = [
2513
2483
  "proc-macro2",
2514
2484
  "quote",
2515
- "syn 2.0.66",
2485
+ "syn 2.0.76",
2516
2486
  ]
2517
2487
 
2518
2488
  [[package]]
@@ -3045,7 +3015,7 @@ dependencies = [
3045
3015
  "ureq",
3046
3016
  "versions",
3047
3017
  "walkdir",
3048
- "zip 0.6.6",
3018
+ "zip",
3049
3019
  ]
3050
3020
 
3051
3021
  [[package]]
@@ -3071,7 +3041,7 @@ checksum = "15e934569e47891f7d9411f1a451d947a60e000ab3bd24fbb970f000387d1b3b"
3071
3041
  dependencies = [
3072
3042
  "proc-macro2",
3073
3043
  "quote",
3074
- "syn 2.0.66",
3044
+ "syn 2.0.76",
3075
3045
  ]
3076
3046
 
3077
3047
  [[package]]
@@ -3093,21 +3063,3 @@ dependencies = [
3093
3063
  "flate2",
3094
3064
  "time",
3095
3065
  ]
3096
-
3097
- [[package]]
3098
- name = "zip"
3099
- version = "1.1.4"
3100
- source = "registry+https://github.com/rust-lang/crates.io-index"
3101
- checksum = "9cc23c04387f4da0374be4533ad1208cbb091d5c11d070dfef13676ad6497164"
3102
- dependencies = [
3103
- "arbitrary",
3104
- "bzip2",
3105
- "crc32fast",
3106
- "crossbeam-utils",
3107
- "displaydoc",
3108
- "flate2",
3109
- "indexmap 2.2.6",
3110
- "num_enum",
3111
- "thiserror",
3112
- "time",
3113
- ]
@@ -1,7 +1,7 @@
1
1
  [package]
2
2
  authors = ["konstin <konstin@mailbox.org>", "messense <messense@icloud.com>"]
3
3
  name = "maturin"
4
- version = "1.7.0"
4
+ version = "1.7.2"
5
5
  description = "Build and publish crates with pyo3, cffi and uniffi bindings as well as rust binaries as python packages"
6
6
  exclude = [
7
7
  "test-crates/**/*",
@@ -70,7 +70,7 @@ rustc_version = "0.4.0"
70
70
  semver = "1.0.22"
71
71
  target-lexicon = "0.12.14"
72
72
  indexmap = "2.2.3"
73
- pyproject-toml = "0.10.0"
73
+ pyproject-toml = "0.11.0"
74
74
  python-pkginfo = "0.6.0"
75
75
  textwrap = "0.16.1"
76
76
  ignore = "0.4.20"
@@ -80,8 +80,8 @@ cc = "1.0.88"
80
80
  dunce = "1.0.2"
81
81
  normpath = "1.1.1"
82
82
  path-slash = "0.2.1"
83
- pep440_rs = { version = "0.5.0", features = ["serde", "tracing"] }
84
- pep508_rs = { version = "0.4.2", features = ["serde", "tracing"] }
83
+ pep440_rs = { version = "0.6.0", features = ["serde", "tracing"] }
84
+ pep508_rs = { version = "0.6.0", features = ["serde", "tracing"] }
85
85
  same-file = "1.0.6"
86
86
  time = "0.3.17"
87
87
  url = "2.5.0"
@@ -94,10 +94,10 @@ clap = { version = "4.0.0", features = [
94
94
  "wrap_help",
95
95
  "unstable-styles",
96
96
  ] }
97
- clap_complete_command = { version = "0.5.1", default-features = false, features = ["nushell"], optional = true }
97
+ clap_complete_command = { version = "0.6.1", optional = true }
98
98
 
99
99
  # cross compile
100
- cargo-zigbuild = { version = "0.18.4", default-features = false, optional = true }
100
+ cargo-zigbuild = { version = "0.19.3", default-features = false, optional = true }
101
101
  cargo-xwin = { version = "0.16.5", default-features = false, optional = true }
102
102
 
103
103
  # log
@@ -1,6 +1,16 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased]
3
+ ## [1.7.2]
4
+
5
+ * Fix cross compilation issues for armv7l, mips64 and ppc in [#2204](https://github.com/PyO3/maturin/pull/2204)
6
+ * UniFFI: supports bindings generated from multiple crates in [#2208](https://github.com/PyO3/maturin/pull/2208)
7
+ * Enable `--all-features` when building source distribution in [#2215](https://github.com/PyO3/maturin/pull/2215)
8
+ * Fix rpath when module-name contains `.` in [#2219](https://github.com/PyO3/maturin/pull/2219)
9
+
10
+ ## [1.7.1]
11
+
12
+ * Forward `cargo package --list` warnings in [#2186](https://github.com/PyO3/maturin/pull/2186)
13
+ * In source distributions, we move the readmes of path dependencies into the respective crate to avoid collision between different readmes in [#2184](https://github.com/PyO3/maturin/pull/2184)
4
14
 
5
15
  ## [1.7.0] - 2024-07-07
6
16
 
@@ -826,7 +836,7 @@ With this release, the name of this project changes from _pyo3-pack_ to _maturin
826
836
 
827
837
  ### Changed
828
838
 
829
- * The `--skip-auditwheel` flag has been deprecated in favor of `--manxlinux=[1|1-unchecked|2010|2010-unchecked|off]`.
839
+ * The `--skip-auditwheel` flag has been deprecated in favor of `--manylinux=[1|1-unchecked|2010|2010-unchecked|off]`.
830
840
  * Switched to rustls. This means the upload feature can be used from the docker container and builds of maturin itself are manylinux compliant when compiled with the musl target.
831
841
 
832
842
  ## [0.4.2] - 2018-12-15
@@ -973,7 +983,9 @@ points-0.1.0-py2.py3-none-manylinux1_x86_64.whl | 2,8M | 752K | 85K
973
983
 
974
984
  * Initial Release
975
985
 
976
- [Unreleased]: https://github.com/pyo3/maturin/compare/v1.7.0...HEAD
986
+ [Unreleased]: https://github.com/pyo3/maturin/compare/v1.7.2...HEAD
987
+ [1.7.2]: https://github.com/pyo3/maturin/compare/v1.7.1...v1.7.2
988
+ [1.7.1]: https://github.com/pyo3/maturin/compare/v1.7.0...v1.7.1
977
989
  [1.7.0]: https://github.com/pyo3/maturin/compare/v1.6.0...v1.7.0
978
990
  [1.6.0]: https://github.com/pyo3/maturin/compare/v1.5.1...v1.6.0
979
991
  [1.5.1]: https://github.com/pyo3/maturin/compare/v1.5.0...v1.5.1