velopack 1.0.9.dev49442__tar.gz → 1.2.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.
Files changed (56) hide show
  1. {velopack-1.0.9.dev49442 → velopack-1.2.0}/Cargo.lock +424 -11
  2. {velopack-1.0.9.dev49442 → velopack-1.2.0}/Cargo.toml +7 -2
  3. {velopack-1.0.9.dev49442 → velopack-1.2.0}/PKG-INFO +1 -1
  4. {velopack-1.0.9.dev49442 → velopack-1.2.0}/pyproject.toml +1 -1
  5. velopack-1.2.0/src/lib-python/Cargo.toml +41 -0
  6. velopack-1.2.0/src/lib-python/py.typed +0 -0
  7. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-python/src/app.rs +15 -14
  8. velopack-1.2.0/src/lib-python/src/bin/stub_gen.rs +7 -0
  9. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-python/src/lib.rs +9 -0
  10. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-python/src/manager.rs +2 -0
  11. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-python/src/sources.rs +12 -0
  12. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-python/src/types.rs +46 -0
  13. velopack-1.2.0/src/lib-python/velopack.pyi +402 -0
  14. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/locator.rs +85 -33
  15. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/manager.rs +5 -0
  16. velopack-1.0.9.dev49442/src/lib-python/Cargo.toml +0 -25
  17. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-python/.gitignore +0 -0
  18. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-python/README.md +0 -0
  19. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-python/build.rs +0 -0
  20. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-python/test/app.py +0 -0
  21. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-python/test/run_test.py +0 -0
  22. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-python/uv.lock +0 -0
  23. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/Cargo.toml +0 -0
  24. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/README.md +0 -0
  25. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/app.rs +0 -0
  26. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/bundle.rs +0 -0
  27. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/constants.rs +0 -0
  28. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/download.rs +0 -0
  29. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/file_rotate.rs +0 -0
  30. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/known_path.rs +0 -0
  31. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/lib.rs +0 -0
  32. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/lockfile.rs +0 -0
  33. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/logging.rs +0 -0
  34. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/macros.rs +0 -0
  35. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/misc.rs +0 -0
  36. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/process_unix.rs +0 -0
  37. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/process_win.rs +0 -0
  38. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/sources/file.rs +0 -0
  39. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/sources/flow.rs +0 -0
  40. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/sources/gitea.rs +0 -0
  41. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/sources/github.rs +0 -0
  42. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/sources/gitlab.rs +0 -0
  43. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/sources/http.rs +0 -0
  44. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/sources/mod.rs +0 -0
  45. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/src/wide_strings.rs +0 -0
  46. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/tests/common/mock_server.rs +0 -0
  47. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/tests/common/mod.rs +0 -0
  48. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/tests/noteshtml_deserialization.rs +0 -0
  49. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/tests/source_auto.rs +0 -0
  50. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/tests/source_file.rs +0 -0
  51. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/tests/source_flow.rs +0 -0
  52. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/tests/source_gitea.rs +0 -0
  53. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/tests/source_github.rs +0 -0
  54. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/tests/source_gitlab.rs +0 -0
  55. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/tests/source_http.rs +0 -0
  56. {velopack-1.0.9.dev49442 → velopack-1.2.0}/src/lib-rust/tests/source_none.rs +0 -0
