binaryoptionstoolsv2 0.1.8__tar.gz → 0.2.8__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.
- {BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2 → binaryoptionstoolsv2-0.2.8/BinaryOptionsToolsV2/rust}/Cargo.lock +1342 -1016
- binaryoptionstoolsv2-0.2.8/BinaryOptionsToolsV2/rust/Cargo.toml +46 -0
- binaryoptionstoolsv2-0.2.8/BinaryOptionsToolsV2/rust/LICENSE +100 -0
- binaryoptionstoolsv2-0.2.8/BinaryOptionsToolsV2/rust/Readme.md +479 -0
- binaryoptionstoolsv2-0.2.8/BinaryOptionsToolsV2/rust/build.rs +25 -0
- binaryoptionstoolsv2-0.2.8/BinaryOptionsToolsV2/rust/src/config.rs +101 -0
- {BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2 → binaryoptionstoolsv2-0.2.8/BinaryOptionsToolsV2/rust}/src/error.rs +47 -33
- binaryoptionstoolsv2-0.2.8/BinaryOptionsToolsV2/rust/src/framework.rs +456 -0
- {BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2 → binaryoptionstoolsv2-0.2.8/BinaryOptionsToolsV2/rust}/src/lib.rs +15 -5
- {BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2 → binaryoptionstoolsv2-0.2.8/BinaryOptionsToolsV2/rust}/src/logs.rs +43 -30
- binaryoptionstoolsv2-0.2.8/BinaryOptionsToolsV2/rust/src/pocketoption.rs +1038 -0
- {BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2 → binaryoptionstoolsv2-0.2.8/BinaryOptionsToolsV2/rust}/src/runtime.rs +18 -18
- {BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2 → binaryoptionstoolsv2-0.2.8/BinaryOptionsToolsV2/rust}/src/stream.rs +1 -1
- binaryoptionstoolsv2-0.2.8/BinaryOptionsToolsV2/rust/src/validator.rs +270 -0
- binaryoptionstoolsv2-0.2.8/LICENSE +100 -0
- binaryoptionstoolsv2-0.2.8/PKG-INFO +516 -0
- binaryoptionstoolsv2-0.2.8/Readme.md +479 -0
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/binary_options_tools/Cargo.lock +1011 -888
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/Cargo.toml +47 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/LICENSE +100 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/Readme.md +268 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/data/expert_options_regions.json +72 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/data/pocket_options_regions.json +37 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/config.rs +56 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/error.rs +79 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/expertoptions/action.rs +98 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/expertoptions/client.rs +149 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/expertoptions/connect.rs +105 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/expertoptions/error.rs +21 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/expertoptions/mod.rs +10 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/expertoptions/modules/keep_alive.rs +77 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/expertoptions/modules/mod.rs +29 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/expertoptions/modules/profile.rs +387 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/expertoptions/regions.rs +5 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/expertoptions/state.rs +122 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/expertoptions/types.rs +71 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/framework/market.rs +24 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/framework/mod.rs +174 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/framework/virtual_market.rs +362 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/lib.rs +82 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption/candle.rs +808 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption/connect.rs +101 -0
- {BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption_pre → binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption}/error.rs +67 -50
- {BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption_pre → binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption}/mod.rs +15 -15
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption/modules/assets.rs +263 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption/modules/balance.rs +84 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption/modules/deals.rs +461 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption/modules/get_candles.rs +348 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption/modules/historical_data.rs +1041 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption/modules/keep_alive.rs +297 -0
- {BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption_pre → binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption}/modules/mod.rs +61 -88
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption/modules/pending_trades.rs +328 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption/modules/pending_trades_tests.rs +805 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption/modules/raw.rs +359 -0
- {BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption_pre → binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption}/modules/server_time.rs +66 -58
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption/modules/subscriptions.rs +984 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption/modules/trades.rs +305 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption/modules/trades_tests/common.rs +176 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption/modules/trades_tests/concurrency.rs +89 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption/modules/trades_tests/mod.rs +2 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption/pocket_client.rs +1288 -0
- {BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption_pre → binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption}/regions.rs +72 -64
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption/ssid.rs +371 -0
- {BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption_pre → binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption}/state.rs +405 -293
- {BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption_pre → binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption}/types.rs +323 -262
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/pocketoption/utils.rs +223 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/reimports.rs +1 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/traits.rs +10 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/utils/mod.rs +151 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/utils/serialize.rs +58 -0
- binaryoptionstoolsv2-0.2.8/crates/binary_options_tools/src/validator.rs +256 -0
- binaryoptionstoolsv2-0.2.8/crates/core-pre/.gitignore +2 -0
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/.vscode/mcp.json +13 -13
- binaryoptionstoolsv2-0.2.8/crates/core-pre/Cargo.toml +26 -0
- binaryoptionstoolsv2-0.2.8/crates/core-pre/LICENSE +100 -0
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/README.md +1 -1
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/diagrams/architecture.txt +51 -51
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/diagrams/diagram.txt +40 -40
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/docs/testing-framework.md +2 -3
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/examples/basic_connector_usage.rs +72 -72
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/examples/echo_client.rs +13 -8
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/examples/middleware_example.rs +9 -5
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/examples/testing_echo_client.rs +16 -6
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/src/builder.rs +128 -74
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/src/callback.rs +51 -51
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/src/client.rs +73 -69
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/src/connector.rs +52 -52
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/src/error.rs +49 -38
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/src/lib.rs +32 -31
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/src/message.rs +1 -1
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/src/middleware.rs +502 -499
- binaryoptionstoolsv2-0.2.8/crates/core-pre/src/reimports.rs +7 -0
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/src/testing.rs +623 -623
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/src/traits.rs +233 -210
- {BinaryOptionsToolsV2-0.1.8/crates/core → binaryoptionstoolsv2-0.2.8/crates/core-pre}/src/utils/mod.rs +3 -2
- {BinaryOptionsToolsV2-0.1.8/crates/core/src/general → binaryoptionstoolsv2-0.2.8/crates/core-pre/src/utils}/stream.rs +30 -38
- {BinaryOptionsToolsV2-0.1.8/crates/core → binaryoptionstoolsv2-0.2.8/crates/core-pre}/src/utils/time.rs +20 -19
- {BinaryOptionsToolsV2-0.1.8/crates/core → binaryoptionstoolsv2-0.2.8/crates/core-pre}/src/utils/tracing.rs +26 -19
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/tests/testing_wrapper_tests.rs +198 -196
- binaryoptionstoolsv2-0.2.8/crates/macros/.gitignore +2 -0
- binaryoptionstoolsv2-0.2.8/crates/macros/ActionImpl_README.md +132 -0
- binaryoptionstoolsv2-0.2.8/crates/macros/Cargo.lock +517 -0
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/macros/Cargo.toml +10 -5
- binaryoptionstoolsv2-0.2.8/crates/macros/LICENSE +100 -0
- binaryoptionstoolsv2-0.2.8/crates/macros/examples/action_example.rs +49 -0
- binaryoptionstoolsv2-0.2.8/crates/macros/readme.md +1 -0
- binaryoptionstoolsv2-0.2.8/crates/macros/src/action.rs +87 -0
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/macros/src/config.rs +11 -8
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/macros/src/impls/config_impl.rs +7 -7
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/macros/src/impls/mod.rs +1 -1
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/macros/src/lib.rs +16 -1
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/macros/src/timeout.rs +1 -1
- binaryoptionstoolsv2-0.2.8/pyproject.toml +63 -0
- binaryoptionstoolsv2-0.2.8/python/BinaryOptionsToolsV2/BinaryOptionsToolsV2.pyi +155 -0
- binaryoptionstoolsv2-0.2.8/python/BinaryOptionsToolsV2/__init__.py +54 -0
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8/python}/BinaryOptionsToolsV2/config.py +143 -124
- binaryoptionstoolsv2-0.2.8/python/BinaryOptionsToolsV2/pocketoption/__init__.py +19 -0
- binaryoptionstoolsv2-0.2.8/python/BinaryOptionsToolsV2/pocketoption/asynchronous.py +1402 -0
- binaryoptionstoolsv2-0.2.8/python/BinaryOptionsToolsV2/pocketoption/synchronous.py +724 -0
- {BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2 → binaryoptionstoolsv2-0.2.8/python}/BinaryOptionsToolsV2/tracing.py +159 -142
- {BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2 → binaryoptionstoolsv2-0.2.8/python}/BinaryOptionsToolsV2/validator.py +271 -272
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/.github/workflows/CI.yml +0 -169
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/.gitignore +0 -72
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/BinaryOptionsToolsV2/__init__.py +0 -11
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/BinaryOptionsToolsV2/config.py +0 -124
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/BinaryOptionsToolsV2/pocketoption/__init__.py +0 -13
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/BinaryOptionsToolsV2/pocketoption/asyncronous.py +0 -533
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/BinaryOptionsToolsV2/pocketoption/syncronous.py +0 -376
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/Cargo.toml +0 -31
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/Dockerfile +0 -37
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/Readme.md +0 -193
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/__init__.py +0 -11
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/candles_eurusd_otc.csv +0 -1637
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/pocketoption/__init__.py +0 -13
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/pocketoption/asyncronous.py +0 -533
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/pocketoption/syncronous.py +0 -376
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/src/config.rs +0 -60
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/src/pocketoption.rs +0 -425
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/src/validator.rs +0 -169
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/tests/test.py +0 -34
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/tests/test_sync.py +0 -14
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/tracing.py +0 -142
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/uv.lock +0 -7
- BinaryOptionsToolsV2-0.1.8/BinaryOptionsToolsV2/validator.py +0 -272
- BinaryOptionsToolsV2-0.1.8/PKG-INFO +0 -205
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/.gitignore +0 -4
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/Cargo.toml +0 -41
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/README.md +0 -22
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/Readme.md +0 -22
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/errors.log +0 -535
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/mkds/README.md +0 -96
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/regions.json +0 -121
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/lib.rs +0 -54
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/error.rs +0 -76
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/mod.rs +0 -9
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/parser/basic.rs +0 -46
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/parser/message.rs +0 -486
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/parser/mod.rs +0 -2
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/pocket_client.rs +0 -1296
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/types/base.rs +0 -65
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/types/callback.rs +0 -82
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/types/data.rs +0 -253
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/types/info.rs +0 -62
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/types/mod.rs +0 -7
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/types/order.rs +0 -309
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/types/success.rs +0 -21
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/types/update.rs +0 -379
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/utils/basic.rs +0 -22
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/utils/connect.rs +0 -86
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/utils/location.rs +0 -35
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/utils/mod.rs +0 -3
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/validators.rs +0 -57
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/ws/connect.rs +0 -84
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/ws/listener.rs +0 -137
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/ws/mod.rs +0 -7
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/ws/regions.rs +0 -64
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/ws/ssid.rs +0 -1
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption/ws/stream.rs +0 -235
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption_pre/candle.rs +0 -406
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption_pre/connect.rs +0 -76
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption_pre/modules/assets.rs +0 -104
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption_pre/modules/balance.rs +0 -79
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption_pre/modules/deals.rs +0 -328
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption_pre/modules/keep_alive.rs +0 -128
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption_pre/modules/subscriptions.rs +0 -684
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption_pre/modules/trades.rs +0 -213
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption_pre/pocket_client.rs +0 -406
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption_pre/ssid.rs +0 -199
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/pocketoption_pre/utils.rs +0 -44
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/src/reimports.rs +0 -5
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/tests/assets.txt +0 -176
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/tests/assets2.json +0 -9634
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/tests/assets3.json +0 -5925
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/tests/data.json +0 -5674
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/tests/fail_open_pending_order.json +0 -20
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/tests/fail_open_pending_order2.json +0 -21
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/tests/load_history_period.json +0 -1357
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/tests/load_history_period2.json +0 -4161
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/tests/success_close_order.json +0 -28
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/tests/success_open_order.json +0 -23
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/tests/success_open_pending_order.json +0 -15
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/tests/success_update_pending.json +0 -62
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/tests/test.json +0 -6
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/tests/test_close_order.txt +0 -54
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/tests/test_demo.json +0 -6
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/tests/update_close_order.json +0 -120
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/tests/update_closed_deals.txt +0 -582
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/tests/update_history_new.json +0 -1265
- BinaryOptionsToolsV2-0.1.8/crates/binary_options_tools/tests/update_opened_deals.txt +0 -98
- BinaryOptionsToolsV2-0.1.8/crates/core/.gitignore +0 -2
- BinaryOptionsToolsV2-0.1.8/crates/core/Cargo.lock +0 -2215
- BinaryOptionsToolsV2-0.1.8/crates/core/Cargo.toml +0 -33
- BinaryOptionsToolsV2-0.1.8/crates/core/README.md +0 -32
- BinaryOptionsToolsV2-0.1.8/crates/core/data/batching.rs +0 -218
- BinaryOptionsToolsV2-0.1.8/crates/core/data/client2.rs +0 -1027
- BinaryOptionsToolsV2-0.1.8/crates/core/data/client_enhanced.rs +0 -801
- BinaryOptionsToolsV2-0.1.8/crates/core/data/connection.rs +0 -287
- BinaryOptionsToolsV2-0.1.8/crates/core/data/events.rs +0 -234
- BinaryOptionsToolsV2-0.1.8/crates/core/data/websocket_config.rs +0 -225
- BinaryOptionsToolsV2-0.1.8/crates/core/errors.log +0 -0
- BinaryOptionsToolsV2-0.1.8/crates/core/readme.md +0 -32
- BinaryOptionsToolsV2-0.1.8/crates/core/src/constants.rs +0 -7
- BinaryOptionsToolsV2-0.1.8/crates/core/src/error.rs +0 -71
- BinaryOptionsToolsV2-0.1.8/crates/core/src/general/client.rs +0 -675
- BinaryOptionsToolsV2-0.1.8/crates/core/src/general/config.rs +0 -49
- BinaryOptionsToolsV2-0.1.8/crates/core/src/general/mod.rs +0 -8
- BinaryOptionsToolsV2-0.1.8/crates/core/src/general/send.rs +0 -323
- BinaryOptionsToolsV2-0.1.8/crates/core/src/general/traits.rs +0 -113
- BinaryOptionsToolsV2-0.1.8/crates/core/src/general/types.rs +0 -167
- BinaryOptionsToolsV2-0.1.8/crates/core/src/general/validate.rs +0 -21
- BinaryOptionsToolsV2-0.1.8/crates/core/src/lib.rs +0 -9
- BinaryOptionsToolsV2-0.1.8/crates/core/src/reimports.rs +0 -4
- BinaryOptionsToolsV2-0.1.8/crates/core-pre/Cargo.toml +0 -17
- BinaryOptionsToolsV2-0.1.8/crates/core-pre/src/reimports.rs +0 -6
- BinaryOptionsToolsV2-0.1.8/crates/core-pre/target/rust-analyzer/metadata/sysroot/Cargo.lock +0 -503
- BinaryOptionsToolsV2-0.1.8/crates/macros/.gitignore +0 -2
- BinaryOptionsToolsV2-0.1.8/crates/macros/Cargo.lock +0 -671
- BinaryOptionsToolsV2-0.1.8/crates/macros/README.md +0 -1
- BinaryOptionsToolsV2-0.1.8/crates/macros/readme.md +0 -1
- BinaryOptionsToolsV2-0.1.8/pyproject.toml +0 -19
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/src/signals.rs +1 -1
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/src/statistics.rs +1 -1
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/core-pre/tests/middleware_tests.rs +1 -1
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/macros/src/deserialize.rs +0 -0
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/macros/src/region.rs +0 -0
- {BinaryOptionsToolsV2-0.1.8 → binaryoptionstoolsv2-0.2.8}/crates/macros/src/serialize.rs +0 -0
|
@@ -4,54 +4,50 @@ version = 4
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "BinaryOptionsToolsV2"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.2.8"
|
|
8
8
|
dependencies = [
|
|
9
|
-
"
|
|
9
|
+
"async-stream",
|
|
10
|
+
"async-trait",
|
|
11
|
+
"binary_options_tools",
|
|
10
12
|
"chrono",
|
|
11
13
|
"futures-util",
|
|
12
14
|
"pyo3",
|
|
13
15
|
"pyo3-async-runtimes",
|
|
16
|
+
"pyo3-stub-gen",
|
|
14
17
|
"regex",
|
|
18
|
+
"rust_decimal",
|
|
19
|
+
"rust_decimal_macros",
|
|
15
20
|
"serde",
|
|
16
21
|
"serde_json",
|
|
17
|
-
"thiserror 2.0.
|
|
22
|
+
"thiserror 2.0.18",
|
|
18
23
|
"tokio",
|
|
19
24
|
"tracing",
|
|
20
25
|
"tracing-subscriber",
|
|
26
|
+
"tungstenite 0.28.0",
|
|
21
27
|
"url",
|
|
22
28
|
"uuid",
|
|
23
29
|
]
|
|
24
30
|
|
|
25
31
|
[[package]]
|
|
26
|
-
name = "
|
|
27
|
-
version = "0.
|
|
32
|
+
name = "ahash"
|
|
33
|
+
version = "0.7.8"
|
|
28
34
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
29
|
-
checksum = "
|
|
35
|
+
checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
|
|
30
36
|
dependencies = [
|
|
31
|
-
"
|
|
37
|
+
"getrandom 0.2.17",
|
|
38
|
+
"once_cell",
|
|
39
|
+
"version_check",
|
|
32
40
|
]
|
|
33
41
|
|
|
34
|
-
[[package]]
|
|
35
|
-
name = "adler2"
|
|
36
|
-
version = "2.0.0"
|
|
37
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
38
|
-
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
|
39
|
-
|
|
40
42
|
[[package]]
|
|
41
43
|
name = "aho-corasick"
|
|
42
|
-
version = "1.1.
|
|
44
|
+
version = "1.1.4"
|
|
43
45
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
-
checksum = "
|
|
46
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
45
47
|
dependencies = [
|
|
46
48
|
"memchr",
|
|
47
49
|
]
|
|
48
50
|
|
|
49
|
-
[[package]]
|
|
50
|
-
name = "android-tzdata"
|
|
51
|
-
version = "0.1.1"
|
|
52
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
-
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
|
54
|
-
|
|
55
51
|
[[package]]
|
|
56
52
|
name = "android_system_properties"
|
|
57
53
|
version = "0.1.5"
|
|
@@ -63,31 +59,47 @@ dependencies = [
|
|
|
63
59
|
|
|
64
60
|
[[package]]
|
|
65
61
|
name = "anyhow"
|
|
66
|
-
version = "1.0.
|
|
62
|
+
version = "1.0.102"
|
|
63
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
65
|
+
|
|
66
|
+
[[package]]
|
|
67
|
+
name = "arrayvec"
|
|
68
|
+
version = "0.7.6"
|
|
67
69
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
-
checksum = "
|
|
70
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
69
71
|
|
|
70
72
|
[[package]]
|
|
71
|
-
name = "async-
|
|
72
|
-
version = "
|
|
73
|
+
name = "async-stream"
|
|
74
|
+
version = "0.3.6"
|
|
73
75
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
-
checksum = "
|
|
76
|
+
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
|
75
77
|
dependencies = [
|
|
76
|
-
"
|
|
77
|
-
"event-listener-strategy",
|
|
78
|
+
"async-stream-impl",
|
|
78
79
|
"futures-core",
|
|
79
80
|
"pin-project-lite",
|
|
80
81
|
]
|
|
81
82
|
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "async-stream-impl"
|
|
85
|
+
version = "0.3.6"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
88
|
+
dependencies = [
|
|
89
|
+
"proc-macro2",
|
|
90
|
+
"quote",
|
|
91
|
+
"syn 2.0.117",
|
|
92
|
+
]
|
|
93
|
+
|
|
82
94
|
[[package]]
|
|
83
95
|
name = "async-trait"
|
|
84
|
-
version = "0.1.
|
|
96
|
+
version = "0.1.89"
|
|
85
97
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
-
checksum = "
|
|
98
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
87
99
|
dependencies = [
|
|
88
100
|
"proc-macro2",
|
|
89
101
|
"quote",
|
|
90
|
-
"syn 2.0.
|
|
102
|
+
"syn 2.0.117",
|
|
91
103
|
]
|
|
92
104
|
|
|
93
105
|
[[package]]
|
|
@@ -98,24 +110,9 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
|
98
110
|
|
|
99
111
|
[[package]]
|
|
100
112
|
name = "autocfg"
|
|
101
|
-
version = "1.
|
|
102
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
-
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
104
|
-
|
|
105
|
-
[[package]]
|
|
106
|
-
name = "backtrace"
|
|
107
|
-
version = "0.3.74"
|
|
113
|
+
version = "1.5.0"
|
|
108
114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
-
checksum = "
|
|
110
|
-
dependencies = [
|
|
111
|
-
"addr2line",
|
|
112
|
-
"cfg-if",
|
|
113
|
-
"libc",
|
|
114
|
-
"miniz_oxide",
|
|
115
|
-
"object",
|
|
116
|
-
"rustc-demangle",
|
|
117
|
-
"windows-targets 0.52.6",
|
|
118
|
-
]
|
|
115
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
119
116
|
|
|
120
117
|
[[package]]
|
|
121
118
|
name = "base64"
|
|
@@ -124,77 +121,84 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
124
121
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
125
122
|
|
|
126
123
|
[[package]]
|
|
127
|
-
name = "binary-options-tools"
|
|
128
|
-
version = "0.
|
|
124
|
+
name = "binary-options-tools-core-pre"
|
|
125
|
+
version = "0.2.0"
|
|
129
126
|
dependencies = [
|
|
130
|
-
"anyhow",
|
|
131
|
-
"async-channel",
|
|
132
127
|
"async-trait",
|
|
133
|
-
"binary-options-tools-core",
|
|
134
|
-
"binary-options-tools-macros",
|
|
135
|
-
"chrono",
|
|
136
128
|
"futures-util",
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
"rand",
|
|
140
|
-
"reqwest",
|
|
129
|
+
"kanal",
|
|
130
|
+
"rand 0.9.2",
|
|
141
131
|
"serde",
|
|
142
|
-
"serde-enum-str",
|
|
143
132
|
"serde_json",
|
|
144
|
-
"thiserror 2.0.
|
|
133
|
+
"thiserror 2.0.18",
|
|
145
134
|
"tokio",
|
|
135
|
+
"tokio-tungstenite 0.28.0",
|
|
146
136
|
"tracing",
|
|
147
|
-
"
|
|
148
|
-
"uuid",
|
|
137
|
+
"tracing-subscriber",
|
|
149
138
|
]
|
|
150
139
|
|
|
151
140
|
[[package]]
|
|
152
|
-
name = "binary-options-tools-
|
|
153
|
-
version = "0.
|
|
141
|
+
name = "binary-options-tools-macros"
|
|
142
|
+
version = "0.2.0"
|
|
154
143
|
dependencies = [
|
|
155
144
|
"anyhow",
|
|
156
|
-
"
|
|
157
|
-
"
|
|
158
|
-
"
|
|
159
|
-
"chrono",
|
|
160
|
-
"futures-util",
|
|
161
|
-
"php_serde",
|
|
162
|
-
"pin-project-lite",
|
|
163
|
-
"rand",
|
|
164
|
-
"reqwest",
|
|
145
|
+
"darling",
|
|
146
|
+
"proc-macro2",
|
|
147
|
+
"quote",
|
|
165
148
|
"serde",
|
|
166
149
|
"serde_json",
|
|
167
|
-
"
|
|
150
|
+
"syn 2.0.117",
|
|
168
151
|
"tokio",
|
|
169
|
-
"tokio-tungstenite",
|
|
170
152
|
"tracing",
|
|
171
|
-
"tracing-appender",
|
|
172
|
-
"tracing-subscriber",
|
|
173
153
|
"url",
|
|
174
|
-
"uuid",
|
|
175
154
|
]
|
|
176
155
|
|
|
177
156
|
[[package]]
|
|
178
|
-
name = "
|
|
179
|
-
version = "0.
|
|
157
|
+
name = "binary_options_tools"
|
|
158
|
+
version = "0.2.0"
|
|
180
159
|
dependencies = [
|
|
181
160
|
"anyhow",
|
|
182
|
-
"
|
|
183
|
-
"
|
|
184
|
-
"
|
|
161
|
+
"async-trait",
|
|
162
|
+
"binary-options-tools-core-pre",
|
|
163
|
+
"binary-options-tools-macros",
|
|
164
|
+
"chrono",
|
|
165
|
+
"futures-util",
|
|
166
|
+
"php_serde",
|
|
167
|
+
"rand 0.8.5",
|
|
168
|
+
"regex",
|
|
169
|
+
"reqwest",
|
|
170
|
+
"rust_decimal",
|
|
171
|
+
"rust_decimal_macros",
|
|
172
|
+
"rustls 0.23.37",
|
|
173
|
+
"rustls-native-certs",
|
|
174
|
+
"ryu",
|
|
185
175
|
"serde",
|
|
186
176
|
"serde_json",
|
|
187
|
-
"
|
|
177
|
+
"thiserror 1.0.69",
|
|
188
178
|
"tokio",
|
|
179
|
+
"tokio-tungstenite 0.21.0",
|
|
189
180
|
"tracing",
|
|
190
181
|
"url",
|
|
182
|
+
"uuid",
|
|
191
183
|
]
|
|
192
184
|
|
|
193
185
|
[[package]]
|
|
194
186
|
name = "bitflags"
|
|
195
|
-
version = "2.
|
|
187
|
+
version = "2.11.0"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "bitvec"
|
|
193
|
+
version = "1.0.1"
|
|
196
194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
-
checksum = "
|
|
195
|
+
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
|
|
196
|
+
dependencies = [
|
|
197
|
+
"funty",
|
|
198
|
+
"radium",
|
|
199
|
+
"tap",
|
|
200
|
+
"wyz",
|
|
201
|
+
]
|
|
198
202
|
|
|
199
203
|
[[package]]
|
|
200
204
|
name = "block-buffer"
|
|
@@ -205,11 +209,56 @@ dependencies = [
|
|
|
205
209
|
"generic-array",
|
|
206
210
|
]
|
|
207
211
|
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "borsh"
|
|
214
|
+
version = "1.6.0"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"borsh-derive",
|
|
219
|
+
"cfg_aliases",
|
|
220
|
+
]
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "borsh-derive"
|
|
224
|
+
version = "1.6.0"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "0686c856aa6aac0c4498f936d7d6a02df690f614c03e4d906d1018062b5c5e2c"
|
|
227
|
+
dependencies = [
|
|
228
|
+
"once_cell",
|
|
229
|
+
"proc-macro-crate",
|
|
230
|
+
"proc-macro2",
|
|
231
|
+
"quote",
|
|
232
|
+
"syn 2.0.117",
|
|
233
|
+
]
|
|
234
|
+
|
|
208
235
|
[[package]]
|
|
209
236
|
name = "bumpalo"
|
|
210
|
-
version = "3.
|
|
237
|
+
version = "3.20.2"
|
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
240
|
+
|
|
241
|
+
[[package]]
|
|
242
|
+
name = "bytecheck"
|
|
243
|
+
version = "0.6.12"
|
|
244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
+
checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
|
|
246
|
+
dependencies = [
|
|
247
|
+
"bytecheck_derive",
|
|
248
|
+
"ptr_meta",
|
|
249
|
+
"simdutf8",
|
|
250
|
+
]
|
|
251
|
+
|
|
252
|
+
[[package]]
|
|
253
|
+
name = "bytecheck_derive"
|
|
254
|
+
version = "0.6.12"
|
|
211
255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
-
checksum = "
|
|
256
|
+
checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
|
|
257
|
+
dependencies = [
|
|
258
|
+
"proc-macro2",
|
|
259
|
+
"quote",
|
|
260
|
+
"syn 1.0.109",
|
|
261
|
+
]
|
|
213
262
|
|
|
214
263
|
[[package]]
|
|
215
264
|
name = "byteorder"
|
|
@@ -219,32 +268,38 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
219
268
|
|
|
220
269
|
[[package]]
|
|
221
270
|
name = "bytes"
|
|
222
|
-
version = "1.
|
|
271
|
+
version = "1.11.1"
|
|
223
272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
-
checksum = "
|
|
273
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
225
274
|
|
|
226
275
|
[[package]]
|
|
227
276
|
name = "cc"
|
|
228
|
-
version = "1.2.
|
|
277
|
+
version = "1.2.56"
|
|
229
278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
-
checksum = "
|
|
279
|
+
checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
|
|
231
280
|
dependencies = [
|
|
281
|
+
"find-msvc-tools",
|
|
232
282
|
"shlex",
|
|
233
283
|
]
|
|
234
284
|
|
|
235
285
|
[[package]]
|
|
236
286
|
name = "cfg-if"
|
|
237
|
-
version = "1.0.
|
|
287
|
+
version = "1.0.4"
|
|
288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
289
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
290
|
+
|
|
291
|
+
[[package]]
|
|
292
|
+
name = "cfg_aliases"
|
|
293
|
+
version = "0.2.1"
|
|
238
294
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
-
checksum = "
|
|
295
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
240
296
|
|
|
241
297
|
[[package]]
|
|
242
298
|
name = "chrono"
|
|
243
|
-
version = "0.4.
|
|
299
|
+
version = "0.4.44"
|
|
244
300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
-
checksum = "
|
|
301
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
246
302
|
dependencies = [
|
|
247
|
-
"android-tzdata",
|
|
248
303
|
"iana-time-zone",
|
|
249
304
|
"js-sys",
|
|
250
305
|
"num-traits",
|
|
@@ -253,20 +308,11 @@ dependencies = [
|
|
|
253
308
|
"windows-link",
|
|
254
309
|
]
|
|
255
310
|
|
|
256
|
-
[[package]]
|
|
257
|
-
name = "concurrent-queue"
|
|
258
|
-
version = "2.5.0"
|
|
259
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
-
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
|
261
|
-
dependencies = [
|
|
262
|
-
"crossbeam-utils",
|
|
263
|
-
]
|
|
264
|
-
|
|
265
311
|
[[package]]
|
|
266
312
|
name = "core-foundation"
|
|
267
|
-
version = "0.
|
|
313
|
+
version = "0.10.1"
|
|
268
314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
-
checksum = "
|
|
315
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
270
316
|
dependencies = [
|
|
271
317
|
"core-foundation-sys",
|
|
272
318
|
"libc",
|
|
@@ -287,26 +333,11 @@ dependencies = [
|
|
|
287
333
|
"libc",
|
|
288
334
|
]
|
|
289
335
|
|
|
290
|
-
[[package]]
|
|
291
|
-
name = "crossbeam-channel"
|
|
292
|
-
version = "0.5.14"
|
|
293
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
-
checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
|
|
295
|
-
dependencies = [
|
|
296
|
-
"crossbeam-utils",
|
|
297
|
-
]
|
|
298
|
-
|
|
299
|
-
[[package]]
|
|
300
|
-
name = "crossbeam-utils"
|
|
301
|
-
version = "0.8.21"
|
|
302
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
-
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
304
|
-
|
|
305
336
|
[[package]]
|
|
306
337
|
name = "crypto-common"
|
|
307
|
-
version = "0.1.
|
|
338
|
+
version = "0.1.7"
|
|
308
339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
-
checksum = "
|
|
340
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
310
341
|
dependencies = [
|
|
311
342
|
"generic-array",
|
|
312
343
|
"typenum",
|
|
@@ -314,87 +345,45 @@ dependencies = [
|
|
|
314
345
|
|
|
315
346
|
[[package]]
|
|
316
347
|
name = "darling"
|
|
317
|
-
version = "0.
|
|
318
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
-
checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
|
|
320
|
-
dependencies = [
|
|
321
|
-
"darling_core 0.14.4",
|
|
322
|
-
"darling_macro 0.14.4",
|
|
323
|
-
]
|
|
324
|
-
|
|
325
|
-
[[package]]
|
|
326
|
-
name = "darling"
|
|
327
|
-
version = "0.20.11"
|
|
328
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
-
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
330
|
-
dependencies = [
|
|
331
|
-
"darling_core 0.20.11",
|
|
332
|
-
"darling_macro 0.20.11",
|
|
333
|
-
]
|
|
334
|
-
|
|
335
|
-
[[package]]
|
|
336
|
-
name = "darling_core"
|
|
337
|
-
version = "0.14.4"
|
|
348
|
+
version = "0.21.3"
|
|
338
349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
-
checksum = "
|
|
350
|
+
checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
|
|
340
351
|
dependencies = [
|
|
341
|
-
"
|
|
342
|
-
"
|
|
343
|
-
"proc-macro2",
|
|
344
|
-
"quote",
|
|
345
|
-
"syn 1.0.109",
|
|
352
|
+
"darling_core",
|
|
353
|
+
"darling_macro",
|
|
346
354
|
]
|
|
347
355
|
|
|
348
356
|
[[package]]
|
|
349
357
|
name = "darling_core"
|
|
350
|
-
version = "0.
|
|
358
|
+
version = "0.21.3"
|
|
351
359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
-
checksum = "
|
|
360
|
+
checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
|
|
353
361
|
dependencies = [
|
|
354
362
|
"fnv",
|
|
355
363
|
"ident_case",
|
|
356
364
|
"proc-macro2",
|
|
357
365
|
"quote",
|
|
366
|
+
"serde",
|
|
358
367
|
"strsim",
|
|
359
|
-
"syn 2.0.
|
|
360
|
-
]
|
|
361
|
-
|
|
362
|
-
[[package]]
|
|
363
|
-
name = "darling_macro"
|
|
364
|
-
version = "0.14.4"
|
|
365
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
-
checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
|
|
367
|
-
dependencies = [
|
|
368
|
-
"darling_core 0.14.4",
|
|
369
|
-
"quote",
|
|
370
|
-
"syn 1.0.109",
|
|
368
|
+
"syn 2.0.117",
|
|
371
369
|
]
|
|
372
370
|
|
|
373
371
|
[[package]]
|
|
374
372
|
name = "darling_macro"
|
|
375
|
-
version = "0.
|
|
373
|
+
version = "0.21.3"
|
|
376
374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
-
checksum = "
|
|
375
|
+
checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
|
|
378
376
|
dependencies = [
|
|
379
|
-
"darling_core
|
|
377
|
+
"darling_core",
|
|
380
378
|
"quote",
|
|
381
|
-
"syn 2.0.
|
|
379
|
+
"syn 2.0.117",
|
|
382
380
|
]
|
|
383
381
|
|
|
384
382
|
[[package]]
|
|
385
383
|
name = "data-encoding"
|
|
386
|
-
version = "2.
|
|
387
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
|
-
checksum = "575f75dfd25738df5b91b8e43e14d44bda14637a58fae779fd2b064f8bf3e010"
|
|
389
|
-
|
|
390
|
-
[[package]]
|
|
391
|
-
name = "deranged"
|
|
392
|
-
version = "0.3.11"
|
|
384
|
+
version = "2.10.0"
|
|
393
385
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
-
checksum = "
|
|
395
|
-
dependencies = [
|
|
396
|
-
"powerfmt",
|
|
397
|
-
]
|
|
386
|
+
checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
|
|
398
387
|
|
|
399
388
|
[[package]]
|
|
400
389
|
name = "digest"
|
|
@@ -414,60 +403,36 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
414
403
|
dependencies = [
|
|
415
404
|
"proc-macro2",
|
|
416
405
|
"quote",
|
|
417
|
-
"syn 2.0.
|
|
406
|
+
"syn 2.0.117",
|
|
418
407
|
]
|
|
419
408
|
|
|
420
409
|
[[package]]
|
|
421
|
-
name = "
|
|
422
|
-
version = "
|
|
410
|
+
name = "either"
|
|
411
|
+
version = "1.15.0"
|
|
423
412
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
-
checksum = "
|
|
425
|
-
dependencies = [
|
|
426
|
-
"cfg-if",
|
|
427
|
-
]
|
|
413
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
428
414
|
|
|
429
415
|
[[package]]
|
|
430
416
|
name = "equivalent"
|
|
431
|
-
version = "1.0.
|
|
417
|
+
version = "1.0.2"
|
|
432
418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
-
checksum = "
|
|
419
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
434
420
|
|
|
435
421
|
[[package]]
|
|
436
422
|
name = "errno"
|
|
437
|
-
version = "0.3.
|
|
423
|
+
version = "0.3.14"
|
|
438
424
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
-
checksum = "
|
|
425
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
440
426
|
dependencies = [
|
|
441
427
|
"libc",
|
|
442
|
-
"windows-sys 0.
|
|
443
|
-
]
|
|
444
|
-
|
|
445
|
-
[[package]]
|
|
446
|
-
name = "event-listener"
|
|
447
|
-
version = "5.4.0"
|
|
448
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
-
checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
|
|
450
|
-
dependencies = [
|
|
451
|
-
"concurrent-queue",
|
|
452
|
-
"parking",
|
|
453
|
-
"pin-project-lite",
|
|
454
|
-
]
|
|
455
|
-
|
|
456
|
-
[[package]]
|
|
457
|
-
name = "event-listener-strategy"
|
|
458
|
-
version = "0.5.3"
|
|
459
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
-
checksum = "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2"
|
|
461
|
-
dependencies = [
|
|
462
|
-
"event-listener",
|
|
463
|
-
"pin-project-lite",
|
|
428
|
+
"windows-sys 0.61.2",
|
|
464
429
|
]
|
|
465
430
|
|
|
466
431
|
[[package]]
|
|
467
|
-
name = "
|
|
468
|
-
version = "
|
|
432
|
+
name = "find-msvc-tools"
|
|
433
|
+
version = "0.1.9"
|
|
469
434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
-
checksum = "
|
|
435
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
471
436
|
|
|
472
437
|
[[package]]
|
|
473
438
|
name = "fnv"
|
|
@@ -476,115 +441,75 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
476
441
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
477
442
|
|
|
478
443
|
[[package]]
|
|
479
|
-
name = "
|
|
480
|
-
version = "0.
|
|
481
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
-
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
483
|
-
dependencies = [
|
|
484
|
-
"foreign-types-shared",
|
|
485
|
-
]
|
|
486
|
-
|
|
487
|
-
[[package]]
|
|
488
|
-
name = "foreign-types-shared"
|
|
489
|
-
version = "0.1.1"
|
|
444
|
+
name = "foldhash"
|
|
445
|
+
version = "0.1.5"
|
|
490
446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
-
checksum = "
|
|
447
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
492
448
|
|
|
493
449
|
[[package]]
|
|
494
450
|
name = "form_urlencoded"
|
|
495
|
-
version = "1.2.
|
|
451
|
+
version = "1.2.2"
|
|
496
452
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
497
|
-
checksum = "
|
|
453
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
498
454
|
dependencies = [
|
|
499
455
|
"percent-encoding",
|
|
500
456
|
]
|
|
501
457
|
|
|
502
458
|
[[package]]
|
|
503
|
-
name = "
|
|
504
|
-
version = "0.
|
|
459
|
+
name = "funty"
|
|
460
|
+
version = "2.0.0"
|
|
505
461
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
-
checksum = "
|
|
507
|
-
dependencies = [
|
|
508
|
-
"futures-channel",
|
|
509
|
-
"futures-core",
|
|
510
|
-
"futures-executor",
|
|
511
|
-
"futures-io",
|
|
512
|
-
"futures-sink",
|
|
513
|
-
"futures-task",
|
|
514
|
-
"futures-util",
|
|
515
|
-
]
|
|
462
|
+
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
516
463
|
|
|
517
464
|
[[package]]
|
|
518
465
|
name = "futures-channel"
|
|
519
|
-
version = "0.3.
|
|
466
|
+
version = "0.3.32"
|
|
520
467
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
-
checksum = "
|
|
468
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
522
469
|
dependencies = [
|
|
523
470
|
"futures-core",
|
|
524
|
-
"futures-sink",
|
|
525
471
|
]
|
|
526
472
|
|
|
527
473
|
[[package]]
|
|
528
474
|
name = "futures-core"
|
|
529
|
-
version = "0.3.
|
|
530
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
-
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
532
|
-
|
|
533
|
-
[[package]]
|
|
534
|
-
name = "futures-executor"
|
|
535
|
-
version = "0.3.31"
|
|
536
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
-
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
538
|
-
dependencies = [
|
|
539
|
-
"futures-core",
|
|
540
|
-
"futures-task",
|
|
541
|
-
"futures-util",
|
|
542
|
-
]
|
|
543
|
-
|
|
544
|
-
[[package]]
|
|
545
|
-
name = "futures-io"
|
|
546
|
-
version = "0.3.31"
|
|
475
|
+
version = "0.3.32"
|
|
547
476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
-
checksum = "
|
|
477
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
549
478
|
|
|
550
479
|
[[package]]
|
|
551
480
|
name = "futures-macro"
|
|
552
|
-
version = "0.3.
|
|
481
|
+
version = "0.3.32"
|
|
553
482
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
-
checksum = "
|
|
483
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
555
484
|
dependencies = [
|
|
556
485
|
"proc-macro2",
|
|
557
486
|
"quote",
|
|
558
|
-
"syn 2.0.
|
|
487
|
+
"syn 2.0.117",
|
|
559
488
|
]
|
|
560
489
|
|
|
561
490
|
[[package]]
|
|
562
491
|
name = "futures-sink"
|
|
563
|
-
version = "0.3.
|
|
492
|
+
version = "0.3.32"
|
|
564
493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
-
checksum = "
|
|
494
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
566
495
|
|
|
567
496
|
[[package]]
|
|
568
497
|
name = "futures-task"
|
|
569
|
-
version = "0.3.
|
|
498
|
+
version = "0.3.32"
|
|
570
499
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
-
checksum = "
|
|
500
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
572
501
|
|
|
573
502
|
[[package]]
|
|
574
503
|
name = "futures-util"
|
|
575
|
-
version = "0.3.
|
|
504
|
+
version = "0.3.32"
|
|
576
505
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
|
-
checksum = "
|
|
506
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
578
507
|
dependencies = [
|
|
579
|
-
"futures-channel",
|
|
580
508
|
"futures-core",
|
|
581
|
-
"futures-io",
|
|
582
509
|
"futures-macro",
|
|
583
510
|
"futures-sink",
|
|
584
511
|
"futures-task",
|
|
585
|
-
"memchr",
|
|
586
512
|
"pin-project-lite",
|
|
587
|
-
"pin-utils",
|
|
588
513
|
"slab",
|
|
589
514
|
]
|
|
590
515
|
|
|
@@ -600,57 +525,67 @@ dependencies = [
|
|
|
600
525
|
|
|
601
526
|
[[package]]
|
|
602
527
|
name = "getrandom"
|
|
603
|
-
version = "0.2.
|
|
528
|
+
version = "0.2.17"
|
|
604
529
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
-
checksum = "
|
|
530
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
606
531
|
dependencies = [
|
|
607
532
|
"cfg-if",
|
|
533
|
+
"js-sys",
|
|
608
534
|
"libc",
|
|
609
|
-
"wasi
|
|
535
|
+
"wasi",
|
|
536
|
+
"wasm-bindgen",
|
|
610
537
|
]
|
|
611
538
|
|
|
612
539
|
[[package]]
|
|
613
540
|
name = "getrandom"
|
|
614
|
-
version = "0.3.
|
|
541
|
+
version = "0.3.4"
|
|
615
542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
-
checksum = "
|
|
543
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
617
544
|
dependencies = [
|
|
618
545
|
"cfg-if",
|
|
546
|
+
"js-sys",
|
|
619
547
|
"libc",
|
|
620
|
-
"
|
|
621
|
-
"
|
|
548
|
+
"r-efi",
|
|
549
|
+
"wasip2",
|
|
550
|
+
"wasm-bindgen",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "getrandom"
|
|
555
|
+
version = "0.4.1"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
|
|
558
|
+
dependencies = [
|
|
559
|
+
"cfg-if",
|
|
560
|
+
"libc",
|
|
561
|
+
"r-efi",
|
|
562
|
+
"wasip2",
|
|
563
|
+
"wasip3",
|
|
622
564
|
]
|
|
623
565
|
|
|
624
566
|
[[package]]
|
|
625
|
-
name = "
|
|
626
|
-
version = "0.
|
|
567
|
+
name = "hashbrown"
|
|
568
|
+
version = "0.12.3"
|
|
627
569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
-
checksum = "
|
|
570
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"ahash",
|
|
573
|
+
]
|
|
629
574
|
|
|
630
575
|
[[package]]
|
|
631
|
-
name = "
|
|
632
|
-
version = "0.
|
|
576
|
+
name = "hashbrown"
|
|
577
|
+
version = "0.15.5"
|
|
633
578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
-
checksum = "
|
|
579
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
635
580
|
dependencies = [
|
|
636
|
-
"
|
|
637
|
-
"bytes",
|
|
638
|
-
"fnv",
|
|
639
|
-
"futures-core",
|
|
640
|
-
"futures-sink",
|
|
641
|
-
"http",
|
|
642
|
-
"indexmap",
|
|
643
|
-
"slab",
|
|
644
|
-
"tokio",
|
|
645
|
-
"tokio-util",
|
|
646
|
-
"tracing",
|
|
581
|
+
"foldhash",
|
|
647
582
|
]
|
|
648
583
|
|
|
649
584
|
[[package]]
|
|
650
585
|
name = "hashbrown"
|
|
651
|
-
version = "0.
|
|
586
|
+
version = "0.16.1"
|
|
652
587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
-
checksum = "
|
|
588
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
654
589
|
|
|
655
590
|
[[package]]
|
|
656
591
|
name = "heck"
|
|
@@ -660,12 +595,11 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
|
660
595
|
|
|
661
596
|
[[package]]
|
|
662
597
|
name = "http"
|
|
663
|
-
version = "1.
|
|
598
|
+
version = "1.4.0"
|
|
664
599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
-
checksum = "
|
|
600
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
666
601
|
dependencies = [
|
|
667
602
|
"bytes",
|
|
668
|
-
"fnv",
|
|
669
603
|
"itoa",
|
|
670
604
|
]
|
|
671
605
|
|
|
@@ -681,12 +615,12 @@ dependencies = [
|
|
|
681
615
|
|
|
682
616
|
[[package]]
|
|
683
617
|
name = "http-body-util"
|
|
684
|
-
version = "0.1.
|
|
618
|
+
version = "0.1.3"
|
|
685
619
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
-
checksum = "
|
|
620
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
687
621
|
dependencies = [
|
|
688
622
|
"bytes",
|
|
689
|
-
"futures-
|
|
623
|
+
"futures-core",
|
|
690
624
|
"http",
|
|
691
625
|
"http-body",
|
|
692
626
|
"pin-project-lite",
|
|
@@ -694,25 +628,26 @@ dependencies = [
|
|
|
694
628
|
|
|
695
629
|
[[package]]
|
|
696
630
|
name = "httparse"
|
|
697
|
-
version = "1.10.
|
|
631
|
+
version = "1.10.1"
|
|
698
632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
-
checksum = "
|
|
633
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
700
634
|
|
|
701
635
|
[[package]]
|
|
702
636
|
name = "hyper"
|
|
703
|
-
version = "1.
|
|
637
|
+
version = "1.8.1"
|
|
704
638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
-
checksum = "
|
|
639
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
706
640
|
dependencies = [
|
|
641
|
+
"atomic-waker",
|
|
707
642
|
"bytes",
|
|
708
643
|
"futures-channel",
|
|
709
|
-
"futures-
|
|
710
|
-
"h2",
|
|
644
|
+
"futures-core",
|
|
711
645
|
"http",
|
|
712
646
|
"http-body",
|
|
713
647
|
"httparse",
|
|
714
648
|
"itoa",
|
|
715
649
|
"pin-project-lite",
|
|
650
|
+
"pin-utils",
|
|
716
651
|
"smallvec",
|
|
717
652
|
"tokio",
|
|
718
653
|
"want",
|
|
@@ -720,49 +655,37 @@ dependencies = [
|
|
|
720
655
|
|
|
721
656
|
[[package]]
|
|
722
657
|
name = "hyper-rustls"
|
|
723
|
-
version = "0.27.
|
|
658
|
+
version = "0.27.7"
|
|
724
659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
-
checksum = "
|
|
660
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
726
661
|
dependencies = [
|
|
727
|
-
"futures-util",
|
|
728
662
|
"http",
|
|
729
663
|
"hyper",
|
|
730
664
|
"hyper-util",
|
|
731
|
-
"rustls",
|
|
665
|
+
"rustls 0.23.37",
|
|
732
666
|
"rustls-pki-types",
|
|
733
667
|
"tokio",
|
|
734
|
-
"tokio-rustls",
|
|
735
|
-
"tower-service",
|
|
736
|
-
]
|
|
737
|
-
|
|
738
|
-
[[package]]
|
|
739
|
-
name = "hyper-tls"
|
|
740
|
-
version = "0.6.0"
|
|
741
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
-
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
|
|
743
|
-
dependencies = [
|
|
744
|
-
"bytes",
|
|
745
|
-
"http-body-util",
|
|
746
|
-
"hyper",
|
|
747
|
-
"hyper-util",
|
|
748
|
-
"native-tls",
|
|
749
|
-
"tokio",
|
|
750
|
-
"tokio-native-tls",
|
|
668
|
+
"tokio-rustls 0.26.4",
|
|
751
669
|
"tower-service",
|
|
670
|
+
"webpki-roots 1.0.6",
|
|
752
671
|
]
|
|
753
672
|
|
|
754
673
|
[[package]]
|
|
755
674
|
name = "hyper-util"
|
|
756
|
-
version = "0.1.
|
|
675
|
+
version = "0.1.20"
|
|
757
676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
758
|
-
checksum = "
|
|
677
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
759
678
|
dependencies = [
|
|
679
|
+
"base64",
|
|
760
680
|
"bytes",
|
|
761
681
|
"futures-channel",
|
|
762
682
|
"futures-util",
|
|
763
683
|
"http",
|
|
764
684
|
"http-body",
|
|
765
685
|
"hyper",
|
|
686
|
+
"ipnet",
|
|
687
|
+
"libc",
|
|
688
|
+
"percent-encoding",
|
|
766
689
|
"pin-project-lite",
|
|
767
690
|
"socket2",
|
|
768
691
|
"tokio",
|
|
@@ -772,14 +695,15 @@ dependencies = [
|
|
|
772
695
|
|
|
773
696
|
[[package]]
|
|
774
697
|
name = "iana-time-zone"
|
|
775
|
-
version = "0.1.
|
|
698
|
+
version = "0.1.65"
|
|
776
699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
-
checksum = "
|
|
700
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
778
701
|
dependencies = [
|
|
779
702
|
"android_system_properties",
|
|
780
703
|
"core-foundation-sys",
|
|
781
704
|
"iana-time-zone-haiku",
|
|
782
705
|
"js-sys",
|
|
706
|
+
"log",
|
|
783
707
|
"wasm-bindgen",
|
|
784
708
|
"windows-core",
|
|
785
709
|
]
|
|
@@ -795,21 +719,22 @@ dependencies = [
|
|
|
795
719
|
|
|
796
720
|
[[package]]
|
|
797
721
|
name = "icu_collections"
|
|
798
|
-
version = "1.
|
|
722
|
+
version = "2.1.1"
|
|
799
723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
-
checksum = "
|
|
724
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
801
725
|
dependencies = [
|
|
802
726
|
"displaydoc",
|
|
727
|
+
"potential_utf",
|
|
803
728
|
"yoke",
|
|
804
729
|
"zerofrom",
|
|
805
730
|
"zerovec",
|
|
806
731
|
]
|
|
807
732
|
|
|
808
733
|
[[package]]
|
|
809
|
-
name = "
|
|
810
|
-
version = "1.
|
|
734
|
+
name = "icu_locale_core"
|
|
735
|
+
version = "2.1.1"
|
|
811
736
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
-
checksum = "
|
|
737
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
813
738
|
dependencies = [
|
|
814
739
|
"displaydoc",
|
|
815
740
|
"litemap",
|
|
@@ -818,98 +743,66 @@ dependencies = [
|
|
|
818
743
|
"zerovec",
|
|
819
744
|
]
|
|
820
745
|
|
|
821
|
-
[[package]]
|
|
822
|
-
name = "icu_locid_transform"
|
|
823
|
-
version = "1.5.0"
|
|
824
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
-
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
|
826
|
-
dependencies = [
|
|
827
|
-
"displaydoc",
|
|
828
|
-
"icu_locid",
|
|
829
|
-
"icu_locid_transform_data",
|
|
830
|
-
"icu_provider",
|
|
831
|
-
"tinystr",
|
|
832
|
-
"zerovec",
|
|
833
|
-
]
|
|
834
|
-
|
|
835
|
-
[[package]]
|
|
836
|
-
name = "icu_locid_transform_data"
|
|
837
|
-
version = "1.5.0"
|
|
838
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
-
checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
|
|
840
|
-
|
|
841
746
|
[[package]]
|
|
842
747
|
name = "icu_normalizer"
|
|
843
|
-
version = "1.
|
|
748
|
+
version = "2.1.1"
|
|
844
749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
-
checksum = "
|
|
750
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
846
751
|
dependencies = [
|
|
847
|
-
"displaydoc",
|
|
848
752
|
"icu_collections",
|
|
849
753
|
"icu_normalizer_data",
|
|
850
754
|
"icu_properties",
|
|
851
755
|
"icu_provider",
|
|
852
756
|
"smallvec",
|
|
853
|
-
"utf16_iter",
|
|
854
|
-
"utf8_iter",
|
|
855
|
-
"write16",
|
|
856
757
|
"zerovec",
|
|
857
758
|
]
|
|
858
759
|
|
|
859
760
|
[[package]]
|
|
860
761
|
name = "icu_normalizer_data"
|
|
861
|
-
version = "1.
|
|
762
|
+
version = "2.1.1"
|
|
862
763
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
|
-
checksum = "
|
|
764
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
864
765
|
|
|
865
766
|
[[package]]
|
|
866
767
|
name = "icu_properties"
|
|
867
|
-
version = "1.
|
|
768
|
+
version = "2.1.2"
|
|
868
769
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
-
checksum = "
|
|
770
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
870
771
|
dependencies = [
|
|
871
|
-
"displaydoc",
|
|
872
772
|
"icu_collections",
|
|
873
|
-
"
|
|
773
|
+
"icu_locale_core",
|
|
874
774
|
"icu_properties_data",
|
|
875
775
|
"icu_provider",
|
|
876
|
-
"
|
|
776
|
+
"zerotrie",
|
|
877
777
|
"zerovec",
|
|
878
778
|
]
|
|
879
779
|
|
|
880
780
|
[[package]]
|
|
881
781
|
name = "icu_properties_data"
|
|
882
|
-
version = "1.
|
|
782
|
+
version = "2.1.2"
|
|
883
783
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
884
|
-
checksum = "
|
|
784
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
885
785
|
|
|
886
786
|
[[package]]
|
|
887
787
|
name = "icu_provider"
|
|
888
|
-
version = "1.
|
|
788
|
+
version = "2.1.1"
|
|
889
789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
890
|
-
checksum = "
|
|
790
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
891
791
|
dependencies = [
|
|
892
792
|
"displaydoc",
|
|
893
|
-
"
|
|
894
|
-
"icu_provider_macros",
|
|
895
|
-
"stable_deref_trait",
|
|
896
|
-
"tinystr",
|
|
793
|
+
"icu_locale_core",
|
|
897
794
|
"writeable",
|
|
898
795
|
"yoke",
|
|
899
796
|
"zerofrom",
|
|
797
|
+
"zerotrie",
|
|
900
798
|
"zerovec",
|
|
901
799
|
]
|
|
902
800
|
|
|
903
801
|
[[package]]
|
|
904
|
-
name = "
|
|
905
|
-
version = "
|
|
802
|
+
name = "id-arena"
|
|
803
|
+
version = "2.3.0"
|
|
906
804
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
-
checksum = "
|
|
908
|
-
dependencies = [
|
|
909
|
-
"proc-macro2",
|
|
910
|
-
"quote",
|
|
911
|
-
"syn 2.0.101",
|
|
912
|
-
]
|
|
805
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
913
806
|
|
|
914
807
|
[[package]]
|
|
915
808
|
name = "ident_case"
|
|
@@ -919,9 +812,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
|
919
812
|
|
|
920
813
|
[[package]]
|
|
921
814
|
name = "idna"
|
|
922
|
-
version = "1.0
|
|
815
|
+
version = "1.1.0"
|
|
923
816
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
-
checksum = "
|
|
817
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
925
818
|
dependencies = [
|
|
926
819
|
"idna_adapter",
|
|
927
820
|
"smallvec",
|
|
@@ -930,9 +823,9 @@ dependencies = [
|
|
|
930
823
|
|
|
931
824
|
[[package]]
|
|
932
825
|
name = "idna_adapter"
|
|
933
|
-
version = "1.2.
|
|
826
|
+
version = "1.2.1"
|
|
934
827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
-
checksum = "
|
|
828
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
936
829
|
dependencies = [
|
|
937
830
|
"icu_normalizer",
|
|
938
831
|
"icu_properties",
|
|
@@ -940,19 +833,24 @@ dependencies = [
|
|
|
940
833
|
|
|
941
834
|
[[package]]
|
|
942
835
|
name = "indexmap"
|
|
943
|
-
version = "2.
|
|
836
|
+
version = "2.13.0"
|
|
944
837
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
945
|
-
checksum = "
|
|
838
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
946
839
|
dependencies = [
|
|
947
840
|
"equivalent",
|
|
948
|
-
"hashbrown",
|
|
841
|
+
"hashbrown 0.16.1",
|
|
842
|
+
"serde",
|
|
843
|
+
"serde_core",
|
|
949
844
|
]
|
|
950
845
|
|
|
951
846
|
[[package]]
|
|
952
|
-
name = "
|
|
953
|
-
version = "
|
|
847
|
+
name = "inventory"
|
|
848
|
+
version = "0.3.22"
|
|
954
849
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
-
checksum = "
|
|
850
|
+
checksum = "009ae045c87e7082cb72dab0ccd01ae075dd00141ddc108f43a0ea150a9e7227"
|
|
851
|
+
dependencies = [
|
|
852
|
+
"rustversion",
|
|
853
|
+
]
|
|
956
854
|
|
|
957
855
|
[[package]]
|
|
958
856
|
name = "ipnet"
|
|
@@ -960,22 +858,51 @@ version = "2.11.0"
|
|
|
960
858
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
859
|
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
962
860
|
|
|
861
|
+
[[package]]
|
|
862
|
+
name = "iri-string"
|
|
863
|
+
version = "0.7.10"
|
|
864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
+
checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
|
|
866
|
+
dependencies = [
|
|
867
|
+
"memchr",
|
|
868
|
+
"serde",
|
|
869
|
+
]
|
|
870
|
+
|
|
871
|
+
[[package]]
|
|
872
|
+
name = "itertools"
|
|
873
|
+
version = "0.13.0"
|
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
876
|
+
dependencies = [
|
|
877
|
+
"either",
|
|
878
|
+
]
|
|
879
|
+
|
|
963
880
|
[[package]]
|
|
964
881
|
name = "itoa"
|
|
965
|
-
version = "1.0.
|
|
882
|
+
version = "1.0.17"
|
|
966
883
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
967
|
-
checksum = "
|
|
884
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
968
885
|
|
|
969
886
|
[[package]]
|
|
970
887
|
name = "js-sys"
|
|
971
|
-
version = "0.3.
|
|
888
|
+
version = "0.3.90"
|
|
972
889
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
-
checksum = "
|
|
890
|
+
checksum = "14dc6f6450b3f6d4ed5b16327f38fed626d375a886159ca555bd7822c0c3a5a6"
|
|
974
891
|
dependencies = [
|
|
975
892
|
"once_cell",
|
|
976
893
|
"wasm-bindgen",
|
|
977
894
|
]
|
|
978
895
|
|
|
896
|
+
[[package]]
|
|
897
|
+
name = "kanal"
|
|
898
|
+
version = "0.1.1"
|
|
899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
900
|
+
checksum = "9e3953adf0cd667798b396c2fa13552d6d9b3269d7dd1154c4c416442d1ff574"
|
|
901
|
+
dependencies = [
|
|
902
|
+
"futures-core",
|
|
903
|
+
"lock_api",
|
|
904
|
+
]
|
|
905
|
+
|
|
979
906
|
[[package]]
|
|
980
907
|
name = "lazy_static"
|
|
981
908
|
version = "1.5.0"
|
|
@@ -983,207 +910,170 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
983
910
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
984
911
|
|
|
985
912
|
[[package]]
|
|
986
|
-
name = "
|
|
987
|
-
version = "0.
|
|
913
|
+
name = "leb128fmt"
|
|
914
|
+
version = "0.1.0"
|
|
988
915
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
-
checksum = "
|
|
916
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
990
917
|
|
|
991
918
|
[[package]]
|
|
992
|
-
name = "
|
|
993
|
-
version = "0.
|
|
919
|
+
name = "libc"
|
|
920
|
+
version = "0.2.182"
|
|
994
921
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
995
|
-
checksum = "
|
|
922
|
+
checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
|
|
996
923
|
|
|
997
924
|
[[package]]
|
|
998
925
|
name = "litemap"
|
|
999
|
-
version = "0.
|
|
926
|
+
version = "0.8.1"
|
|
1000
927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1001
|
-
checksum = "
|
|
928
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
1002
929
|
|
|
1003
930
|
[[package]]
|
|
1004
931
|
name = "lock_api"
|
|
1005
|
-
version = "0.4.
|
|
932
|
+
version = "0.4.14"
|
|
1006
933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
-
checksum = "
|
|
934
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1008
935
|
dependencies = [
|
|
1009
|
-
"autocfg",
|
|
1010
936
|
"scopeguard",
|
|
1011
937
|
]
|
|
1012
938
|
|
|
1013
939
|
[[package]]
|
|
1014
940
|
name = "log"
|
|
1015
|
-
version = "0.4.
|
|
941
|
+
version = "0.4.29"
|
|
1016
942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
-
checksum = "
|
|
943
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1018
944
|
|
|
1019
945
|
[[package]]
|
|
1020
|
-
name = "
|
|
1021
|
-
version = "0.1.
|
|
946
|
+
name = "lru-slab"
|
|
947
|
+
version = "0.1.2"
|
|
1022
948
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1023
|
-
checksum = "
|
|
1024
|
-
dependencies = [
|
|
1025
|
-
"regex-automata 0.1.10",
|
|
1026
|
-
]
|
|
949
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1027
950
|
|
|
1028
951
|
[[package]]
|
|
1029
|
-
name = "
|
|
1030
|
-
version = "
|
|
952
|
+
name = "maplit"
|
|
953
|
+
version = "1.0.2"
|
|
1031
954
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1032
|
-
checksum = "
|
|
955
|
+
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
|
|
1033
956
|
|
|
1034
957
|
[[package]]
|
|
1035
|
-
name = "
|
|
1036
|
-
version = "0.
|
|
958
|
+
name = "matchers"
|
|
959
|
+
version = "0.2.0"
|
|
1037
960
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1038
|
-
checksum = "
|
|
961
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
1039
962
|
dependencies = [
|
|
1040
|
-
"
|
|
963
|
+
"regex-automata",
|
|
1041
964
|
]
|
|
1042
965
|
|
|
1043
966
|
[[package]]
|
|
1044
|
-
name = "
|
|
1045
|
-
version = "0.3.
|
|
967
|
+
name = "matrixmultiply"
|
|
968
|
+
version = "0.3.10"
|
|
1046
969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1047
|
-
checksum = "
|
|
970
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
971
|
+
dependencies = [
|
|
972
|
+
"autocfg",
|
|
973
|
+
"rawpointer",
|
|
974
|
+
]
|
|
1048
975
|
|
|
1049
976
|
[[package]]
|
|
1050
|
-
name = "
|
|
1051
|
-
version = "
|
|
977
|
+
name = "memchr"
|
|
978
|
+
version = "2.8.0"
|
|
1052
979
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1053
|
-
checksum = "
|
|
1054
|
-
dependencies = [
|
|
1055
|
-
"adler2",
|
|
1056
|
-
]
|
|
980
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
1057
981
|
|
|
1058
982
|
[[package]]
|
|
1059
983
|
name = "mio"
|
|
1060
|
-
version = "1.
|
|
984
|
+
version = "1.1.1"
|
|
1061
985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
-
checksum = "
|
|
986
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
1063
987
|
dependencies = [
|
|
1064
988
|
"libc",
|
|
1065
|
-
"wasi
|
|
1066
|
-
"windows-sys 0.
|
|
989
|
+
"wasi",
|
|
990
|
+
"windows-sys 0.61.2",
|
|
1067
991
|
]
|
|
1068
992
|
|
|
1069
993
|
[[package]]
|
|
1070
|
-
name = "
|
|
1071
|
-
version = "0.2
|
|
994
|
+
name = "ndarray"
|
|
995
|
+
version = "0.17.2"
|
|
1072
996
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1073
|
-
checksum = "
|
|
997
|
+
checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
|
|
1074
998
|
dependencies = [
|
|
1075
|
-
"
|
|
1076
|
-
"
|
|
1077
|
-
"
|
|
1078
|
-
"
|
|
1079
|
-
"
|
|
1080
|
-
"
|
|
1081
|
-
"
|
|
1082
|
-
"security-framework-sys",
|
|
1083
|
-
"tempfile",
|
|
999
|
+
"matrixmultiply",
|
|
1000
|
+
"num-complex",
|
|
1001
|
+
"num-integer",
|
|
1002
|
+
"num-traits",
|
|
1003
|
+
"portable-atomic",
|
|
1004
|
+
"portable-atomic-util",
|
|
1005
|
+
"rawpointer",
|
|
1084
1006
|
]
|
|
1085
1007
|
|
|
1086
1008
|
[[package]]
|
|
1087
1009
|
name = "nu-ansi-term"
|
|
1088
|
-
version = "0.
|
|
1010
|
+
version = "0.50.3"
|
|
1089
1011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
-
checksum = "
|
|
1012
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
1091
1013
|
dependencies = [
|
|
1092
|
-
"
|
|
1093
|
-
"winapi",
|
|
1014
|
+
"windows-sys 0.61.2",
|
|
1094
1015
|
]
|
|
1095
1016
|
|
|
1096
1017
|
[[package]]
|
|
1097
|
-
name = "num-
|
|
1098
|
-
version = "0.
|
|
1018
|
+
name = "num-complex"
|
|
1019
|
+
version = "0.4.6"
|
|
1099
1020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1100
|
-
checksum = "
|
|
1101
|
-
|
|
1102
|
-
[[package]]
|
|
1103
|
-
name = "num-traits"
|
|
1104
|
-
version = "0.2.19"
|
|
1105
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
-
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1021
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
1107
1022
|
dependencies = [
|
|
1108
|
-
"
|
|
1109
|
-
]
|
|
1110
|
-
|
|
1111
|
-
[[package]]
|
|
1112
|
-
name = "object"
|
|
1113
|
-
version = "0.36.7"
|
|
1114
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1115
|
-
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
1116
|
-
dependencies = [
|
|
1117
|
-
"memchr",
|
|
1023
|
+
"num-traits",
|
|
1118
1024
|
]
|
|
1119
1025
|
|
|
1120
1026
|
[[package]]
|
|
1121
|
-
name = "
|
|
1122
|
-
version = "1.
|
|
1123
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
-
checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e"
|
|
1125
|
-
|
|
1126
|
-
[[package]]
|
|
1127
|
-
name = "openssl"
|
|
1128
|
-
version = "0.10.70"
|
|
1027
|
+
name = "num-integer"
|
|
1028
|
+
version = "0.1.46"
|
|
1129
1029
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1130
|
-
checksum = "
|
|
1030
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1131
1031
|
dependencies = [
|
|
1132
|
-
"
|
|
1133
|
-
"cfg-if",
|
|
1134
|
-
"foreign-types",
|
|
1135
|
-
"libc",
|
|
1136
|
-
"once_cell",
|
|
1137
|
-
"openssl-macros",
|
|
1138
|
-
"openssl-sys",
|
|
1032
|
+
"num-traits",
|
|
1139
1033
|
]
|
|
1140
1034
|
|
|
1141
1035
|
[[package]]
|
|
1142
|
-
name = "
|
|
1143
|
-
version = "0.
|
|
1036
|
+
name = "num-traits"
|
|
1037
|
+
version = "0.2.19"
|
|
1144
1038
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
|
-
checksum = "
|
|
1039
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1146
1040
|
dependencies = [
|
|
1147
|
-
"
|
|
1148
|
-
"quote",
|
|
1149
|
-
"syn 2.0.101",
|
|
1041
|
+
"autocfg",
|
|
1150
1042
|
]
|
|
1151
1043
|
|
|
1152
1044
|
[[package]]
|
|
1153
|
-
name = "
|
|
1154
|
-
version = "0.
|
|
1045
|
+
name = "numpy"
|
|
1046
|
+
version = "0.28.0"
|
|
1155
1047
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
-
checksum = "
|
|
1157
|
-
|
|
1158
|
-
[[package]]
|
|
1159
|
-
name = "openssl-sys"
|
|
1160
|
-
version = "0.9.105"
|
|
1161
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1162
|
-
checksum = "8b22d5b84be05a8d6947c7cb71f7c849aa0f112acd4bf51c2a7c1c988ac0a9dc"
|
|
1048
|
+
checksum = "778da78c64ddc928ebf5ad9df5edf0789410ff3bdbf3619aed51cd789a6af1e2"
|
|
1163
1049
|
dependencies = [
|
|
1164
|
-
"cc",
|
|
1165
1050
|
"libc",
|
|
1166
|
-
"
|
|
1167
|
-
"
|
|
1051
|
+
"ndarray",
|
|
1052
|
+
"num-complex",
|
|
1053
|
+
"num-integer",
|
|
1054
|
+
"num-traits",
|
|
1055
|
+
"pyo3",
|
|
1056
|
+
"pyo3-build-config",
|
|
1057
|
+
"rustc-hash",
|
|
1168
1058
|
]
|
|
1169
1059
|
|
|
1170
1060
|
[[package]]
|
|
1171
|
-
name = "
|
|
1172
|
-
version = "
|
|
1061
|
+
name = "once_cell"
|
|
1062
|
+
version = "1.21.3"
|
|
1173
1063
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1174
|
-
checksum = "
|
|
1064
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1175
1065
|
|
|
1176
1066
|
[[package]]
|
|
1177
|
-
name = "
|
|
1178
|
-
version = "
|
|
1067
|
+
name = "openssl-probe"
|
|
1068
|
+
version = "0.2.1"
|
|
1179
1069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1180
|
-
checksum = "
|
|
1070
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
1181
1071
|
|
|
1182
1072
|
[[package]]
|
|
1183
1073
|
name = "parking_lot"
|
|
1184
|
-
version = "0.12.
|
|
1074
|
+
version = "0.12.5"
|
|
1185
1075
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
-
checksum = "
|
|
1076
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1187
1077
|
dependencies = [
|
|
1188
1078
|
"lock_api",
|
|
1189
1079
|
"parking_lot_core",
|
|
@@ -1191,22 +1081,22 @@ dependencies = [
|
|
|
1191
1081
|
|
|
1192
1082
|
[[package]]
|
|
1193
1083
|
name = "parking_lot_core"
|
|
1194
|
-
version = "0.9.
|
|
1084
|
+
version = "0.9.12"
|
|
1195
1085
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1196
|
-
checksum = "
|
|
1086
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1197
1087
|
dependencies = [
|
|
1198
1088
|
"cfg-if",
|
|
1199
1089
|
"libc",
|
|
1200
1090
|
"redox_syscall",
|
|
1201
1091
|
"smallvec",
|
|
1202
|
-
"windows-
|
|
1092
|
+
"windows-link",
|
|
1203
1093
|
]
|
|
1204
1094
|
|
|
1205
1095
|
[[package]]
|
|
1206
1096
|
name = "percent-encoding"
|
|
1207
|
-
version = "2.3.
|
|
1097
|
+
version = "2.3.2"
|
|
1208
1098
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
-
checksum = "
|
|
1099
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1210
1100
|
|
|
1211
1101
|
[[package]]
|
|
1212
1102
|
name = "php_serde"
|
|
@@ -1232,67 +1122,108 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1232
1122
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1233
1123
|
|
|
1234
1124
|
[[package]]
|
|
1235
|
-
name = "
|
|
1236
|
-
version = "
|
|
1125
|
+
name = "portable-atomic"
|
|
1126
|
+
version = "1.13.1"
|
|
1237
1127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
|
-
checksum = "
|
|
1128
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
1239
1129
|
|
|
1240
1130
|
[[package]]
|
|
1241
|
-
name = "portable-atomic"
|
|
1242
|
-
version = "
|
|
1131
|
+
name = "portable-atomic-util"
|
|
1132
|
+
version = "0.2.5"
|
|
1243
1133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1244
|
-
checksum = "
|
|
1134
|
+
checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5"
|
|
1135
|
+
dependencies = [
|
|
1136
|
+
"portable-atomic",
|
|
1137
|
+
]
|
|
1245
1138
|
|
|
1246
1139
|
[[package]]
|
|
1247
|
-
name = "
|
|
1248
|
-
version = "0.
|
|
1140
|
+
name = "potential_utf"
|
|
1141
|
+
version = "0.1.4"
|
|
1249
1142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1250
|
-
checksum = "
|
|
1143
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
1144
|
+
dependencies = [
|
|
1145
|
+
"zerovec",
|
|
1146
|
+
]
|
|
1251
1147
|
|
|
1252
1148
|
[[package]]
|
|
1253
1149
|
name = "ppv-lite86"
|
|
1254
|
-
version = "0.2.
|
|
1150
|
+
version = "0.2.21"
|
|
1255
1151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1256
|
-
checksum = "
|
|
1152
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1257
1153
|
dependencies = [
|
|
1258
|
-
"zerocopy
|
|
1154
|
+
"zerocopy",
|
|
1155
|
+
]
|
|
1156
|
+
|
|
1157
|
+
[[package]]
|
|
1158
|
+
name = "prettyplease"
|
|
1159
|
+
version = "0.2.37"
|
|
1160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1162
|
+
dependencies = [
|
|
1163
|
+
"proc-macro2",
|
|
1164
|
+
"syn 2.0.117",
|
|
1165
|
+
]
|
|
1166
|
+
|
|
1167
|
+
[[package]]
|
|
1168
|
+
name = "proc-macro-crate"
|
|
1169
|
+
version = "3.4.0"
|
|
1170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1171
|
+
checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
|
|
1172
|
+
dependencies = [
|
|
1173
|
+
"toml_edit 0.23.10+spec-1.0.0",
|
|
1259
1174
|
]
|
|
1260
1175
|
|
|
1261
1176
|
[[package]]
|
|
1262
1177
|
name = "proc-macro2"
|
|
1263
|
-
version = "1.0.
|
|
1178
|
+
version = "1.0.106"
|
|
1264
1179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1265
|
-
checksum = "
|
|
1180
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1266
1181
|
dependencies = [
|
|
1267
1182
|
"unicode-ident",
|
|
1268
1183
|
]
|
|
1269
1184
|
|
|
1185
|
+
[[package]]
|
|
1186
|
+
name = "ptr_meta"
|
|
1187
|
+
version = "0.1.4"
|
|
1188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
+
checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
|
|
1190
|
+
dependencies = [
|
|
1191
|
+
"ptr_meta_derive",
|
|
1192
|
+
]
|
|
1193
|
+
|
|
1194
|
+
[[package]]
|
|
1195
|
+
name = "ptr_meta_derive"
|
|
1196
|
+
version = "0.1.4"
|
|
1197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1198
|
+
checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
|
|
1199
|
+
dependencies = [
|
|
1200
|
+
"proc-macro2",
|
|
1201
|
+
"quote",
|
|
1202
|
+
"syn 1.0.109",
|
|
1203
|
+
]
|
|
1204
|
+
|
|
1270
1205
|
[[package]]
|
|
1271
1206
|
name = "pyo3"
|
|
1272
|
-
version = "0.
|
|
1207
|
+
version = "0.28.2"
|
|
1273
1208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
-
checksum = "
|
|
1209
|
+
checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
|
|
1275
1210
|
dependencies = [
|
|
1276
|
-
"cfg-if",
|
|
1277
|
-
"chrono",
|
|
1278
|
-
"indoc",
|
|
1279
1211
|
"libc",
|
|
1280
|
-
"memoffset",
|
|
1281
1212
|
"once_cell",
|
|
1282
1213
|
"portable-atomic",
|
|
1283
1214
|
"pyo3-build-config",
|
|
1284
1215
|
"pyo3-ffi",
|
|
1285
1216
|
"pyo3-macros",
|
|
1286
|
-
"unindent",
|
|
1287
1217
|
]
|
|
1288
1218
|
|
|
1289
1219
|
[[package]]
|
|
1290
1220
|
name = "pyo3-async-runtimes"
|
|
1291
|
-
version = "0.
|
|
1221
|
+
version = "0.28.0"
|
|
1292
1222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1293
|
-
checksum = "
|
|
1223
|
+
checksum = "9e7364a95bf00e8377bbf9b0f09d7ff9715a29d8fcf93b47d1a967363b973178"
|
|
1294
1224
|
dependencies = [
|
|
1295
|
-
"futures",
|
|
1225
|
+
"futures-channel",
|
|
1226
|
+
"futures-util",
|
|
1296
1227
|
"once_cell",
|
|
1297
1228
|
"pin-project-lite",
|
|
1298
1229
|
"pyo3",
|
|
@@ -1301,19 +1232,18 @@ dependencies = [
|
|
|
1301
1232
|
|
|
1302
1233
|
[[package]]
|
|
1303
1234
|
name = "pyo3-build-config"
|
|
1304
|
-
version = "0.
|
|
1235
|
+
version = "0.28.2"
|
|
1305
1236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1306
|
-
checksum = "
|
|
1237
|
+
checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
|
|
1307
1238
|
dependencies = [
|
|
1308
|
-
"once_cell",
|
|
1309
1239
|
"target-lexicon",
|
|
1310
1240
|
]
|
|
1311
1241
|
|
|
1312
1242
|
[[package]]
|
|
1313
1243
|
name = "pyo3-ffi"
|
|
1314
|
-
version = "0.
|
|
1244
|
+
version = "0.28.2"
|
|
1315
1245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1316
|
-
checksum = "
|
|
1246
|
+
checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
|
|
1317
1247
|
dependencies = [
|
|
1318
1248
|
"libc",
|
|
1319
1249
|
"pyo3-build-config",
|
|
@@ -1321,46 +1251,165 @@ dependencies = [
|
|
|
1321
1251
|
|
|
1322
1252
|
[[package]]
|
|
1323
1253
|
name = "pyo3-macros"
|
|
1324
|
-
version = "0.
|
|
1254
|
+
version = "0.28.2"
|
|
1325
1255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1326
|
-
checksum = "
|
|
1256
|
+
checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
|
|
1327
1257
|
dependencies = [
|
|
1328
1258
|
"proc-macro2",
|
|
1329
1259
|
"pyo3-macros-backend",
|
|
1330
1260
|
"quote",
|
|
1331
|
-
"syn 2.0.
|
|
1261
|
+
"syn 2.0.117",
|
|
1332
1262
|
]
|
|
1333
1263
|
|
|
1334
1264
|
[[package]]
|
|
1335
1265
|
name = "pyo3-macros-backend"
|
|
1336
|
-
version = "0.
|
|
1266
|
+
version = "0.28.2"
|
|
1337
1267
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1338
|
-
checksum = "
|
|
1268
|
+
checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
|
|
1339
1269
|
dependencies = [
|
|
1340
1270
|
"heck",
|
|
1341
1271
|
"proc-macro2",
|
|
1342
1272
|
"pyo3-build-config",
|
|
1343
1273
|
"quote",
|
|
1344
|
-
"syn 2.0.
|
|
1274
|
+
"syn 2.0.117",
|
|
1275
|
+
]
|
|
1276
|
+
|
|
1277
|
+
[[package]]
|
|
1278
|
+
name = "pyo3-stub-gen"
|
|
1279
|
+
version = "0.7.0"
|
|
1280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1281
|
+
checksum = "ca7c2d6e22cba51cc9766b6dee4087218cc445fdf99db62fa4f269e074351b46"
|
|
1282
|
+
dependencies = [
|
|
1283
|
+
"anyhow",
|
|
1284
|
+
"chrono",
|
|
1285
|
+
"inventory",
|
|
1286
|
+
"itertools",
|
|
1287
|
+
"log",
|
|
1288
|
+
"maplit",
|
|
1289
|
+
"num-complex",
|
|
1290
|
+
"numpy",
|
|
1291
|
+
"pyo3",
|
|
1292
|
+
"pyo3-stub-gen-derive",
|
|
1293
|
+
"serde",
|
|
1294
|
+
"toml",
|
|
1295
|
+
]
|
|
1296
|
+
|
|
1297
|
+
[[package]]
|
|
1298
|
+
name = "pyo3-stub-gen-derive"
|
|
1299
|
+
version = "0.7.0"
|
|
1300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
|
+
checksum = "3ee49d727163163a0c6fc3fee4636c8b5c82e1bb868e85cf411be7ae9e4e5b40"
|
|
1302
|
+
dependencies = [
|
|
1303
|
+
"proc-macro2",
|
|
1304
|
+
"quote",
|
|
1305
|
+
"syn 2.0.117",
|
|
1306
|
+
]
|
|
1307
|
+
|
|
1308
|
+
[[package]]
|
|
1309
|
+
name = "quinn"
|
|
1310
|
+
version = "0.11.9"
|
|
1311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1312
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
1313
|
+
dependencies = [
|
|
1314
|
+
"bytes",
|
|
1315
|
+
"cfg_aliases",
|
|
1316
|
+
"pin-project-lite",
|
|
1317
|
+
"quinn-proto",
|
|
1318
|
+
"quinn-udp",
|
|
1319
|
+
"rustc-hash",
|
|
1320
|
+
"rustls 0.23.37",
|
|
1321
|
+
"socket2",
|
|
1322
|
+
"thiserror 2.0.18",
|
|
1323
|
+
"tokio",
|
|
1324
|
+
"tracing",
|
|
1325
|
+
"web-time",
|
|
1326
|
+
]
|
|
1327
|
+
|
|
1328
|
+
[[package]]
|
|
1329
|
+
name = "quinn-proto"
|
|
1330
|
+
version = "0.11.13"
|
|
1331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1332
|
+
checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
|
|
1333
|
+
dependencies = [
|
|
1334
|
+
"bytes",
|
|
1335
|
+
"getrandom 0.3.4",
|
|
1336
|
+
"lru-slab",
|
|
1337
|
+
"rand 0.9.2",
|
|
1338
|
+
"ring",
|
|
1339
|
+
"rustc-hash",
|
|
1340
|
+
"rustls 0.23.37",
|
|
1341
|
+
"rustls-pki-types",
|
|
1342
|
+
"slab",
|
|
1343
|
+
"thiserror 2.0.18",
|
|
1344
|
+
"tinyvec",
|
|
1345
|
+
"tracing",
|
|
1346
|
+
"web-time",
|
|
1347
|
+
]
|
|
1348
|
+
|
|
1349
|
+
[[package]]
|
|
1350
|
+
name = "quinn-udp"
|
|
1351
|
+
version = "0.5.14"
|
|
1352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1353
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
1354
|
+
dependencies = [
|
|
1355
|
+
"cfg_aliases",
|
|
1356
|
+
"libc",
|
|
1357
|
+
"once_cell",
|
|
1358
|
+
"socket2",
|
|
1359
|
+
"tracing",
|
|
1360
|
+
"windows-sys 0.60.2",
|
|
1345
1361
|
]
|
|
1346
1362
|
|
|
1347
1363
|
[[package]]
|
|
1348
1364
|
name = "quote"
|
|
1349
|
-
version = "1.0.
|
|
1365
|
+
version = "1.0.44"
|
|
1350
1366
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1351
|
-
checksum = "
|
|
1367
|
+
checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
|
|
1352
1368
|
dependencies = [
|
|
1353
1369
|
"proc-macro2",
|
|
1354
1370
|
]
|
|
1355
1371
|
|
|
1372
|
+
[[package]]
|
|
1373
|
+
name = "r-efi"
|
|
1374
|
+
version = "5.3.0"
|
|
1375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1376
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1377
|
+
|
|
1378
|
+
[[package]]
|
|
1379
|
+
name = "radium"
|
|
1380
|
+
version = "0.7.0"
|
|
1381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
|
+
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
1383
|
+
|
|
1384
|
+
[[package]]
|
|
1385
|
+
name = "rand"
|
|
1386
|
+
version = "0.8.5"
|
|
1387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1388
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1389
|
+
dependencies = [
|
|
1390
|
+
"libc",
|
|
1391
|
+
"rand_chacha 0.3.1",
|
|
1392
|
+
"rand_core 0.6.4",
|
|
1393
|
+
]
|
|
1394
|
+
|
|
1356
1395
|
[[package]]
|
|
1357
1396
|
name = "rand"
|
|
1358
|
-
version = "0.9.
|
|
1397
|
+
version = "0.9.2"
|
|
1359
1398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1360
|
-
checksum = "
|
|
1399
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
1361
1400
|
dependencies = [
|
|
1362
|
-
"rand_chacha",
|
|
1363
|
-
"rand_core",
|
|
1401
|
+
"rand_chacha 0.9.0",
|
|
1402
|
+
"rand_core 0.9.5",
|
|
1403
|
+
]
|
|
1404
|
+
|
|
1405
|
+
[[package]]
|
|
1406
|
+
name = "rand_chacha"
|
|
1407
|
+
version = "0.3.1"
|
|
1408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1410
|
+
dependencies = [
|
|
1411
|
+
"ppv-lite86",
|
|
1412
|
+
"rand_core 0.6.4",
|
|
1364
1413
|
]
|
|
1365
1414
|
|
|
1366
1415
|
[[package]]
|
|
@@ -1370,177 +1419,243 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1370
1419
|
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1371
1420
|
dependencies = [
|
|
1372
1421
|
"ppv-lite86",
|
|
1373
|
-
"rand_core",
|
|
1422
|
+
"rand_core 0.9.5",
|
|
1374
1423
|
]
|
|
1375
1424
|
|
|
1376
1425
|
[[package]]
|
|
1377
1426
|
name = "rand_core"
|
|
1378
|
-
version = "0.
|
|
1427
|
+
version = "0.6.4"
|
|
1379
1428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
-
checksum = "
|
|
1429
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1381
1430
|
dependencies = [
|
|
1382
|
-
"getrandom 0.
|
|
1383
|
-
"zerocopy 0.8.17",
|
|
1431
|
+
"getrandom 0.2.17",
|
|
1384
1432
|
]
|
|
1385
1433
|
|
|
1386
1434
|
[[package]]
|
|
1387
|
-
name = "
|
|
1388
|
-
version = "0.5
|
|
1435
|
+
name = "rand_core"
|
|
1436
|
+
version = "0.9.5"
|
|
1389
1437
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1390
|
-
checksum = "
|
|
1438
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
1391
1439
|
dependencies = [
|
|
1392
|
-
"
|
|
1440
|
+
"getrandom 0.3.4",
|
|
1393
1441
|
]
|
|
1394
1442
|
|
|
1395
1443
|
[[package]]
|
|
1396
|
-
name = "
|
|
1397
|
-
version = "
|
|
1444
|
+
name = "rawpointer"
|
|
1445
|
+
version = "0.2.1"
|
|
1398
1446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1399
|
-
checksum = "
|
|
1447
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
1448
|
+
|
|
1449
|
+
[[package]]
|
|
1450
|
+
name = "redox_syscall"
|
|
1451
|
+
version = "0.5.18"
|
|
1452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1453
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1400
1454
|
dependencies = [
|
|
1401
|
-
"
|
|
1402
|
-
"memchr",
|
|
1403
|
-
"regex-automata 0.4.9",
|
|
1404
|
-
"regex-syntax 0.8.5",
|
|
1455
|
+
"bitflags",
|
|
1405
1456
|
]
|
|
1406
1457
|
|
|
1407
1458
|
[[package]]
|
|
1408
|
-
name = "regex
|
|
1409
|
-
version = "
|
|
1459
|
+
name = "regex"
|
|
1460
|
+
version = "1.12.3"
|
|
1410
1461
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1411
|
-
checksum = "
|
|
1462
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
1412
1463
|
dependencies = [
|
|
1413
|
-
"
|
|
1464
|
+
"aho-corasick",
|
|
1465
|
+
"memchr",
|
|
1466
|
+
"regex-automata",
|
|
1467
|
+
"regex-syntax",
|
|
1414
1468
|
]
|
|
1415
1469
|
|
|
1416
1470
|
[[package]]
|
|
1417
1471
|
name = "regex-automata"
|
|
1418
|
-
version = "0.4.
|
|
1472
|
+
version = "0.4.14"
|
|
1419
1473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
-
checksum = "
|
|
1474
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1421
1475
|
dependencies = [
|
|
1422
1476
|
"aho-corasick",
|
|
1423
1477
|
"memchr",
|
|
1424
|
-
"regex-syntax
|
|
1478
|
+
"regex-syntax",
|
|
1425
1479
|
]
|
|
1426
1480
|
|
|
1427
1481
|
[[package]]
|
|
1428
1482
|
name = "regex-syntax"
|
|
1429
|
-
version = "0.
|
|
1483
|
+
version = "0.8.10"
|
|
1430
1484
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1431
|
-
checksum = "
|
|
1485
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
1432
1486
|
|
|
1433
1487
|
[[package]]
|
|
1434
|
-
name = "
|
|
1435
|
-
version = "0.
|
|
1488
|
+
name = "rend"
|
|
1489
|
+
version = "0.4.2"
|
|
1436
1490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1437
|
-
checksum = "
|
|
1491
|
+
checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
|
|
1492
|
+
dependencies = [
|
|
1493
|
+
"bytecheck",
|
|
1494
|
+
]
|
|
1438
1495
|
|
|
1439
1496
|
[[package]]
|
|
1440
1497
|
name = "reqwest"
|
|
1441
|
-
version = "0.12.
|
|
1498
|
+
version = "0.12.28"
|
|
1442
1499
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1443
|
-
checksum = "
|
|
1500
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
1444
1501
|
dependencies = [
|
|
1445
1502
|
"base64",
|
|
1446
1503
|
"bytes",
|
|
1447
|
-
"encoding_rs",
|
|
1448
1504
|
"futures-core",
|
|
1449
|
-
"futures-util",
|
|
1450
|
-
"h2",
|
|
1451
1505
|
"http",
|
|
1452
1506
|
"http-body",
|
|
1453
1507
|
"http-body-util",
|
|
1454
1508
|
"hyper",
|
|
1455
1509
|
"hyper-rustls",
|
|
1456
|
-
"hyper-tls",
|
|
1457
1510
|
"hyper-util",
|
|
1458
|
-
"ipnet",
|
|
1459
1511
|
"js-sys",
|
|
1460
1512
|
"log",
|
|
1461
|
-
"mime",
|
|
1462
|
-
"native-tls",
|
|
1463
|
-
"once_cell",
|
|
1464
1513
|
"percent-encoding",
|
|
1465
1514
|
"pin-project-lite",
|
|
1466
|
-
"
|
|
1515
|
+
"quinn",
|
|
1516
|
+
"rustls 0.23.37",
|
|
1517
|
+
"rustls-pki-types",
|
|
1467
1518
|
"serde",
|
|
1468
1519
|
"serde_json",
|
|
1469
1520
|
"serde_urlencoded",
|
|
1470
1521
|
"sync_wrapper",
|
|
1471
|
-
"system-configuration",
|
|
1472
1522
|
"tokio",
|
|
1473
|
-
"tokio-
|
|
1523
|
+
"tokio-rustls 0.26.4",
|
|
1474
1524
|
"tower",
|
|
1525
|
+
"tower-http",
|
|
1475
1526
|
"tower-service",
|
|
1476
1527
|
"url",
|
|
1477
1528
|
"wasm-bindgen",
|
|
1478
1529
|
"wasm-bindgen-futures",
|
|
1479
1530
|
"web-sys",
|
|
1480
|
-
"
|
|
1531
|
+
"webpki-roots 1.0.6",
|
|
1481
1532
|
]
|
|
1482
1533
|
|
|
1483
1534
|
[[package]]
|
|
1484
1535
|
name = "ring"
|
|
1485
|
-
version = "0.17.
|
|
1536
|
+
version = "0.17.14"
|
|
1486
1537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1487
|
-
checksum = "
|
|
1538
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1488
1539
|
dependencies = [
|
|
1489
1540
|
"cc",
|
|
1490
1541
|
"cfg-if",
|
|
1491
|
-
"getrandom 0.2.
|
|
1542
|
+
"getrandom 0.2.17",
|
|
1492
1543
|
"libc",
|
|
1493
|
-
"spin",
|
|
1494
1544
|
"untrusted",
|
|
1495
1545
|
"windows-sys 0.52.0",
|
|
1496
1546
|
]
|
|
1497
1547
|
|
|
1498
1548
|
[[package]]
|
|
1499
|
-
name = "
|
|
1500
|
-
version = "0.
|
|
1549
|
+
name = "rkyv"
|
|
1550
|
+
version = "0.7.46"
|
|
1501
1551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
-
checksum = "
|
|
1552
|
+
checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
|
|
1553
|
+
dependencies = [
|
|
1554
|
+
"bitvec",
|
|
1555
|
+
"bytecheck",
|
|
1556
|
+
"bytes",
|
|
1557
|
+
"hashbrown 0.12.3",
|
|
1558
|
+
"ptr_meta",
|
|
1559
|
+
"rend",
|
|
1560
|
+
"rkyv_derive",
|
|
1561
|
+
"seahash",
|
|
1562
|
+
"tinyvec",
|
|
1563
|
+
"uuid",
|
|
1564
|
+
]
|
|
1503
1565
|
|
|
1504
1566
|
[[package]]
|
|
1505
|
-
name = "
|
|
1506
|
-
version = "0.
|
|
1567
|
+
name = "rkyv_derive"
|
|
1568
|
+
version = "0.7.46"
|
|
1507
1569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
|
-
checksum = "
|
|
1570
|
+
checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
|
|
1509
1571
|
dependencies = [
|
|
1510
|
-
"
|
|
1511
|
-
"
|
|
1512
|
-
"
|
|
1513
|
-
|
|
1514
|
-
|
|
1572
|
+
"proc-macro2",
|
|
1573
|
+
"quote",
|
|
1574
|
+
"syn 1.0.109",
|
|
1575
|
+
]
|
|
1576
|
+
|
|
1577
|
+
[[package]]
|
|
1578
|
+
name = "rust_decimal"
|
|
1579
|
+
version = "1.40.0"
|
|
1580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1581
|
+
checksum = "61f703d19852dbf87cbc513643fa81428361eb6940f1ac14fd58155d295a3eb0"
|
|
1582
|
+
dependencies = [
|
|
1583
|
+
"arrayvec",
|
|
1584
|
+
"borsh",
|
|
1585
|
+
"bytes",
|
|
1586
|
+
"num-traits",
|
|
1587
|
+
"rand 0.8.5",
|
|
1588
|
+
"rkyv",
|
|
1589
|
+
"rust_decimal_macros",
|
|
1590
|
+
"serde",
|
|
1591
|
+
"serde_json",
|
|
1592
|
+
]
|
|
1593
|
+
|
|
1594
|
+
[[package]]
|
|
1595
|
+
name = "rust_decimal_macros"
|
|
1596
|
+
version = "1.40.0"
|
|
1597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1598
|
+
checksum = "74a5a6f027e892c7a035c6fddb50435a1fbf5a734ffc0c2a9fed4d0221440519"
|
|
1599
|
+
dependencies = [
|
|
1600
|
+
"quote",
|
|
1601
|
+
"syn 2.0.117",
|
|
1602
|
+
]
|
|
1603
|
+
|
|
1604
|
+
[[package]]
|
|
1605
|
+
name = "rustc-hash"
|
|
1606
|
+
version = "2.1.1"
|
|
1607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1608
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
1609
|
+
|
|
1610
|
+
[[package]]
|
|
1611
|
+
name = "rustls"
|
|
1612
|
+
version = "0.22.4"
|
|
1613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1614
|
+
checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
|
|
1615
|
+
dependencies = [
|
|
1616
|
+
"log",
|
|
1617
|
+
"ring",
|
|
1618
|
+
"rustls-pki-types",
|
|
1619
|
+
"rustls-webpki 0.102.8",
|
|
1620
|
+
"subtle",
|
|
1621
|
+
"zeroize",
|
|
1515
1622
|
]
|
|
1516
1623
|
|
|
1517
1624
|
[[package]]
|
|
1518
1625
|
name = "rustls"
|
|
1519
|
-
version = "0.23.
|
|
1626
|
+
version = "0.23.37"
|
|
1520
1627
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
-
checksum = "
|
|
1628
|
+
checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
|
|
1522
1629
|
dependencies = [
|
|
1523
1630
|
"once_cell",
|
|
1631
|
+
"ring",
|
|
1524
1632
|
"rustls-pki-types",
|
|
1525
|
-
"rustls-webpki",
|
|
1633
|
+
"rustls-webpki 0.103.9",
|
|
1526
1634
|
"subtle",
|
|
1527
1635
|
"zeroize",
|
|
1528
1636
|
]
|
|
1529
1637
|
|
|
1530
1638
|
[[package]]
|
|
1531
|
-
name = "rustls-
|
|
1532
|
-
version = "
|
|
1639
|
+
name = "rustls-native-certs"
|
|
1640
|
+
version = "0.8.3"
|
|
1533
1641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1534
|
-
checksum = "
|
|
1642
|
+
checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
|
|
1535
1643
|
dependencies = [
|
|
1644
|
+
"openssl-probe",
|
|
1536
1645
|
"rustls-pki-types",
|
|
1646
|
+
"schannel",
|
|
1647
|
+
"security-framework",
|
|
1537
1648
|
]
|
|
1538
1649
|
|
|
1539
1650
|
[[package]]
|
|
1540
1651
|
name = "rustls-pki-types"
|
|
1541
|
-
version = "1.
|
|
1652
|
+
version = "1.14.0"
|
|
1542
1653
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1543
|
-
checksum = "
|
|
1654
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
1655
|
+
dependencies = [
|
|
1656
|
+
"web-time",
|
|
1657
|
+
"zeroize",
|
|
1658
|
+
]
|
|
1544
1659
|
|
|
1545
1660
|
[[package]]
|
|
1546
1661
|
name = "rustls-webpki"
|
|
@@ -1553,25 +1668,36 @@ dependencies = [
|
|
|
1553
1668
|
"untrusted",
|
|
1554
1669
|
]
|
|
1555
1670
|
|
|
1671
|
+
[[package]]
|
|
1672
|
+
name = "rustls-webpki"
|
|
1673
|
+
version = "0.103.9"
|
|
1674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1675
|
+
checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
|
|
1676
|
+
dependencies = [
|
|
1677
|
+
"ring",
|
|
1678
|
+
"rustls-pki-types",
|
|
1679
|
+
"untrusted",
|
|
1680
|
+
]
|
|
1681
|
+
|
|
1556
1682
|
[[package]]
|
|
1557
1683
|
name = "rustversion"
|
|
1558
|
-
version = "1.0.
|
|
1684
|
+
version = "1.0.22"
|
|
1559
1685
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1560
|
-
checksum = "
|
|
1686
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1561
1687
|
|
|
1562
1688
|
[[package]]
|
|
1563
1689
|
name = "ryu"
|
|
1564
|
-
version = "1.0.
|
|
1690
|
+
version = "1.0.23"
|
|
1565
1691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1566
|
-
checksum = "
|
|
1692
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1567
1693
|
|
|
1568
1694
|
[[package]]
|
|
1569
1695
|
name = "schannel"
|
|
1570
|
-
version = "0.1.
|
|
1696
|
+
version = "0.1.28"
|
|
1571
1697
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
-
checksum = "
|
|
1698
|
+
checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
|
|
1573
1699
|
dependencies = [
|
|
1574
|
-
"windows-sys 0.
|
|
1700
|
+
"windows-sys 0.61.2",
|
|
1575
1701
|
]
|
|
1576
1702
|
|
|
1577
1703
|
[[package]]
|
|
@@ -1580,11 +1706,17 @@ version = "1.2.0"
|
|
|
1580
1706
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1581
1707
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1582
1708
|
|
|
1709
|
+
[[package]]
|
|
1710
|
+
name = "seahash"
|
|
1711
|
+
version = "4.1.0"
|
|
1712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1713
|
+
checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
|
|
1714
|
+
|
|
1583
1715
|
[[package]]
|
|
1584
1716
|
name = "security-framework"
|
|
1585
|
-
version = "
|
|
1717
|
+
version = "3.7.0"
|
|
1586
1718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1587
|
-
checksum = "
|
|
1719
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
1588
1720
|
dependencies = [
|
|
1589
1721
|
"bitflags",
|
|
1590
1722
|
"core-foundation",
|
|
@@ -1595,73 +1727,69 @@ dependencies = [
|
|
|
1595
1727
|
|
|
1596
1728
|
[[package]]
|
|
1597
1729
|
name = "security-framework-sys"
|
|
1598
|
-
version = "2.
|
|
1730
|
+
version = "2.17.0"
|
|
1599
1731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1600
|
-
checksum = "
|
|
1732
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
1601
1733
|
dependencies = [
|
|
1602
1734
|
"core-foundation-sys",
|
|
1603
1735
|
"libc",
|
|
1604
1736
|
]
|
|
1605
1737
|
|
|
1606
1738
|
[[package]]
|
|
1607
|
-
name = "
|
|
1608
|
-
version = "1.0.
|
|
1739
|
+
name = "semver"
|
|
1740
|
+
version = "1.0.27"
|
|
1609
1741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1610
|
-
checksum = "
|
|
1611
|
-
dependencies = [
|
|
1612
|
-
"serde_derive",
|
|
1613
|
-
]
|
|
1742
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
1614
1743
|
|
|
1615
1744
|
[[package]]
|
|
1616
|
-
name = "serde
|
|
1617
|
-
version = "0.
|
|
1745
|
+
name = "serde"
|
|
1746
|
+
version = "1.0.228"
|
|
1618
1747
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
-
checksum = "
|
|
1748
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1620
1749
|
dependencies = [
|
|
1621
|
-
"
|
|
1622
|
-
"
|
|
1623
|
-
"syn 1.0.109",
|
|
1750
|
+
"serde_core",
|
|
1751
|
+
"serde_derive",
|
|
1624
1752
|
]
|
|
1625
1753
|
|
|
1626
1754
|
[[package]]
|
|
1627
|
-
name = "
|
|
1628
|
-
version = "0.
|
|
1755
|
+
name = "serde_core"
|
|
1756
|
+
version = "1.0.228"
|
|
1629
1757
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1630
|
-
checksum = "
|
|
1758
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1631
1759
|
dependencies = [
|
|
1632
|
-
"
|
|
1633
|
-
"proc-macro2",
|
|
1634
|
-
"quote",
|
|
1635
|
-
"serde-attributes",
|
|
1636
|
-
"syn 1.0.109",
|
|
1760
|
+
"serde_derive",
|
|
1637
1761
|
]
|
|
1638
1762
|
|
|
1639
|
-
[[package]]
|
|
1640
|
-
name = "serde-rename-rule"
|
|
1641
|
-
version = "0.2.2"
|
|
1642
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1643
|
-
checksum = "794e44574226fc701e3be5c651feb7939038fc67fb73f6f4dd5c4ba90fd3be70"
|
|
1644
|
-
|
|
1645
1763
|
[[package]]
|
|
1646
1764
|
name = "serde_derive"
|
|
1647
|
-
version = "1.0.
|
|
1765
|
+
version = "1.0.228"
|
|
1648
1766
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1649
|
-
checksum = "
|
|
1767
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1650
1768
|
dependencies = [
|
|
1651
1769
|
"proc-macro2",
|
|
1652
1770
|
"quote",
|
|
1653
|
-
"syn 2.0.
|
|
1771
|
+
"syn 2.0.117",
|
|
1654
1772
|
]
|
|
1655
1773
|
|
|
1656
1774
|
[[package]]
|
|
1657
1775
|
name = "serde_json"
|
|
1658
|
-
version = "1.0.
|
|
1776
|
+
version = "1.0.149"
|
|
1659
1777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1660
|
-
checksum = "
|
|
1778
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1661
1779
|
dependencies = [
|
|
1662
1780
|
"itoa",
|
|
1663
1781
|
"memchr",
|
|
1664
|
-
"
|
|
1782
|
+
"serde",
|
|
1783
|
+
"serde_core",
|
|
1784
|
+
"zmij",
|
|
1785
|
+
]
|
|
1786
|
+
|
|
1787
|
+
[[package]]
|
|
1788
|
+
name = "serde_spanned"
|
|
1789
|
+
version = "0.6.9"
|
|
1790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1791
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
1792
|
+
dependencies = [
|
|
1665
1793
|
"serde",
|
|
1666
1794
|
]
|
|
1667
1795
|
|
|
@@ -1705,49 +1833,47 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
|
1705
1833
|
|
|
1706
1834
|
[[package]]
|
|
1707
1835
|
name = "signal-hook-registry"
|
|
1708
|
-
version = "1.4.
|
|
1836
|
+
version = "1.4.8"
|
|
1709
1837
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
-
checksum = "
|
|
1838
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
1711
1839
|
dependencies = [
|
|
1840
|
+
"errno",
|
|
1712
1841
|
"libc",
|
|
1713
1842
|
]
|
|
1714
1843
|
|
|
1844
|
+
[[package]]
|
|
1845
|
+
name = "simdutf8"
|
|
1846
|
+
version = "0.1.5"
|
|
1847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1848
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
1849
|
+
|
|
1715
1850
|
[[package]]
|
|
1716
1851
|
name = "slab"
|
|
1717
|
-
version = "0.4.
|
|
1852
|
+
version = "0.4.12"
|
|
1718
1853
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
-
checksum = "
|
|
1720
|
-
dependencies = [
|
|
1721
|
-
"autocfg",
|
|
1722
|
-
]
|
|
1854
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1723
1855
|
|
|
1724
1856
|
[[package]]
|
|
1725
1857
|
name = "smallvec"
|
|
1726
|
-
version = "1.
|
|
1858
|
+
version = "1.15.1"
|
|
1727
1859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1728
|
-
checksum = "
|
|
1860
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1729
1861
|
|
|
1730
1862
|
[[package]]
|
|
1731
1863
|
name = "socket2"
|
|
1732
|
-
version = "0.
|
|
1864
|
+
version = "0.6.2"
|
|
1733
1865
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1734
|
-
checksum = "
|
|
1866
|
+
checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
|
|
1735
1867
|
dependencies = [
|
|
1736
1868
|
"libc",
|
|
1737
|
-
"windows-sys 0.
|
|
1869
|
+
"windows-sys 0.60.2",
|
|
1738
1870
|
]
|
|
1739
1871
|
|
|
1740
|
-
[[package]]
|
|
1741
|
-
name = "spin"
|
|
1742
|
-
version = "0.9.8"
|
|
1743
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1744
|
-
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
1745
|
-
|
|
1746
1872
|
[[package]]
|
|
1747
1873
|
name = "stable_deref_trait"
|
|
1748
|
-
version = "1.2.
|
|
1874
|
+
version = "1.2.1"
|
|
1749
1875
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1750
|
-
checksum = "
|
|
1876
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1751
1877
|
|
|
1752
1878
|
[[package]]
|
|
1753
1879
|
name = "strsim"
|
|
@@ -1774,9 +1900,9 @@ dependencies = [
|
|
|
1774
1900
|
|
|
1775
1901
|
[[package]]
|
|
1776
1902
|
name = "syn"
|
|
1777
|
-
version = "2.0.
|
|
1903
|
+
version = "2.0.117"
|
|
1778
1904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1779
|
-
checksum = "
|
|
1905
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1780
1906
|
dependencies = [
|
|
1781
1907
|
"proc-macro2",
|
|
1782
1908
|
"quote",
|
|
@@ -1794,55 +1920,26 @@ dependencies = [
|
|
|
1794
1920
|
|
|
1795
1921
|
[[package]]
|
|
1796
1922
|
name = "synstructure"
|
|
1797
|
-
version = "0.13.
|
|
1923
|
+
version = "0.13.2"
|
|
1798
1924
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1799
|
-
checksum = "
|
|
1925
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1800
1926
|
dependencies = [
|
|
1801
1927
|
"proc-macro2",
|
|
1802
1928
|
"quote",
|
|
1803
|
-
"syn 2.0.
|
|
1929
|
+
"syn 2.0.117",
|
|
1804
1930
|
]
|
|
1805
1931
|
|
|
1806
1932
|
[[package]]
|
|
1807
|
-
name = "
|
|
1808
|
-
version = "0.
|
|
1809
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
|
-
checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
|
|
1811
|
-
dependencies = [
|
|
1812
|
-
"bitflags",
|
|
1813
|
-
"core-foundation",
|
|
1814
|
-
"system-configuration-sys",
|
|
1815
|
-
]
|
|
1816
|
-
|
|
1817
|
-
[[package]]
|
|
1818
|
-
name = "system-configuration-sys"
|
|
1819
|
-
version = "0.6.0"
|
|
1933
|
+
name = "tap"
|
|
1934
|
+
version = "1.0.1"
|
|
1820
1935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1821
|
-
checksum = "
|
|
1822
|
-
dependencies = [
|
|
1823
|
-
"core-foundation-sys",
|
|
1824
|
-
"libc",
|
|
1825
|
-
]
|
|
1936
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
1826
1937
|
|
|
1827
1938
|
[[package]]
|
|
1828
1939
|
name = "target-lexicon"
|
|
1829
|
-
version = "0.13.
|
|
1940
|
+
version = "0.13.5"
|
|
1830
1941
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1831
|
-
checksum = "
|
|
1832
|
-
|
|
1833
|
-
[[package]]
|
|
1834
|
-
name = "tempfile"
|
|
1835
|
-
version = "3.16.0"
|
|
1836
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1837
|
-
checksum = "38c246215d7d24f48ae091a2902398798e05d978b24315d6efbc00ede9a8bb91"
|
|
1838
|
-
dependencies = [
|
|
1839
|
-
"cfg-if",
|
|
1840
|
-
"fastrand",
|
|
1841
|
-
"getrandom 0.3.1",
|
|
1842
|
-
"once_cell",
|
|
1843
|
-
"rustix",
|
|
1844
|
-
"windows-sys 0.59.0",
|
|
1845
|
-
]
|
|
1942
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1846
1943
|
|
|
1847
1944
|
[[package]]
|
|
1848
1945
|
name = "thiserror"
|
|
@@ -1855,11 +1952,11 @@ dependencies = [
|
|
|
1855
1952
|
|
|
1856
1953
|
[[package]]
|
|
1857
1954
|
name = "thiserror"
|
|
1858
|
-
version = "2.0.
|
|
1955
|
+
version = "2.0.18"
|
|
1859
1956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1860
|
-
checksum = "
|
|
1957
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1861
1958
|
dependencies = [
|
|
1862
|
-
"thiserror-impl 2.0.
|
|
1959
|
+
"thiserror-impl 2.0.18",
|
|
1863
1960
|
]
|
|
1864
1961
|
|
|
1865
1962
|
[[package]]
|
|
@@ -1870,158 +1967,235 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
1870
1967
|
dependencies = [
|
|
1871
1968
|
"proc-macro2",
|
|
1872
1969
|
"quote",
|
|
1873
|
-
"syn 2.0.
|
|
1970
|
+
"syn 2.0.117",
|
|
1874
1971
|
]
|
|
1875
1972
|
|
|
1876
1973
|
[[package]]
|
|
1877
1974
|
name = "thiserror-impl"
|
|
1878
|
-
version = "2.0.
|
|
1975
|
+
version = "2.0.18"
|
|
1879
1976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1880
|
-
checksum = "
|
|
1977
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1881
1978
|
dependencies = [
|
|
1882
1979
|
"proc-macro2",
|
|
1883
1980
|
"quote",
|
|
1884
|
-
"syn 2.0.
|
|
1981
|
+
"syn 2.0.117",
|
|
1885
1982
|
]
|
|
1886
1983
|
|
|
1887
1984
|
[[package]]
|
|
1888
1985
|
name = "thread_local"
|
|
1889
|
-
version = "1.1.
|
|
1986
|
+
version = "1.1.9"
|
|
1890
1987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1891
|
-
checksum = "
|
|
1988
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
1892
1989
|
dependencies = [
|
|
1893
1990
|
"cfg-if",
|
|
1894
|
-
"once_cell",
|
|
1895
1991
|
]
|
|
1896
1992
|
|
|
1897
1993
|
[[package]]
|
|
1898
|
-
name = "
|
|
1899
|
-
version = "0.
|
|
1994
|
+
name = "tinystr"
|
|
1995
|
+
version = "0.8.2"
|
|
1996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
1998
|
+
dependencies = [
|
|
1999
|
+
"displaydoc",
|
|
2000
|
+
"zerovec",
|
|
2001
|
+
]
|
|
2002
|
+
|
|
2003
|
+
[[package]]
|
|
2004
|
+
name = "tinyvec"
|
|
2005
|
+
version = "1.10.0"
|
|
2006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2007
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
2008
|
+
dependencies = [
|
|
2009
|
+
"tinyvec_macros",
|
|
2010
|
+
]
|
|
2011
|
+
|
|
2012
|
+
[[package]]
|
|
2013
|
+
name = "tinyvec_macros"
|
|
2014
|
+
version = "0.1.1"
|
|
2015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2016
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2017
|
+
|
|
2018
|
+
[[package]]
|
|
2019
|
+
name = "tokio"
|
|
2020
|
+
version = "1.49.0"
|
|
2021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2022
|
+
checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
|
|
2023
|
+
dependencies = [
|
|
2024
|
+
"bytes",
|
|
2025
|
+
"libc",
|
|
2026
|
+
"mio",
|
|
2027
|
+
"parking_lot",
|
|
2028
|
+
"pin-project-lite",
|
|
2029
|
+
"signal-hook-registry",
|
|
2030
|
+
"socket2",
|
|
2031
|
+
"tokio-macros",
|
|
2032
|
+
"windows-sys 0.61.2",
|
|
2033
|
+
]
|
|
2034
|
+
|
|
2035
|
+
[[package]]
|
|
2036
|
+
name = "tokio-macros"
|
|
2037
|
+
version = "2.6.0"
|
|
2038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2039
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
2040
|
+
dependencies = [
|
|
2041
|
+
"proc-macro2",
|
|
2042
|
+
"quote",
|
|
2043
|
+
"syn 2.0.117",
|
|
2044
|
+
]
|
|
2045
|
+
|
|
2046
|
+
[[package]]
|
|
2047
|
+
name = "tokio-rustls"
|
|
2048
|
+
version = "0.25.0"
|
|
2049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2050
|
+
checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
|
|
2051
|
+
dependencies = [
|
|
2052
|
+
"rustls 0.22.4",
|
|
2053
|
+
"rustls-pki-types",
|
|
2054
|
+
"tokio",
|
|
2055
|
+
]
|
|
2056
|
+
|
|
2057
|
+
[[package]]
|
|
2058
|
+
name = "tokio-rustls"
|
|
2059
|
+
version = "0.26.4"
|
|
2060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2061
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
2062
|
+
dependencies = [
|
|
2063
|
+
"rustls 0.23.37",
|
|
2064
|
+
"tokio",
|
|
2065
|
+
]
|
|
2066
|
+
|
|
2067
|
+
[[package]]
|
|
2068
|
+
name = "tokio-tungstenite"
|
|
2069
|
+
version = "0.21.0"
|
|
2070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2071
|
+
checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38"
|
|
2072
|
+
dependencies = [
|
|
2073
|
+
"futures-util",
|
|
2074
|
+
"log",
|
|
2075
|
+
"rustls 0.22.4",
|
|
2076
|
+
"rustls-pki-types",
|
|
2077
|
+
"tokio",
|
|
2078
|
+
"tokio-rustls 0.25.0",
|
|
2079
|
+
"tungstenite 0.21.0",
|
|
2080
|
+
"webpki-roots 0.26.11",
|
|
2081
|
+
]
|
|
2082
|
+
|
|
2083
|
+
[[package]]
|
|
2084
|
+
name = "tokio-tungstenite"
|
|
2085
|
+
version = "0.28.0"
|
|
1900
2086
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1901
|
-
checksum = "
|
|
2087
|
+
checksum = "d25a406cddcc431a75d3d9afc6a7c0f7428d4891dd973e4d54c56b46127bf857"
|
|
1902
2088
|
dependencies = [
|
|
1903
|
-
"
|
|
1904
|
-
"
|
|
1905
|
-
"
|
|
1906
|
-
"
|
|
1907
|
-
"
|
|
1908
|
-
"
|
|
1909
|
-
"
|
|
2089
|
+
"futures-util",
|
|
2090
|
+
"log",
|
|
2091
|
+
"rustls 0.23.37",
|
|
2092
|
+
"rustls-pki-types",
|
|
2093
|
+
"tokio",
|
|
2094
|
+
"tokio-rustls 0.26.4",
|
|
2095
|
+
"tungstenite 0.28.0",
|
|
2096
|
+
"webpki-roots 0.26.11",
|
|
1910
2097
|
]
|
|
1911
2098
|
|
|
1912
2099
|
[[package]]
|
|
1913
|
-
name = "
|
|
1914
|
-
version = "0.
|
|
1915
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1916
|
-
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
|
1917
|
-
|
|
1918
|
-
[[package]]
|
|
1919
|
-
name = "time-macros"
|
|
1920
|
-
version = "0.2.19"
|
|
2100
|
+
name = "toml"
|
|
2101
|
+
version = "0.8.23"
|
|
1921
2102
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1922
|
-
checksum = "
|
|
2103
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
1923
2104
|
dependencies = [
|
|
1924
|
-
"
|
|
1925
|
-
"
|
|
2105
|
+
"serde",
|
|
2106
|
+
"serde_spanned",
|
|
2107
|
+
"toml_datetime 0.6.11",
|
|
2108
|
+
"toml_edit 0.22.27",
|
|
1926
2109
|
]
|
|
1927
2110
|
|
|
1928
2111
|
[[package]]
|
|
1929
|
-
name = "
|
|
1930
|
-
version = "0.
|
|
2112
|
+
name = "toml_datetime"
|
|
2113
|
+
version = "0.6.11"
|
|
1931
2114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1932
|
-
checksum = "
|
|
2115
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
1933
2116
|
dependencies = [
|
|
1934
|
-
"
|
|
1935
|
-
"zerovec",
|
|
2117
|
+
"serde",
|
|
1936
2118
|
]
|
|
1937
2119
|
|
|
1938
2120
|
[[package]]
|
|
1939
|
-
name = "
|
|
1940
|
-
version = "1.
|
|
2121
|
+
name = "toml_datetime"
|
|
2122
|
+
version = "0.7.5+spec-1.1.0"
|
|
1941
2123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1942
|
-
checksum = "
|
|
2124
|
+
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
1943
2125
|
dependencies = [
|
|
1944
|
-
"
|
|
1945
|
-
"bytes",
|
|
1946
|
-
"libc",
|
|
1947
|
-
"mio",
|
|
1948
|
-
"parking_lot",
|
|
1949
|
-
"pin-project-lite",
|
|
1950
|
-
"signal-hook-registry",
|
|
1951
|
-
"socket2",
|
|
1952
|
-
"tokio-macros",
|
|
1953
|
-
"windows-sys 0.52.0",
|
|
2126
|
+
"serde_core",
|
|
1954
2127
|
]
|
|
1955
2128
|
|
|
1956
2129
|
[[package]]
|
|
1957
|
-
name = "
|
|
1958
|
-
version = "
|
|
2130
|
+
name = "toml_edit"
|
|
2131
|
+
version = "0.22.27"
|
|
1959
2132
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1960
|
-
checksum = "
|
|
2133
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
1961
2134
|
dependencies = [
|
|
1962
|
-
"
|
|
1963
|
-
"
|
|
1964
|
-
"
|
|
2135
|
+
"indexmap",
|
|
2136
|
+
"serde",
|
|
2137
|
+
"serde_spanned",
|
|
2138
|
+
"toml_datetime 0.6.11",
|
|
2139
|
+
"toml_write",
|
|
2140
|
+
"winnow",
|
|
1965
2141
|
]
|
|
1966
2142
|
|
|
1967
2143
|
[[package]]
|
|
1968
|
-
name = "
|
|
1969
|
-
version = "0.
|
|
2144
|
+
name = "toml_edit"
|
|
2145
|
+
version = "0.23.10+spec-1.0.0"
|
|
1970
2146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1971
|
-
checksum = "
|
|
2147
|
+
checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
|
|
1972
2148
|
dependencies = [
|
|
1973
|
-
"
|
|
1974
|
-
"
|
|
2149
|
+
"indexmap",
|
|
2150
|
+
"toml_datetime 0.7.5+spec-1.1.0",
|
|
2151
|
+
"toml_parser",
|
|
2152
|
+
"winnow",
|
|
1975
2153
|
]
|
|
1976
2154
|
|
|
1977
2155
|
[[package]]
|
|
1978
|
-
name = "
|
|
1979
|
-
version = "0.
|
|
2156
|
+
name = "toml_parser"
|
|
2157
|
+
version = "1.0.9+spec-1.1.0"
|
|
1980
2158
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1981
|
-
checksum = "
|
|
2159
|
+
checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4"
|
|
1982
2160
|
dependencies = [
|
|
1983
|
-
"
|
|
1984
|
-
"tokio",
|
|
2161
|
+
"winnow",
|
|
1985
2162
|
]
|
|
1986
2163
|
|
|
1987
2164
|
[[package]]
|
|
1988
|
-
name = "
|
|
1989
|
-
version = "0.
|
|
2165
|
+
name = "toml_write"
|
|
2166
|
+
version = "0.1.2"
|
|
1990
2167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1991
|
-
checksum = "
|
|
1992
|
-
dependencies = [
|
|
1993
|
-
"futures-util",
|
|
1994
|
-
"log",
|
|
1995
|
-
"native-tls",
|
|
1996
|
-
"tokio",
|
|
1997
|
-
"tokio-native-tls",
|
|
1998
|
-
"tungstenite",
|
|
1999
|
-
]
|
|
2168
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
2000
2169
|
|
|
2001
2170
|
[[package]]
|
|
2002
|
-
name = "
|
|
2003
|
-
version = "0.
|
|
2171
|
+
name = "tower"
|
|
2172
|
+
version = "0.5.3"
|
|
2004
2173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2005
|
-
checksum = "
|
|
2174
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
2006
2175
|
dependencies = [
|
|
2007
|
-
"bytes",
|
|
2008
2176
|
"futures-core",
|
|
2009
|
-
"futures-
|
|
2177
|
+
"futures-util",
|
|
2010
2178
|
"pin-project-lite",
|
|
2179
|
+
"sync_wrapper",
|
|
2011
2180
|
"tokio",
|
|
2181
|
+
"tower-layer",
|
|
2182
|
+
"tower-service",
|
|
2012
2183
|
]
|
|
2013
2184
|
|
|
2014
2185
|
[[package]]
|
|
2015
|
-
name = "tower"
|
|
2016
|
-
version = "0.
|
|
2186
|
+
name = "tower-http"
|
|
2187
|
+
version = "0.6.8"
|
|
2017
2188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2018
|
-
checksum = "
|
|
2189
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
2019
2190
|
dependencies = [
|
|
2020
|
-
"
|
|
2191
|
+
"bitflags",
|
|
2192
|
+
"bytes",
|
|
2021
2193
|
"futures-util",
|
|
2194
|
+
"http",
|
|
2195
|
+
"http-body",
|
|
2196
|
+
"iri-string",
|
|
2022
2197
|
"pin-project-lite",
|
|
2023
|
-
"
|
|
2024
|
-
"tokio",
|
|
2198
|
+
"tower",
|
|
2025
2199
|
"tower-layer",
|
|
2026
2200
|
"tower-service",
|
|
2027
2201
|
]
|
|
@@ -2040,43 +2214,31 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
|
2040
2214
|
|
|
2041
2215
|
[[package]]
|
|
2042
2216
|
name = "tracing"
|
|
2043
|
-
version = "0.1.
|
|
2217
|
+
version = "0.1.44"
|
|
2044
2218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2045
|
-
checksum = "
|
|
2219
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
2046
2220
|
dependencies = [
|
|
2047
2221
|
"pin-project-lite",
|
|
2048
2222
|
"tracing-attributes",
|
|
2049
2223
|
"tracing-core",
|
|
2050
2224
|
]
|
|
2051
2225
|
|
|
2052
|
-
[[package]]
|
|
2053
|
-
name = "tracing-appender"
|
|
2054
|
-
version = "0.2.3"
|
|
2055
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2056
|
-
checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf"
|
|
2057
|
-
dependencies = [
|
|
2058
|
-
"crossbeam-channel",
|
|
2059
|
-
"thiserror 1.0.69",
|
|
2060
|
-
"time",
|
|
2061
|
-
"tracing-subscriber",
|
|
2062
|
-
]
|
|
2063
|
-
|
|
2064
2226
|
[[package]]
|
|
2065
2227
|
name = "tracing-attributes"
|
|
2066
|
-
version = "0.1.
|
|
2228
|
+
version = "0.1.31"
|
|
2067
2229
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2068
|
-
checksum = "
|
|
2230
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
2069
2231
|
dependencies = [
|
|
2070
2232
|
"proc-macro2",
|
|
2071
2233
|
"quote",
|
|
2072
|
-
"syn 2.0.
|
|
2234
|
+
"syn 2.0.117",
|
|
2073
2235
|
]
|
|
2074
2236
|
|
|
2075
2237
|
[[package]]
|
|
2076
2238
|
name = "tracing-core"
|
|
2077
|
-
version = "0.1.
|
|
2239
|
+
version = "0.1.36"
|
|
2078
2240
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2079
|
-
checksum = "
|
|
2241
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
2080
2242
|
dependencies = [
|
|
2081
2243
|
"once_cell",
|
|
2082
2244
|
"valuable",
|
|
@@ -2105,14 +2267,14 @@ dependencies = [
|
|
|
2105
2267
|
|
|
2106
2268
|
[[package]]
|
|
2107
2269
|
name = "tracing-subscriber"
|
|
2108
|
-
version = "0.3.
|
|
2270
|
+
version = "0.3.22"
|
|
2109
2271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2110
|
-
checksum = "
|
|
2272
|
+
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
|
|
2111
2273
|
dependencies = [
|
|
2112
2274
|
"matchers",
|
|
2113
2275
|
"nu-ansi-term",
|
|
2114
2276
|
"once_cell",
|
|
2115
|
-
"regex",
|
|
2277
|
+
"regex-automata",
|
|
2116
2278
|
"serde",
|
|
2117
2279
|
"serde_json",
|
|
2118
2280
|
"sharded-slab",
|
|
@@ -2132,39 +2294,62 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
2132
2294
|
|
|
2133
2295
|
[[package]]
|
|
2134
2296
|
name = "tungstenite"
|
|
2135
|
-
version = "0.
|
|
2297
|
+
version = "0.21.0"
|
|
2298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2299
|
+
checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1"
|
|
2300
|
+
dependencies = [
|
|
2301
|
+
"byteorder",
|
|
2302
|
+
"bytes",
|
|
2303
|
+
"data-encoding",
|
|
2304
|
+
"http",
|
|
2305
|
+
"httparse",
|
|
2306
|
+
"log",
|
|
2307
|
+
"rand 0.8.5",
|
|
2308
|
+
"rustls 0.22.4",
|
|
2309
|
+
"rustls-pki-types",
|
|
2310
|
+
"sha1",
|
|
2311
|
+
"thiserror 1.0.69",
|
|
2312
|
+
"url",
|
|
2313
|
+
"utf-8",
|
|
2314
|
+
]
|
|
2315
|
+
|
|
2316
|
+
[[package]]
|
|
2317
|
+
name = "tungstenite"
|
|
2318
|
+
version = "0.28.0"
|
|
2136
2319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2137
|
-
checksum = "
|
|
2320
|
+
checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442"
|
|
2138
2321
|
dependencies = [
|
|
2139
2322
|
"bytes",
|
|
2140
2323
|
"data-encoding",
|
|
2141
2324
|
"http",
|
|
2142
2325
|
"httparse",
|
|
2143
2326
|
"log",
|
|
2144
|
-
"
|
|
2145
|
-
"
|
|
2327
|
+
"rand 0.9.2",
|
|
2328
|
+
"rustls 0.23.37",
|
|
2329
|
+
"rustls-pki-types",
|
|
2146
2330
|
"sha1",
|
|
2147
|
-
"thiserror 2.0.
|
|
2331
|
+
"thiserror 2.0.18",
|
|
2148
2332
|
"utf-8",
|
|
2333
|
+
"webpki-roots 0.26.11",
|
|
2149
2334
|
]
|
|
2150
2335
|
|
|
2151
2336
|
[[package]]
|
|
2152
2337
|
name = "typenum"
|
|
2153
|
-
version = "1.
|
|
2338
|
+
version = "1.19.0"
|
|
2154
2339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2155
|
-
checksum = "
|
|
2340
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
2156
2341
|
|
|
2157
2342
|
[[package]]
|
|
2158
2343
|
name = "unicode-ident"
|
|
2159
|
-
version = "1.0.
|
|
2344
|
+
version = "1.0.24"
|
|
2160
2345
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2161
|
-
checksum = "
|
|
2346
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
2162
2347
|
|
|
2163
2348
|
[[package]]
|
|
2164
|
-
name = "
|
|
2165
|
-
version = "0.2.
|
|
2349
|
+
name = "unicode-xid"
|
|
2350
|
+
version = "0.2.6"
|
|
2166
2351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2167
|
-
checksum = "
|
|
2352
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
2168
2353
|
|
|
2169
2354
|
[[package]]
|
|
2170
2355
|
name = "untrusted"
|
|
@@ -2174,14 +2359,15 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
|
2174
2359
|
|
|
2175
2360
|
[[package]]
|
|
2176
2361
|
name = "url"
|
|
2177
|
-
version = "2.5.
|
|
2362
|
+
version = "2.5.8"
|
|
2178
2363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2179
|
-
checksum = "
|
|
2364
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
2180
2365
|
dependencies = [
|
|
2181
2366
|
"form_urlencoded",
|
|
2182
2367
|
"idna",
|
|
2183
2368
|
"percent-encoding",
|
|
2184
2369
|
"serde",
|
|
2370
|
+
"serde_derive",
|
|
2185
2371
|
]
|
|
2186
2372
|
|
|
2187
2373
|
[[package]]
|
|
@@ -2190,12 +2376,6 @@ version = "0.7.6"
|
|
|
2190
2376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2191
2377
|
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
2192
2378
|
|
|
2193
|
-
[[package]]
|
|
2194
|
-
name = "utf16_iter"
|
|
2195
|
-
version = "1.0.5"
|
|
2196
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2197
|
-
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
2198
|
-
|
|
2199
2379
|
[[package]]
|
|
2200
2380
|
name = "utf8_iter"
|
|
2201
2381
|
version = "1.0.4"
|
|
@@ -2204,11 +2384,15 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
|
2204
2384
|
|
|
2205
2385
|
[[package]]
|
|
2206
2386
|
name = "uuid"
|
|
2207
|
-
version = "1.
|
|
2387
|
+
version = "1.21.0"
|
|
2208
2388
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2209
|
-
checksum = "
|
|
2389
|
+
checksum = "b672338555252d43fd2240c714dc444b8c6fb0a5c5335e65a07bba7742735ddb"
|
|
2210
2390
|
dependencies = [
|
|
2211
|
-
"
|
|
2391
|
+
"getrandom 0.4.1",
|
|
2392
|
+
"js-sys",
|
|
2393
|
+
"rand 0.9.2",
|
|
2394
|
+
"serde_core",
|
|
2395
|
+
"wasm-bindgen",
|
|
2212
2396
|
]
|
|
2213
2397
|
|
|
2214
2398
|
[[package]]
|
|
@@ -2217,12 +2401,6 @@ version = "0.1.1"
|
|
|
2217
2401
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2218
2402
|
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
2219
2403
|
|
|
2220
|
-
[[package]]
|
|
2221
|
-
name = "vcpkg"
|
|
2222
|
-
version = "0.2.15"
|
|
2223
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2224
|
-
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
2225
|
-
|
|
2226
2404
|
[[package]]
|
|
2227
2405
|
name = "version_check"
|
|
2228
2406
|
version = "0.9.5"
|
|
@@ -2240,52 +2418,49 @@ dependencies = [
|
|
|
2240
2418
|
|
|
2241
2419
|
[[package]]
|
|
2242
2420
|
name = "wasi"
|
|
2243
|
-
version = "0.11.
|
|
2421
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2244
2422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2245
|
-
checksum = "
|
|
2423
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2246
2424
|
|
|
2247
2425
|
[[package]]
|
|
2248
|
-
name = "
|
|
2249
|
-
version = "0.
|
|
2426
|
+
name = "wasip2"
|
|
2427
|
+
version = "1.0.2+wasi-0.2.9"
|
|
2250
2428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2251
|
-
checksum = "
|
|
2429
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
2252
2430
|
dependencies = [
|
|
2253
|
-
"wit-bindgen
|
|
2431
|
+
"wit-bindgen",
|
|
2254
2432
|
]
|
|
2255
2433
|
|
|
2256
2434
|
[[package]]
|
|
2257
|
-
name = "
|
|
2258
|
-
version = "0.
|
|
2435
|
+
name = "wasip3"
|
|
2436
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
2259
2437
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2260
|
-
checksum = "
|
|
2438
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
2261
2439
|
dependencies = [
|
|
2262
|
-
"
|
|
2263
|
-
"once_cell",
|
|
2264
|
-
"rustversion",
|
|
2265
|
-
"wasm-bindgen-macro",
|
|
2440
|
+
"wit-bindgen",
|
|
2266
2441
|
]
|
|
2267
2442
|
|
|
2268
2443
|
[[package]]
|
|
2269
|
-
name = "wasm-bindgen
|
|
2270
|
-
version = "0.2.
|
|
2444
|
+
name = "wasm-bindgen"
|
|
2445
|
+
version = "0.2.113"
|
|
2271
2446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2272
|
-
checksum = "
|
|
2447
|
+
checksum = "60722a937f594b7fde9adb894d7c092fc1bb6612897c46368d18e7a20208eff2"
|
|
2273
2448
|
dependencies = [
|
|
2274
|
-
"
|
|
2275
|
-
"
|
|
2276
|
-
"
|
|
2277
|
-
"
|
|
2278
|
-
"syn 2.0.101",
|
|
2449
|
+
"cfg-if",
|
|
2450
|
+
"once_cell",
|
|
2451
|
+
"rustversion",
|
|
2452
|
+
"wasm-bindgen-macro",
|
|
2279
2453
|
"wasm-bindgen-shared",
|
|
2280
2454
|
]
|
|
2281
2455
|
|
|
2282
2456
|
[[package]]
|
|
2283
2457
|
name = "wasm-bindgen-futures"
|
|
2284
|
-
version = "0.4.
|
|
2458
|
+
version = "0.4.63"
|
|
2285
2459
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2286
|
-
checksum = "
|
|
2460
|
+
checksum = "8a89f4650b770e4521aa6573724e2aed4704372151bd0de9d16a3bbabb87441a"
|
|
2287
2461
|
dependencies = [
|
|
2288
2462
|
"cfg-if",
|
|
2463
|
+
"futures-util",
|
|
2289
2464
|
"js-sys",
|
|
2290
2465
|
"once_cell",
|
|
2291
2466
|
"wasm-bindgen",
|
|
@@ -2294,9 +2469,9 @@ dependencies = [
|
|
|
2294
2469
|
|
|
2295
2470
|
[[package]]
|
|
2296
2471
|
name = "wasm-bindgen-macro"
|
|
2297
|
-
version = "0.2.
|
|
2472
|
+
version = "0.2.113"
|
|
2298
2473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2299
|
-
checksum = "
|
|
2474
|
+
checksum = "0fac8c6395094b6b91c4af293f4c79371c163f9a6f56184d2c9a85f5a95f3950"
|
|
2300
2475
|
dependencies = [
|
|
2301
2476
|
"quote",
|
|
2302
2477
|
"wasm-bindgen-macro-support",
|
|
@@ -2304,98 +2479,153 @@ dependencies = [
|
|
|
2304
2479
|
|
|
2305
2480
|
[[package]]
|
|
2306
2481
|
name = "wasm-bindgen-macro-support"
|
|
2307
|
-
version = "0.2.
|
|
2482
|
+
version = "0.2.113"
|
|
2308
2483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2309
|
-
checksum = "
|
|
2484
|
+
checksum = "ab3fabce6159dc20728033842636887e4877688ae94382766e00b180abac9d60"
|
|
2310
2485
|
dependencies = [
|
|
2486
|
+
"bumpalo",
|
|
2311
2487
|
"proc-macro2",
|
|
2312
2488
|
"quote",
|
|
2313
|
-
"syn 2.0.
|
|
2314
|
-
"wasm-bindgen-backend",
|
|
2489
|
+
"syn 2.0.117",
|
|
2315
2490
|
"wasm-bindgen-shared",
|
|
2316
2491
|
]
|
|
2317
2492
|
|
|
2318
2493
|
[[package]]
|
|
2319
2494
|
name = "wasm-bindgen-shared"
|
|
2320
|
-
version = "0.2.
|
|
2495
|
+
version = "0.2.113"
|
|
2321
2496
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2322
|
-
checksum = "
|
|
2497
|
+
checksum = "de0e091bdb824da87dc01d967388880d017a0a9bc4f3bdc0d86ee9f9336e3bb5"
|
|
2323
2498
|
dependencies = [
|
|
2324
2499
|
"unicode-ident",
|
|
2325
2500
|
]
|
|
2326
2501
|
|
|
2502
|
+
[[package]]
|
|
2503
|
+
name = "wasm-encoder"
|
|
2504
|
+
version = "0.244.0"
|
|
2505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2506
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
2507
|
+
dependencies = [
|
|
2508
|
+
"leb128fmt",
|
|
2509
|
+
"wasmparser",
|
|
2510
|
+
]
|
|
2511
|
+
|
|
2512
|
+
[[package]]
|
|
2513
|
+
name = "wasm-metadata"
|
|
2514
|
+
version = "0.244.0"
|
|
2515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2516
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
2517
|
+
dependencies = [
|
|
2518
|
+
"anyhow",
|
|
2519
|
+
"indexmap",
|
|
2520
|
+
"wasm-encoder",
|
|
2521
|
+
"wasmparser",
|
|
2522
|
+
]
|
|
2523
|
+
|
|
2524
|
+
[[package]]
|
|
2525
|
+
name = "wasmparser"
|
|
2526
|
+
version = "0.244.0"
|
|
2527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2528
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
2529
|
+
dependencies = [
|
|
2530
|
+
"bitflags",
|
|
2531
|
+
"hashbrown 0.15.5",
|
|
2532
|
+
"indexmap",
|
|
2533
|
+
"semver",
|
|
2534
|
+
]
|
|
2535
|
+
|
|
2327
2536
|
[[package]]
|
|
2328
2537
|
name = "web-sys"
|
|
2329
|
-
version = "0.3.
|
|
2538
|
+
version = "0.3.90"
|
|
2330
2539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2331
|
-
checksum = "
|
|
2540
|
+
checksum = "705eceb4ce901230f8625bd1d665128056ccbe4b7408faa625eec1ba80f59a97"
|
|
2332
2541
|
dependencies = [
|
|
2333
2542
|
"js-sys",
|
|
2334
2543
|
"wasm-bindgen",
|
|
2335
2544
|
]
|
|
2336
2545
|
|
|
2337
2546
|
[[package]]
|
|
2338
|
-
name = "
|
|
2339
|
-
version = "
|
|
2547
|
+
name = "web-time"
|
|
2548
|
+
version = "1.1.0"
|
|
2340
2549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
-
checksum = "
|
|
2550
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
2342
2551
|
dependencies = [
|
|
2343
|
-
"
|
|
2344
|
-
"
|
|
2552
|
+
"js-sys",
|
|
2553
|
+
"wasm-bindgen",
|
|
2345
2554
|
]
|
|
2346
2555
|
|
|
2347
2556
|
[[package]]
|
|
2348
|
-
name = "
|
|
2349
|
-
version = "0.
|
|
2557
|
+
name = "webpki-roots"
|
|
2558
|
+
version = "0.26.11"
|
|
2350
2559
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2351
|
-
checksum = "
|
|
2560
|
+
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
|
|
2561
|
+
dependencies = [
|
|
2562
|
+
"webpki-roots 1.0.6",
|
|
2563
|
+
]
|
|
2352
2564
|
|
|
2353
2565
|
[[package]]
|
|
2354
|
-
name = "
|
|
2355
|
-
version = "0.
|
|
2566
|
+
name = "webpki-roots"
|
|
2567
|
+
version = "1.0.6"
|
|
2356
2568
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2357
|
-
checksum = "
|
|
2569
|
+
checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
|
|
2570
|
+
dependencies = [
|
|
2571
|
+
"rustls-pki-types",
|
|
2572
|
+
]
|
|
2358
2573
|
|
|
2359
2574
|
[[package]]
|
|
2360
2575
|
name = "windows-core"
|
|
2361
|
-
version = "0.
|
|
2576
|
+
version = "0.62.2"
|
|
2362
2577
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2363
|
-
checksum = "
|
|
2578
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
2364
2579
|
dependencies = [
|
|
2365
|
-
"windows-
|
|
2580
|
+
"windows-implement",
|
|
2581
|
+
"windows-interface",
|
|
2582
|
+
"windows-link",
|
|
2583
|
+
"windows-result",
|
|
2584
|
+
"windows-strings",
|
|
2366
2585
|
]
|
|
2367
2586
|
|
|
2368
2587
|
[[package]]
|
|
2369
|
-
name = "windows-
|
|
2370
|
-
version = "0.
|
|
2588
|
+
name = "windows-implement"
|
|
2589
|
+
version = "0.60.2"
|
|
2371
2590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2372
|
-
checksum = "
|
|
2591
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
2592
|
+
dependencies = [
|
|
2593
|
+
"proc-macro2",
|
|
2594
|
+
"quote",
|
|
2595
|
+
"syn 2.0.117",
|
|
2596
|
+
]
|
|
2373
2597
|
|
|
2374
2598
|
[[package]]
|
|
2375
|
-
name = "windows-
|
|
2376
|
-
version = "0.
|
|
2599
|
+
name = "windows-interface"
|
|
2600
|
+
version = "0.59.3"
|
|
2377
2601
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2378
|
-
checksum = "
|
|
2602
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
2379
2603
|
dependencies = [
|
|
2380
|
-
"
|
|
2381
|
-
"
|
|
2382
|
-
"
|
|
2604
|
+
"proc-macro2",
|
|
2605
|
+
"quote",
|
|
2606
|
+
"syn 2.0.117",
|
|
2383
2607
|
]
|
|
2384
2608
|
|
|
2609
|
+
[[package]]
|
|
2610
|
+
name = "windows-link"
|
|
2611
|
+
version = "0.2.1"
|
|
2612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2613
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2614
|
+
|
|
2385
2615
|
[[package]]
|
|
2386
2616
|
name = "windows-result"
|
|
2387
|
-
version = "0.
|
|
2617
|
+
version = "0.4.1"
|
|
2388
2618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2389
|
-
checksum = "
|
|
2619
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
2390
2620
|
dependencies = [
|
|
2391
2621
|
"windows-link",
|
|
2392
2622
|
]
|
|
2393
2623
|
|
|
2394
2624
|
[[package]]
|
|
2395
2625
|
name = "windows-strings"
|
|
2396
|
-
version = "0.
|
|
2626
|
+
version = "0.5.1"
|
|
2397
2627
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2398
|
-
checksum = "
|
|
2628
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
2399
2629
|
dependencies = [
|
|
2400
2630
|
"windows-link",
|
|
2401
2631
|
]
|
|
@@ -2411,11 +2641,20 @@ dependencies = [
|
|
|
2411
2641
|
|
|
2412
2642
|
[[package]]
|
|
2413
2643
|
name = "windows-sys"
|
|
2414
|
-
version = "0.
|
|
2644
|
+
version = "0.60.2"
|
|
2415
2645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2416
|
-
checksum = "
|
|
2646
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
2417
2647
|
dependencies = [
|
|
2418
|
-
"windows-targets 0.
|
|
2648
|
+
"windows-targets 0.53.5",
|
|
2649
|
+
]
|
|
2650
|
+
|
|
2651
|
+
[[package]]
|
|
2652
|
+
name = "windows-sys"
|
|
2653
|
+
version = "0.61.2"
|
|
2654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2655
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2656
|
+
dependencies = [
|
|
2657
|
+
"windows-link",
|
|
2419
2658
|
]
|
|
2420
2659
|
|
|
2421
2660
|
[[package]]
|
|
@@ -2436,18 +2675,19 @@ dependencies = [
|
|
|
2436
2675
|
|
|
2437
2676
|
[[package]]
|
|
2438
2677
|
name = "windows-targets"
|
|
2439
|
-
version = "0.53.
|
|
2678
|
+
version = "0.53.5"
|
|
2440
2679
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2441
|
-
checksum = "
|
|
2680
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
2442
2681
|
dependencies = [
|
|
2443
|
-
"
|
|
2444
|
-
"
|
|
2445
|
-
"
|
|
2446
|
-
"
|
|
2447
|
-
"
|
|
2448
|
-
"
|
|
2449
|
-
"
|
|
2450
|
-
"
|
|
2682
|
+
"windows-link",
|
|
2683
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
2684
|
+
"windows_aarch64_msvc 0.53.1",
|
|
2685
|
+
"windows_i686_gnu 0.53.1",
|
|
2686
|
+
"windows_i686_gnullvm 0.53.1",
|
|
2687
|
+
"windows_i686_msvc 0.53.1",
|
|
2688
|
+
"windows_x86_64_gnu 0.53.1",
|
|
2689
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
2690
|
+
"windows_x86_64_msvc 0.53.1",
|
|
2451
2691
|
]
|
|
2452
2692
|
|
|
2453
2693
|
[[package]]
|
|
@@ -2458,9 +2698,9 @@ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
|
2458
2698
|
|
|
2459
2699
|
[[package]]
|
|
2460
2700
|
name = "windows_aarch64_gnullvm"
|
|
2461
|
-
version = "0.53.
|
|
2701
|
+
version = "0.53.1"
|
|
2462
2702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2463
|
-
checksum = "
|
|
2703
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
2464
2704
|
|
|
2465
2705
|
[[package]]
|
|
2466
2706
|
name = "windows_aarch64_msvc"
|
|
@@ -2470,9 +2710,9 @@ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
|
2470
2710
|
|
|
2471
2711
|
[[package]]
|
|
2472
2712
|
name = "windows_aarch64_msvc"
|
|
2473
|
-
version = "0.53.
|
|
2713
|
+
version = "0.53.1"
|
|
2474
2714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2475
|
-
checksum = "
|
|
2715
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
2476
2716
|
|
|
2477
2717
|
[[package]]
|
|
2478
2718
|
name = "windows_i686_gnu"
|
|
@@ -2482,9 +2722,9 @@ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
|
2482
2722
|
|
|
2483
2723
|
[[package]]
|
|
2484
2724
|
name = "windows_i686_gnu"
|
|
2485
|
-
version = "0.53.
|
|
2725
|
+
version = "0.53.1"
|
|
2486
2726
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2487
|
-
checksum = "
|
|
2727
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
2488
2728
|
|
|
2489
2729
|
[[package]]
|
|
2490
2730
|
name = "windows_i686_gnullvm"
|
|
@@ -2494,9 +2734,9 @@ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
|
2494
2734
|
|
|
2495
2735
|
[[package]]
|
|
2496
2736
|
name = "windows_i686_gnullvm"
|
|
2497
|
-
version = "0.53.
|
|
2737
|
+
version = "0.53.1"
|
|
2498
2738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2499
|
-
checksum = "
|
|
2739
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
2500
2740
|
|
|
2501
2741
|
[[package]]
|
|
2502
2742
|
name = "windows_i686_msvc"
|
|
@@ -2506,9 +2746,9 @@ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
|
2506
2746
|
|
|
2507
2747
|
[[package]]
|
|
2508
2748
|
name = "windows_i686_msvc"
|
|
2509
|
-
version = "0.53.
|
|
2749
|
+
version = "0.53.1"
|
|
2510
2750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2511
|
-
checksum = "
|
|
2751
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
2512
2752
|
|
|
2513
2753
|
[[package]]
|
|
2514
2754
|
name = "windows_x86_64_gnu"
|
|
@@ -2518,9 +2758,9 @@ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
|
2518
2758
|
|
|
2519
2759
|
[[package]]
|
|
2520
2760
|
name = "windows_x86_64_gnu"
|
|
2521
|
-
version = "0.53.
|
|
2761
|
+
version = "0.53.1"
|
|
2522
2762
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2523
|
-
checksum = "
|
|
2763
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
2524
2764
|
|
|
2525
2765
|
[[package]]
|
|
2526
2766
|
name = "windows_x86_64_gnullvm"
|
|
@@ -2530,9 +2770,9 @@ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
|
2530
2770
|
|
|
2531
2771
|
[[package]]
|
|
2532
2772
|
name = "windows_x86_64_gnullvm"
|
|
2533
|
-
version = "0.53.
|
|
2773
|
+
version = "0.53.1"
|
|
2534
2774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2535
|
-
checksum = "
|
|
2775
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
2536
2776
|
|
|
2537
2777
|
[[package]]
|
|
2538
2778
|
name = "windows_x86_64_msvc"
|
|
@@ -2542,128 +2782,208 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
|
2542
2782
|
|
|
2543
2783
|
[[package]]
|
|
2544
2784
|
name = "windows_x86_64_msvc"
|
|
2545
|
-
version = "0.53.
|
|
2785
|
+
version = "0.53.1"
|
|
2546
2786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2547
|
-
checksum = "
|
|
2787
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
2548
2788
|
|
|
2549
2789
|
[[package]]
|
|
2550
|
-
name = "
|
|
2551
|
-
version = "0.
|
|
2790
|
+
name = "winnow"
|
|
2791
|
+
version = "0.7.14"
|
|
2552
2792
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2553
|
-
checksum = "
|
|
2793
|
+
checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
|
|
2554
2794
|
dependencies = [
|
|
2555
|
-
"
|
|
2795
|
+
"memchr",
|
|
2556
2796
|
]
|
|
2557
2797
|
|
|
2558
2798
|
[[package]]
|
|
2559
|
-
name = "
|
|
2560
|
-
version = "
|
|
2799
|
+
name = "wit-bindgen"
|
|
2800
|
+
version = "0.51.0"
|
|
2561
2801
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2562
|
-
checksum = "
|
|
2802
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
2803
|
+
dependencies = [
|
|
2804
|
+
"wit-bindgen-rust-macro",
|
|
2805
|
+
]
|
|
2563
2806
|
|
|
2564
2807
|
[[package]]
|
|
2565
|
-
name = "
|
|
2566
|
-
version = "0.
|
|
2808
|
+
name = "wit-bindgen-core"
|
|
2809
|
+
version = "0.51.0"
|
|
2567
2810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2568
|
-
checksum = "
|
|
2811
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
2812
|
+
dependencies = [
|
|
2813
|
+
"anyhow",
|
|
2814
|
+
"heck",
|
|
2815
|
+
"wit-parser",
|
|
2816
|
+
]
|
|
2569
2817
|
|
|
2570
2818
|
[[package]]
|
|
2571
|
-
name = "
|
|
2572
|
-
version = "0.
|
|
2819
|
+
name = "wit-bindgen-rust"
|
|
2820
|
+
version = "0.51.0"
|
|
2573
2821
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2574
|
-
checksum = "
|
|
2822
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
2575
2823
|
dependencies = [
|
|
2576
|
-
"
|
|
2577
|
-
"
|
|
2578
|
-
"
|
|
2579
|
-
"
|
|
2824
|
+
"anyhow",
|
|
2825
|
+
"heck",
|
|
2826
|
+
"indexmap",
|
|
2827
|
+
"prettyplease",
|
|
2828
|
+
"syn 2.0.117",
|
|
2829
|
+
"wasm-metadata",
|
|
2830
|
+
"wit-bindgen-core",
|
|
2831
|
+
"wit-component",
|
|
2580
2832
|
]
|
|
2581
2833
|
|
|
2582
2834
|
[[package]]
|
|
2583
|
-
name = "
|
|
2584
|
-
version = "0.
|
|
2835
|
+
name = "wit-bindgen-rust-macro"
|
|
2836
|
+
version = "0.51.0"
|
|
2585
2837
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2586
|
-
checksum = "
|
|
2838
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
2587
2839
|
dependencies = [
|
|
2840
|
+
"anyhow",
|
|
2841
|
+
"prettyplease",
|
|
2588
2842
|
"proc-macro2",
|
|
2589
2843
|
"quote",
|
|
2590
|
-
"syn 2.0.
|
|
2591
|
-
"
|
|
2844
|
+
"syn 2.0.117",
|
|
2845
|
+
"wit-bindgen-core",
|
|
2846
|
+
"wit-bindgen-rust",
|
|
2592
2847
|
]
|
|
2593
2848
|
|
|
2594
2849
|
[[package]]
|
|
2595
|
-
name = "
|
|
2596
|
-
version = "0.
|
|
2850
|
+
name = "wit-component"
|
|
2851
|
+
version = "0.244.0"
|
|
2597
2852
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2598
|
-
checksum = "
|
|
2853
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
2599
2854
|
dependencies = [
|
|
2600
|
-
"
|
|
2601
|
-
"
|
|
2855
|
+
"anyhow",
|
|
2856
|
+
"bitflags",
|
|
2857
|
+
"indexmap",
|
|
2858
|
+
"log",
|
|
2859
|
+
"serde",
|
|
2860
|
+
"serde_derive",
|
|
2861
|
+
"serde_json",
|
|
2862
|
+
"wasm-encoder",
|
|
2863
|
+
"wasm-metadata",
|
|
2864
|
+
"wasmparser",
|
|
2865
|
+
"wit-parser",
|
|
2602
2866
|
]
|
|
2603
2867
|
|
|
2604
2868
|
[[package]]
|
|
2605
|
-
name = "
|
|
2606
|
-
version = "0.
|
|
2869
|
+
name = "wit-parser"
|
|
2870
|
+
version = "0.244.0"
|
|
2871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2872
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
2873
|
+
dependencies = [
|
|
2874
|
+
"anyhow",
|
|
2875
|
+
"id-arena",
|
|
2876
|
+
"indexmap",
|
|
2877
|
+
"log",
|
|
2878
|
+
"semver",
|
|
2879
|
+
"serde",
|
|
2880
|
+
"serde_derive",
|
|
2881
|
+
"serde_json",
|
|
2882
|
+
"unicode-xid",
|
|
2883
|
+
"wasmparser",
|
|
2884
|
+
]
|
|
2885
|
+
|
|
2886
|
+
[[package]]
|
|
2887
|
+
name = "writeable"
|
|
2888
|
+
version = "0.6.2"
|
|
2889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2890
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
2891
|
+
|
|
2892
|
+
[[package]]
|
|
2893
|
+
name = "wyz"
|
|
2894
|
+
version = "0.5.1"
|
|
2607
2895
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2608
|
-
checksum = "
|
|
2896
|
+
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
|
2609
2897
|
dependencies = [
|
|
2610
|
-
"
|
|
2898
|
+
"tap",
|
|
2611
2899
|
]
|
|
2612
2900
|
|
|
2613
2901
|
[[package]]
|
|
2614
|
-
name = "
|
|
2615
|
-
version = "0.
|
|
2902
|
+
name = "yoke"
|
|
2903
|
+
version = "0.8.1"
|
|
2904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2905
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
2906
|
+
dependencies = [
|
|
2907
|
+
"stable_deref_trait",
|
|
2908
|
+
"yoke-derive",
|
|
2909
|
+
"zerofrom",
|
|
2910
|
+
]
|
|
2911
|
+
|
|
2912
|
+
[[package]]
|
|
2913
|
+
name = "yoke-derive"
|
|
2914
|
+
version = "0.8.1"
|
|
2616
2915
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2617
|
-
checksum = "
|
|
2916
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
2618
2917
|
dependencies = [
|
|
2619
2918
|
"proc-macro2",
|
|
2620
2919
|
"quote",
|
|
2621
|
-
"syn 2.0.
|
|
2920
|
+
"syn 2.0.117",
|
|
2921
|
+
"synstructure",
|
|
2922
|
+
]
|
|
2923
|
+
|
|
2924
|
+
[[package]]
|
|
2925
|
+
name = "zerocopy"
|
|
2926
|
+
version = "0.8.40"
|
|
2927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2928
|
+
checksum = "a789c6e490b576db9f7e6b6d661bcc9799f7c0ac8352f56ea20193b2681532e5"
|
|
2929
|
+
dependencies = [
|
|
2930
|
+
"zerocopy-derive",
|
|
2622
2931
|
]
|
|
2623
2932
|
|
|
2624
2933
|
[[package]]
|
|
2625
2934
|
name = "zerocopy-derive"
|
|
2626
|
-
version = "0.8.
|
|
2935
|
+
version = "0.8.40"
|
|
2627
2936
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2628
|
-
checksum = "
|
|
2937
|
+
checksum = "f65c489a7071a749c849713807783f70672b28094011623e200cb86dcb835953"
|
|
2629
2938
|
dependencies = [
|
|
2630
2939
|
"proc-macro2",
|
|
2631
2940
|
"quote",
|
|
2632
|
-
"syn 2.0.
|
|
2941
|
+
"syn 2.0.117",
|
|
2633
2942
|
]
|
|
2634
2943
|
|
|
2635
2944
|
[[package]]
|
|
2636
2945
|
name = "zerofrom"
|
|
2637
|
-
version = "0.1.
|
|
2946
|
+
version = "0.1.6"
|
|
2638
2947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2639
|
-
checksum = "
|
|
2948
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
2640
2949
|
dependencies = [
|
|
2641
2950
|
"zerofrom-derive",
|
|
2642
2951
|
]
|
|
2643
2952
|
|
|
2644
2953
|
[[package]]
|
|
2645
2954
|
name = "zerofrom-derive"
|
|
2646
|
-
version = "0.1.
|
|
2955
|
+
version = "0.1.6"
|
|
2647
2956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2648
|
-
checksum = "
|
|
2957
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
2649
2958
|
dependencies = [
|
|
2650
2959
|
"proc-macro2",
|
|
2651
2960
|
"quote",
|
|
2652
|
-
"syn 2.0.
|
|
2961
|
+
"syn 2.0.117",
|
|
2653
2962
|
"synstructure",
|
|
2654
2963
|
]
|
|
2655
2964
|
|
|
2656
2965
|
[[package]]
|
|
2657
2966
|
name = "zeroize"
|
|
2658
|
-
version = "1.8.
|
|
2967
|
+
version = "1.8.2"
|
|
2968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2969
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
2970
|
+
|
|
2971
|
+
[[package]]
|
|
2972
|
+
name = "zerotrie"
|
|
2973
|
+
version = "0.2.3"
|
|
2659
2974
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2660
|
-
checksum = "
|
|
2975
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
2976
|
+
dependencies = [
|
|
2977
|
+
"displaydoc",
|
|
2978
|
+
"yoke",
|
|
2979
|
+
"zerofrom",
|
|
2980
|
+
]
|
|
2661
2981
|
|
|
2662
2982
|
[[package]]
|
|
2663
2983
|
name = "zerovec"
|
|
2664
|
-
version = "0.
|
|
2984
|
+
version = "0.11.5"
|
|
2665
2985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2666
|
-
checksum = "
|
|
2986
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
2667
2987
|
dependencies = [
|
|
2668
2988
|
"yoke",
|
|
2669
2989
|
"zerofrom",
|
|
@@ -2672,11 +2992,17 @@ dependencies = [
|
|
|
2672
2992
|
|
|
2673
2993
|
[[package]]
|
|
2674
2994
|
name = "zerovec-derive"
|
|
2675
|
-
version = "0.
|
|
2995
|
+
version = "0.11.2"
|
|
2676
2996
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2677
|
-
checksum = "
|
|
2997
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
2678
2998
|
dependencies = [
|
|
2679
2999
|
"proc-macro2",
|
|
2680
3000
|
"quote",
|
|
2681
|
-
"syn 2.0.
|
|
3001
|
+
"syn 2.0.117",
|
|
2682
3002
|
]
|
|
3003
|
+
|
|
3004
|
+
[[package]]
|
|
3005
|
+
name = "zmij"
|
|
3006
|
+
version = "1.0.21"
|
|
3007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3008
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|