@@ -995,7 +995,7 @@ dependencies = [
995
995
  "fluent-syntax",
996
996
  "intl-memoizer",
997
997
  "intl_pluralrules",
998
- "rustc-hash",
998
+ "rustc-hash 2.1.2",
999
999
  "self_cell",
1000
1000
  "smallvec",
1001
1001
  "unic-langid",
@@ -1163,6 +1163,15 @@ dependencies = [
1163
1163
  "windows-link",
1164
1164
  ]
1165
1165
 
1166
+ [[package]]
1167
+ name = "getopts"
1168
+ version = "0.2.24"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
1171
+ dependencies = [
1172
+ "unicode-width",
1173
+ ]
1174
+
1166
1175
  [[package]]
1167
1176
  name = "getrandom"
1168
1177
  version = "0.2.17"
@@ -1549,12 +1558,42 @@ dependencies = [
1549
1558
  "unic-langid",
1550
1559
  ]
1551
1560
 
1561
+ [[package]]
1562
+ name = "inventory"
1563
+ version = "0.3.24"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
1566
+ dependencies = [
1567
+ "rustversion",
1568
+ ]
1569
+
1570
+ [[package]]
1571
+ name = "is-macro"
1572
+ version = "0.3.7"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
1575
+ dependencies = [
1576
+ "heck",
1577
+ "proc-macro2",
1578
+ "quote",
1579
+ "syn 2.0.117",
1580
+ ]
1581
+
1552
1582
  [[package]]
1553
1583
  name = "is_terminal_polyfill"
1554
1584
  version = "1.70.2"
1555
1585
  source = "registry+https://github.com/rust-lang/crates.io-index"
1556
1586
  checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1557
1587
 
1588
+ [[package]]
1589
+ name = "itertools"
1590
+ version = "0.11.0"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
1593
+ dependencies = [
1594
+ "either",
1595
+ ]
1596
+
1558
1597
  [[package]]
1559
1598
  name = "itertools"
1560
1599
  version = "0.14.0"
@@ -1650,6 +1689,12 @@ dependencies = [
1650
1689
  "wasm-bindgen",
1651
1690
  ]
1652
1691
 
1692
+ [[package]]
1693
+ name = "lalrpop-util"
1694
+ version = "0.20.2"
1695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1696
+ checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553"
1697
+
1653
1698
  [[package]]
1654
1699
  name = "lazy_static"
1655
1700
  version = "1.5.0"
@@ -1834,6 +1879,22 @@ dependencies = [
1834
1879
  "num-traits",
1835
1880
  ]
1836
1881
 
1882
+ [[package]]
1883
+ name = "maplit"
1884
+ version = "1.0.2"
1885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1886
+ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
1887
+
1888
+ [[package]]
1889
+ name = "matrixmultiply"
1890
+ version = "0.3.10"
1891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1892
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1893
+ dependencies = [
1894
+ "autocfg",
1895
+ "rawpointer",
1896
+ ]
1897
+
1837
1898
  [[package]]
1838
1899
  name = "maybe-rayon"
1839
1900
  version = "0.1.1"
@@ -1914,6 +1975,21 @@ dependencies = [
1914
1975
  "pxfm",
1915
1976
  ]
1916
1977
 
1978
+ [[package]]
1979
+ name = "ndarray"
1980
+ version = "0.17.2"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
1983
+ dependencies = [
1984
+ "matrixmultiply",
1985
+ "num-complex",
1986
+ "num-integer",
1987
+ "num-traits",
1988
+ "portable-atomic",
1989
+ "portable-atomic-util",
1990
+ "rawpointer",
1991
+ ]
1992
+
1917
1993
  [[package]]
1918
1994
  name = "ndk"
1919
1995
  version = "0.9.0"
@@ -2078,6 +2154,15 @@ dependencies = [
2078
2154
  "num-traits",
2079
2155
  ]
2080
2156
 
2157
+ [[package]]
2158
+ name = "num-complex"
2159
+ version = "0.4.6"
2160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2161
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
2162
+ dependencies = [
2163
+ "num-traits",
2164
+ ]
2165
+
2081
2166
  [[package]]
2082
2167
  name = "num-conv"
2083
2168
  version = "0.2.2"
@@ -2156,6 +2241,22 @@ dependencies = [
2156
2241
  "libc",
2157
2242
  ]
2158
2243
 
2244
+ [[package]]
2245
+ name = "numpy"
2246
+ version = "0.28.0"
2247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2248
+ checksum = "778da78c64ddc928ebf5ad9df5edf0789410ff3bdbf3619aed51cd789a6af1e2"
2249
+ dependencies = [
2250
+ "libc",
2251
+ "ndarray",
2252
+ "num-complex",
2253
+ "num-integer",
2254
+ "num-traits",
2255
+ "pyo3",
2256
+ "pyo3-build-config",
2257
+ "rustc-hash 2.1.2",
2258
+ ]
2259
+
2159
2260
  [[package]]
2160
2261
  name = "objc-sys"
2161
2262
  version = "0.3.5"
@@ -2575,6 +2676,15 @@ dependencies = [
2575
2676
  "libredox",
2576
2677
  ]
2577
2678
 
2679
+ [[package]]
2680
+ name = "ordered-float"
2681
+ version = "5.3.0"
2682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2683
+ checksum = "b7d950ca161dc355eaf28f82b11345ed76c6e1f6eb1f4f4479e0323b9e2fbd0e"
2684
+ dependencies = [
2685
+ "num-traits",
2686
+ ]
2687
+
2578
2688
  [[package]]
2579
2689
  name = "os_info"
2580
2690
  version = "3.15.0"
@@ -2641,6 +2751,44 @@ version = "2.3.2"
2641
2751
  source = "registry+https://github.com/rust-lang/crates.io-index"
2642
2752
  checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2643
2753
 
2754
+ [[package]]
2755
+ name = "phf"
2756
+ version = "0.11.3"
2757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2758
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
2759
+ dependencies = [
2760
+ "phf_shared",
2761
+ ]
2762
+
2763
+ [[package]]
2764
+ name = "phf_codegen"
2765
+ version = "0.11.3"
2766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2767
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
2768
+ dependencies = [
2769
+ "phf_generator",
2770
+ "phf_shared",
2771
+ ]
2772
+
2773
+ [[package]]
2774
+ name = "phf_generator"
2775
+ version = "0.11.3"
2776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2777
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
2778
+ dependencies = [
2779
+ "phf_shared",
2780
+ "rand 0.8.6",
2781
+ ]
2782
+
2783
+ [[package]]
2784
+ name = "phf_shared"
2785
+ version = "0.11.3"
2786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2787
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
2788
+ dependencies = [
2789
+ "siphasher",
2790
+ ]
2791
+
2644
2792
  [[package]]
2645
2793
  name = "pin-project"
2646
2794
  version = "1.1.13"
@@ -2712,6 +2860,15 @@ version = "1.13.1"
2712
2860
  source = "registry+https://github.com/rust-lang/crates.io-index"
2713
2861
  checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2714
2862
 
2863
+ [[package]]
2864
+ name = "portable-atomic-util"
2865
+ version = "0.2.7"
2866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2867
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
2868
+ dependencies = [
2869
+ "portable-atomic",
2870
+ ]
2871
+
2715
2872
  [[package]]
2716
2873
  name = "potential_utf"
2717
2874
  version = "0.1.5"
@@ -2884,6 +3041,46 @@ dependencies = [
2884
3041
  "syn 2.0.117",
2885
3042
  ]
2886
3043
 
3044
+ [[package]]
3045
+ name = "pyo3-stub-gen"
3046
+ version = "0.22.3"
3047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3048
+ checksum = "1242a6080f45edcfaf3be3b9968914dd47a408c5590aea22770b978f7c36ffa7"
3049
+ dependencies = [
3050
+ "anyhow",
3051
+ "chrono",
3052
+ "either",
3053
+ "indexmap",
3054
+ "inventory",
3055
+ "itertools 0.14.0",
3056
+ "log",
3057
+ "maplit",
3058
+ "num-complex",
3059
+ "numpy",
3060
+ "ordered-float",
3061
+ "pyo3",
3062
+ "pyo3-stub-gen-derive",
3063
+ "rustpython-parser",
3064
+ "serde",
3065
+ "serde_json",
3066
+ "time 0.3.47",
3067
+ "toml 1.1.2+spec-1.1.0",
3068
+ ]
3069
+
3070
+ [[package]]
3071
+ name = "pyo3-stub-gen-derive"
3072
+ version = "0.22.3"
3073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3074
+ checksum = "fd9a73abe6f57890e657c265b86805637138f83203e1a56bc156078abf215e36"
3075
+ dependencies = [
3076
+ "heck",
3077
+ "indexmap",
3078
+ "proc-macro2",
3079
+ "quote",
3080
+ "rustpython-parser",
3081
+ "syn 2.0.117",
3082
+ ]
3083
+
2887
3084
  [[package]]
2888
3085
  name = "quick-error"
2889
3086
  version = "2.0.1"
@@ -2920,13 +3117,24 @@ version = "6.0.0"
2920
3117
  source = "registry+https://github.com/rust-lang/crates.io-index"
2921
3118
  checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2922
3119
 
3120
+ [[package]]
3121
+ name = "rand"
3122
+ version = "0.8.6"
3123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3124
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
3125
+ dependencies = [
3126
+ "libc",
3127
+ "rand_chacha 0.3.1",
3128
+ "rand_core 0.6.4",
3129
+ ]
3130
+
2923
3131
  [[package]]
2924
3132
  name = "rand"
2925
3133
  version = "0.9.4"
2926
3134
  source = "registry+https://github.com/rust-lang/crates.io-index"
2927
3135
  checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
2928
3136
  dependencies = [
2929
- "rand_chacha",
3137
+ "rand_chacha 0.9.0",
2930
3138
  "rand_core 0.9.5",
2931
3139
  ]
2932
3140
 
@@ -2941,6 +3149,16 @@ dependencies = [
2941
3149
  "rand_core 0.10.1",
2942
3150
  ]
2943
3151
 
3152
+ [[package]]
3153
+ name = "rand_chacha"
3154
+ version = "0.3.1"
3155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3156
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
3157
+ dependencies = [
3158
+ "ppv-lite86",
3159
+ "rand_core 0.6.4",
3160
+ ]
3161
+
2944
3162
  [[package]]
2945
3163
  name = "rand_chacha"
2946
3164
  version = "0.9.0"
@@ -2951,6 +3169,15 @@ dependencies = [
2951
3169
  "rand_core 0.9.5",
2952
3170
  ]
2953
3171
 
3172
+ [[package]]
3173
+ name = "rand_core"
3174
+ version = "0.6.4"
3175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3176
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
3177
+ dependencies = [
3178
+ "getrandom 0.2.17",
3179
+ ]
3180
+
2954
3181
  [[package]]
2955
3182
  name = "rand_core"
2956
3183
  version = "0.9.5"
@@ -2982,7 +3209,7 @@ dependencies = [
2982
3209
  "built",
2983
3210
  "cfg-if",
2984
3211
  "interpolate_name",
2985
- "itertools",
3212
+ "itertools 0.14.0",
2986
3213
  "libc",
2987
3214
  "libfuzzer-sys",
2988
3215
  "log",
@@ -2994,7 +3221,7 @@ dependencies = [
2994
3221
  "paste",
2995
3222
  "profiling",
2996
3223
  "rand 0.9.4",
2997
- "rand_chacha",
3224
+ "rand_chacha 0.9.0",
2998
3225
  "simd_helpers",
2999
3226
  "thiserror 2.0.18",
3000
3227
  "v_frame",
@@ -3022,6 +3249,12 @@ version = "0.6.2"
3022
3249
  source = "registry+https://github.com/rust-lang/crates.io-index"
3023
3250
  checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
3024
3251
 
3252
+ [[package]]
3253
+ name = "rawpointer"
3254
+ version = "0.2.1"
3255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3256
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
3257
+
3025
3258
  [[package]]
3026
3259
  name = "rayon"
3027
3260
  version = "1.12.0"
@@ -3132,6 +3365,12 @@ dependencies = [
3132
3365
  "windows-sys 0.52.0",
3133
3366
  ]
3134
3367
 
3368
+ [[package]]
3369
+ name = "rustc-hash"
3370
+ version = "1.1.0"
3371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3372
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
3373
+
3135
3374
  [[package]]
3136
3375
  name = "rustc-hash"
3137
3376
  version = "2.1.2"
@@ -3208,6 +3447,63 @@ dependencies = [
3208
3447
  "untrusted",
3209
3448
  ]
3210
3449
 
3450
+ [[package]]
3451
+ name = "rustpython-ast"
3452
+ version = "0.4.0"
3453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3454
+ checksum = "4cdaf8ee5c1473b993b398c174641d3aa9da847af36e8d5eb8291930b72f31a5"
3455
+ dependencies = [
3456
+ "is-macro",
3457
+ "num-bigint",
3458
+ "rustpython-parser-core",
3459
+ "static_assertions",
3460
+ ]
3461
+
3462
+ [[package]]
3463
+ name = "rustpython-parser"
3464
+ version = "0.4.0"
3465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3466
+ checksum = "868f724daac0caf9bd36d38caf45819905193a901e8f1c983345a68e18fb2abb"
3467
+ dependencies = [
3468
+ "anyhow",
3469
+ "is-macro",
3470
+ "itertools 0.11.0",
3471
+ "lalrpop-util",
3472
+ "log",
3473
+ "num-bigint",
3474
+ "num-traits",
3475
+ "phf",
3476
+ "phf_codegen",
3477
+ "rustc-hash 1.1.0",
3478
+ "rustpython-ast",
3479
+ "rustpython-parser-core",
3480
+ "tiny-keccak",
3481
+ "unic-emoji-char",
3482
+ "unic-ucd-ident",
3483
+ "unicode_names2",
3484
+ ]
3485
+
3486
+ [[package]]
3487
+ name = "rustpython-parser-core"
3488
+ version = "0.4.0"
3489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3490
+ checksum = "b4b6c12fa273825edc7bccd9a734f0ad5ba4b8a2f4da5ff7efe946f066d0f4ad"
3491
+ dependencies = [
3492
+ "is-macro",
3493
+ "memchr",
3494
+ "rustpython-parser-vendored",
3495
+ ]
3496
+
3497
+ [[package]]
3498
+ name = "rustpython-parser-vendored"
3499
+ version = "0.4.0"
3500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3501
+ checksum = "04fcea49a4630a3a5d940f4d514dc4f575ed63c14c3e3ed07146634aed7f67a6"
3502
+ dependencies = [
3503
+ "memchr",
3504
+ "once_cell",
3505
+ ]
3506
+
3211
3507
  [[package]]
3212
3508
  name = "rustversion"
3213
3509
  version = "1.0.22"
@@ -3445,6 +3741,12 @@ dependencies = [
3445
3741
  "time 0.3.47",
3446
3742
  ]
3447
3743
 
3744
+ [[package]]
3745
+ name = "siphasher"
3746
+ version = "1.0.3"
3747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3748
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
3749
+
3448
3750
  [[package]]
3449
3751
  name = "slab"
3450
3752
  version = "0.4.12"
@@ -3529,6 +3831,12 @@ version = "1.2.1"
3529
3831
  source = "registry+https://github.com/rust-lang/crates.io-index"
3530
3832
  checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3531
3833
 
3834
+ [[package]]
3835
+ name = "static_assertions"
3836
+ version = "1.1.0"
3837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3838
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3839
+
3532
3840
  [[package]]
3533
3841
  name = "strict-num"
3534
3842
  version = "0.1.1"
@@ -3728,6 +4036,15 @@ dependencies = [
3728
4036
  "time-core",
3729
4037
  ]
3730
4038
 
4039
+ [[package]]
4040
+ name = "tiny-keccak"
4041
+ version = "2.0.2"
4042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4043
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
4044
+ dependencies = [
4045
+ "crunchy",
4046
+ ]
4047
+
3731
4048
  [[package]]
3732
4049
  name = "tiny-skia"
3733
4050
  version = "0.11.4"
@@ -3837,6 +4154,21 @@ dependencies = [
3837
4154
  "winnow 0.7.15",
3838
4155
  ]
3839
4156
 
4157
+ [[package]]
4158
+ name = "toml"
4159
+ version = "1.1.2+spec-1.1.0"
4160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4161
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
4162
+ dependencies = [
4163
+ "indexmap",
4164
+ "serde_core",
4165
+ "serde_spanned",
4166
+ "toml_datetime 1.1.1+spec-1.1.0",
4167
+ "toml_parser",
4168
+ "toml_writer",
4169
+ "winnow 1.0.3",
4170
+ ]
4171
+
3840
4172
  [[package]]
3841
4173
  name = "toml_datetime"
3842
4174
  version = "0.7.5+spec-1.1.0"
@@ -3916,7 +4248,7 @@ version = "0.5.1"
3916
4248
  source = "registry+https://github.com/rust-lang/crates.io-index"
3917
4249
  checksum = "cb30dbbd9036155e74adad6812e9898d03ec374946234fbcebd5dfc7b9187b90"
3918
4250
  dependencies = [
3919
- "rustc-hash",
4251
+ "rustc-hash 2.1.2",
3920
4252
  ]
3921
4253
 
3922
4254
  [[package]]
@@ -3931,6 +4263,38 @@ version = "1.20.0"
3931
4263
  source = "registry+https://github.com/rust-lang/crates.io-index"
3932
4264
  checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
3933
4265
 
4266
+ [[package]]
4267
+ name = "unic-char-property"
4268
+ version = "0.9.0"
4269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4270
+ checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
4271
+ dependencies = [
4272
+ "unic-char-range",
4273
+ ]
4274
+
4275
+ [[package]]
4276
+ name = "unic-char-range"
4277
+ version = "0.9.0"
4278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4279
+ checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
4280
+
4281
+ [[package]]
4282
+ name = "unic-common"
4283
+ version = "0.9.0"
4284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4285
+ checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
4286
+
4287
+ [[package]]
4288
+ name = "unic-emoji-char"
4289
+ version = "0.9.0"
4290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4291
+ checksum = "0b07221e68897210270a38bde4babb655869637af0f69407f96053a34f76494d"
4292
+ dependencies = [
4293
+ "unic-char-property",
4294
+ "unic-char-range",
4295
+ "unic-ucd-version",
4296
+ ]
4297
+
3934
4298
  [[package]]
3935
4299
  name = "unic-langid"
3936
4300
  version = "0.9.6"
@@ -3949,6 +4313,26 @@ dependencies = [
3949
4313
  "tinystr 0.8.3",
3950
4314
  ]
3951
4315
 
4316
+ [[package]]
4317
+ name = "unic-ucd-ident"
4318
+ version = "0.9.0"
4319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4320
+ checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
4321
+ dependencies = [
4322
+ "unic-char-property",
4323
+ "unic-char-range",
4324
+ "unic-ucd-version",
4325
+ ]
4326
+
4327
+ [[package]]
4328
+ name = "unic-ucd-version"
4329
+ version = "0.9.0"
4330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4331
+ checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
4332
+ dependencies = [
4333
+ "unic-common",
4334
+ ]
4335
+
3952
4336
  [[package]]
3953
4337
  name = "unicode-ident"
3954
4338
  version = "1.0.24"
@@ -3961,12 +4345,40 @@ version = "1.13.2"
3961
4345
  source = "registry+https://github.com/rust-lang/crates.io-index"
3962
4346
  checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
3963
4347
 
4348
+ [[package]]
4349
+ name = "unicode-width"
4350
+ version = "0.2.2"
4351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4352
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
4353
+
3964
4354
  [[package]]
3965
4355
  name = "unicode-xid"
3966
4356
  version = "0.2.6"
3967
4357
  source = "registry+https://github.com/rust-lang/crates.io-index"
3968
4358
  checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
3969
4359
 
4360
+ [[package]]
4361
+ name = "unicode_names2"
4362
+ version = "1.3.0"
4363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4364
+ checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
4365
+ dependencies = [
4366
+ "phf",
4367
+ "unicode_names2_generator",
4368
+ ]
4369
+
4370
+ [[package]]
4371
+ name = "unicode_names2_generator"
4372
+ version = "1.3.0"
4373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4374
+ checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
4375
+ dependencies = [
4376
+ "getopts",
4377
+ "log",
4378
+ "phf_codegen",
4379
+ "rand 0.8.6",
4380
+ ]
4381
+
3970
4382
  [[package]]
3971
4383
  name = "untrusted"
3972
4384
  version = "0.9.0"
@@ -4057,7 +4469,7 @@ dependencies = [
4057
4469
 
4058
4470
  [[package]]
4059
4471
  name = "velopack"
4060
- version = "1.0.9-gc12205f"
4472
+ version = "1.2.0"
4061
4473
  dependencies = [
4062
4474
  "anyhow",
4063
4475
  "bitflags 2.11.1",
@@ -4091,7 +4503,7 @@ dependencies = [
4091
4503
 
4092
4504
  [[package]]
4093
4505
  name = "velopack_bins"
4094
- version = "1.0.9-gc12205f"
4506
+ version = "1.2.0"
4095
4507
  dependencies = [
4096
4508
  "anyhow",
4097
4509
  "bitflags 2.11.1",
@@ -4143,7 +4555,7 @@ dependencies = [
4143
4555
 
4144
4556
  [[package]]
4145
4557
  name = "velopack_l18n"
4146
- version = "1.0.9-gc12205f"
4558
+ version = "1.2.0"
4147
4559
  dependencies = [
4148
4560
  "anyhow",
4149
4561
  "fluent",
@@ -4159,7 +4571,7 @@ dependencies = [
4159
4571
 
4160
4572
  [[package]]
4161
4573
  name = "velopack_libc"
4162
- version = "1.0.9-gc12205f"
4574
+ version = "1.2.0"
4163
4575
  dependencies = [
4164
4576
  "anyhow",
4165
4577
  "cbindgen",
@@ -4176,7 +4588,7 @@ dependencies = [
4176
4588
 
4177
4589
  [[package]]
4178
4590
  name = "velopack_nodeffi"
4179
- version = "1.0.9-gc12205f"
4591
+ version = "1.2.0"
4180
4592
  dependencies = [
4181
4593
  "lazy_static",
4182
4594
  "log",
@@ -4195,12 +4607,13 @@ dependencies = [
4195
4607
  "pyo3",
4196
4608
  "pyo3-build-config",
4197
4609
  "pyo3-log",
4610
+ "pyo3-stub-gen",
4198
4611
  "velopack",
4199
4612
  ]
4200
4613
 
4201
4614
  [[package]]
4202
4615
  name = "velopack_wix"
4203
- version = "1.0.9-gc12205f"
4616
+ version = "1.2.0"
4204
4617
  dependencies = [
4205
4618
  "anyhow",
4206
4619
  "remove_dir_all",
@@ -6,7 +6,7 @@ exclude = [
6
6
  ]
7
7
 
8
8
  [workspace.package]
9
- version = "1.0.9-gc12205f"
9
+ version = "1.2.0"
10
10
  authors = ["Velopack Ltd, Caelan Sayler <git@caesay.com>"]
11
11
  homepage = "https://velopack.io"
12
12
  repository = "https://github.com/velopack/velopack"
@@ -80,9 +80,14 @@ uuid = { version = "1.21", features = ["v4", "fast-rng", "macro-diagnostics"] }
80
80
  walkdir = "2.5"
81
81
  rayon = "1.11"
82
82
  progress-streams = "1.1"
83
- pyo3 = { version = "0.28", features = ["extension-module", "macros", "abi3", "abi3-py37", "anyhow"] }
83
+ # NB: extension-module + abi3 + abi3-py37 are intentionally NOT enabled here. They are pulled in by
84
+ # lib-python's default `extension` feature so that the `stub_gen` binary can build them out
85
+ # (via --no-default-features). Building without abi3 lets pyo3 target the real interpreter (>= 3.10),
86
+ # which is required for pyo3-stub-gen to compile (it references Py_3_10-only exception types).
87
+ pyo3 = { version = "0.28", features = ["macros", "anyhow"] }
84
88
  pyo3-build-config = "0.28"
85
89
  pyo3-log = "0.13"
90
+ pyo3-stub-gen = "0.22"
86
91
  winreg = "0.56"
87
92
  serial_test = { version = "3", features = ["file_locks"] }
88
93
  sys-locale = "0.3"