ddx-python 0.9.0__tar.gz → 1.0.1__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.
- {ddx_python-0.9.0 → ddx_python-1.0.1}/Cargo.lock +287 -266
- {ddx_python-0.9.0 → ddx_python-1.0.1}/PKG-INFO +3 -2
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/Cargo.toml +5 -6
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/global.rs +8 -1
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/types/accounting.rs +16 -5
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/types/auth.rs +4 -12
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/types/exported.rs +9 -3
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/types/global.rs +16 -5
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/types/identifiers.rs +8 -8
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/types/primitives/numbers.rs +102 -50
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/types/primitives.rs +46 -28
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/crypto/Cargo.toml +2 -2
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/crypto/src/lib.rs +36 -20
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/macros/src/lib.rs +24 -6
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/Cargo.toml +5 -5
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/constants.rs +5 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/execution/test_utils.rs +6 -20
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/specs/index_fund.rs +5 -2
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/specs/quarterly_expiry_future.rs +10 -3
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/specs/types.rs +13 -7
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/specs.rs +21 -4
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/tree/shared_smt.rs +30 -19
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/types/accounting/balance.rs +4 -1
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/types/accounting.rs +31 -47
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/types/checkpoint.rs +45 -19
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/types/identifiers.rs +72 -14
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/types/primitives.rs +49 -13
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/types/request.rs +113 -55
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/types/state/exported.rs +313 -335
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/types/state/tradable_product.rs +26 -24
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/types/state/trader.rs +38 -39
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/types/state.rs +10 -4
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/types/transaction.rs +6 -5
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/util/eip712.rs +2 -2
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/Cargo.toml +10 -5
- ddx_python-1.0.1/ddx-python/fuzzing/ddx_python_fuzzing.egg-info/PKG-INFO +66 -0
- ddx_python-1.0.1/ddx-python/fuzzing/ddx_python_fuzzing.egg-info/SOURCES.txt +13 -0
- ddx_python-1.0.1/ddx-python/fuzzing/ddx_python_fuzzing.egg-info/dependency_links.txt +1 -0
- ddx_python-1.0.1/ddx-python/fuzzing/ddx_python_fuzzing.egg-info/requires.txt +32 -0
- ddx_python-1.0.1/ddx-python/fuzzing/ddx_python_fuzzing.egg-info/top_level.txt +1 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/pyproject.toml +12 -9
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/whitebox_fuzzing/chaos.conf.json.template +1 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/whitebox_fuzzing/marketmaker.conf.json.template +1 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/whitebox_fuzzing/markettaker.conf.json.template +1 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies/chaos_bot.py +1 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies/chaos_strategies/full_suite.py +24 -36
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies/chaos_strategies/helpers.py +0 -61
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies/chaos_strategies/large_deposit.py +5 -15
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies/chaos_strategies/trader_bot.py +22 -34
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies/market_maker.py +31 -29
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies/market_taker.py +4 -3
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies/sample_chaos_bot.py +1 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies/sample_mm_auditor_bot.py +2 -42
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/whitebox_fuzzing/test_utils/test_derivadex_client.py +9 -9
- ddx_python-0.9.0/ddx-python/fuzzing/whitebox_fuzzing/test_utils/test_kyc_resource.py → ddx_python-1.0.1/ddx-python/fuzzing/whitebox_fuzzing/test_utils/test_kyc_client.py +2 -2
- ddx_python-0.9.0/ddx-python/fuzzing/whitebox_fuzzing/test_utils/test_on_chain_resource.py → ddx_python-1.0.1/ddx-python/fuzzing/whitebox_fuzzing/test_utils/test_on_chain_client.py +3 -4
- ddx_python-1.0.1/ddx-python/mocks/ddx_python_mocks.egg-info/PKG-INFO +107 -0
- ddx_python-1.0.1/ddx-python/mocks/ddx_python_mocks.egg-info/SOURCES.txt +11 -0
- ddx_python-1.0.1/ddx-python/mocks/ddx_python_mocks.egg-info/dependency_links.txt +1 -0
- ddx_python-1.0.1/ddx-python/mocks/ddx_python_mocks.egg-info/requires.txt +34 -0
- ddx_python-1.0.1/ddx-python/mocks/ddx_python_mocks.egg-info/top_level.txt +2 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/mocks/mock_kyc.py +28 -11
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/mocks/pyproject.toml +12 -12
- ddx_python-1.0.1/ddx-python/notebooks/ddx_python_notebooks.egg-info/PKG-INFO +105 -0
- ddx_python-1.0.1/ddx-python/notebooks/ddx_python_notebooks.egg-info/SOURCES.txt +8 -0
- ddx_python-1.0.1/ddx-python/notebooks/ddx_python_notebooks.egg-info/dependency_links.txt +1 -0
- ddx_python-1.0.1/ddx-python/notebooks/ddx_python_notebooks.egg-info/requires.txt +37 -0
- ddx_python-1.0.1/ddx-python/notebooks/ddx_python_notebooks.egg-info/top_level.txt +1 -0
- ddx_python-1.0.1/ddx-python/notebooks/monitoring_dashboard.py +606 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/notebooks/multi_node_diverge.ipynb +1 -1
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/notebooks/pyproject.toml +17 -12
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/__init__.py +17 -10
- ddx_python-1.0.1/ddx-python/python/ddx/_rust/__init__.pyi +2009 -0
- ddx_python-1.0.1/ddx-python/python/ddx/_rust/common/__init__.pyi +17 -0
- ddx_python-1.0.1/ddx-python/python/ddx/_rust/common/accounting.pyi +6 -0
- ddx_python-1.0.1/ddx-python/python/ddx/_rust/common/enums.pyi +3 -0
- ddx_python-1.0.1/ddx-python/python/ddx/_rust/common/requests/__init__.pyi +21 -0
- ddx_python-1.0.1/ddx-python/python/ddx/_rust/common/requests/intents.pyi +19 -0
- ddx_python-1.0.1/ddx-python/python/ddx/_rust/common/specs.pyi +17 -0
- ddx_python-1.0.1/ddx-python/python/ddx/_rust/common/state/__init__.pyi +41 -0
- ddx_python-1.0.1/ddx-python/python/ddx/_rust/common/state/keys.pyi +29 -0
- ddx_python-1.0.1/ddx-python/python/ddx/_rust/common/transactions.pyi +7 -0
- ddx_python-1.0.1/ddx-python/python/ddx/_rust/decimal.pyi +3 -0
- ddx_python-1.0.1/ddx-python/python/ddx/_rust/h256.pyi +3 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1/ddx-python}/python/ddx/auditor/auditor_driver.py +29 -15
- {ddx_python-0.9.0 → ddx_python-1.0.1/ddx-python}/python/ddx/common/market_specs.py +9 -3
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/funding.py +2 -3
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/price_checkpoint.py +8 -5
- {ddx_python-0.9.0 → ddx_python-1.0.1/ddx-python}/python/ddx/common/transactions/strategy_update.py +1 -1
- {ddx_python-0.9.0 → ddx_python-1.0.1/ddx-python}/python/ddx/derivadex_client.py +73 -66
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/realtime_client/__init__.py +0 -1
- ddx_python-1.0.1/ddx-python/python/ddx/realtime_client/config.py +2 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/realtime_client/models/__init__.py +50 -10
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/realtime_client/realtime_client.py +34 -23
- ddx_python-1.0.1/ddx-python/python/ddx/realtime_client/tests/realtime_client_tests.py +420 -0
- ddx_python-0.9.0/python/ddx/rest_client/resources/base_resource.py → ddx_python-1.0.1/ddx-python/python/ddx/rest_client/clients/base_client.py +4 -4
- ddx_python-1.0.1/ddx-python/python/ddx/rest_client/clients/market_client.py +1241 -0
- ddx_python-0.9.0/python/ddx/rest_client/resources/on_chain_resource.py → ddx_python-1.0.1/ddx-python/python/ddx/rest_client/clients/on_chain_client.py +3 -4
- ddx_python-0.9.0/python/ddx/rest_client/resources/trade_resource.py → ddx_python-1.0.1/ddx-python/python/ddx/rest_client/clients/signed_client.py +15 -10
- ddx_python-0.9.0/python/ddx/rest_client/resources/system_resource.py → ddx_python-1.0.1/ddx-python/python/ddx/rest_client/clients/system_client.py +428 -363
- ddx_python-1.0.1/ddx-python/python/ddx/rest_client/clients/trade_client.py +335 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/rest_client/constants/endpoints.py +39 -52
- ddx_python-1.0.1/ddx-python/python/ddx/rest_client/models/market.py +683 -0
- ddx_python-0.9.0/python/ddx/rest_client/models/trade.py → ddx_python-1.0.1/ddx-python/python/ddx/rest_client/models/signed.py +8 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1/ddx-python}/python/ddx/rest_client/models/system.py +56 -54
- ddx_python-1.0.1/ddx-python/python/ddx/rest_client/models/trade.py +140 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/examples/deposit_usdc.py +8 -6
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/examples/rest_quickstart.py +12 -12
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/examples/ws_quickstart.py +2 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/execution/block.py +7 -3
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/execution/liquidation.py +16 -12
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/execution/settlement.py +10 -5
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/market_data_driver/market_data_driver.py +10 -5
- ddx_python-1.0.1/ddx-python/src/bin/stub_gen.rs +7 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/src/ddx.rs +20 -16
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/src/decimal.rs +3 -3
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/src/h256.rs +3 -3
- ddx_python-1.0.1/ddx-python/src/lib.rs +37 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/pyproject.toml +9 -4
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/__init__.py +17 -10
- ddx_python-1.0.1/python/ddx/_rust/__init__.pyi +2009 -0
- ddx_python-1.0.1/python/ddx/_rust/common/__init__.pyi +17 -0
- ddx_python-1.0.1/python/ddx/_rust/common/accounting.pyi +6 -0
- ddx_python-1.0.1/python/ddx/_rust/common/enums.pyi +3 -0
- ddx_python-1.0.1/python/ddx/_rust/common/requests/__init__.pyi +21 -0
- ddx_python-1.0.1/python/ddx/_rust/common/requests/intents.pyi +19 -0
- ddx_python-1.0.1/python/ddx/_rust/common/specs.pyi +17 -0
- ddx_python-1.0.1/python/ddx/_rust/common/state/__init__.pyi +41 -0
- ddx_python-1.0.1/python/ddx/_rust/common/state/keys.pyi +29 -0
- ddx_python-1.0.1/python/ddx/_rust/common/transactions.pyi +7 -0
- ddx_python-1.0.1/python/ddx/_rust/decimal.pyi +3 -0
- ddx_python-1.0.1/python/ddx/_rust/h256.pyi +3 -0
- {ddx_python-0.9.0/ddx-python → ddx_python-1.0.1}/python/ddx/auditor/auditor_driver.py +29 -15
- {ddx_python-0.9.0/ddx-python → ddx_python-1.0.1}/python/ddx/common/market_specs.py +9 -3
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/funding.py +2 -3
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/price_checkpoint.py +8 -5
- {ddx_python-0.9.0/ddx-python → ddx_python-1.0.1}/python/ddx/common/transactions/strategy_update.py +1 -1
- {ddx_python-0.9.0/ddx-python → ddx_python-1.0.1}/python/ddx/derivadex_client.py +73 -66
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/realtime_client/__init__.py +0 -1
- ddx_python-1.0.1/python/ddx/realtime_client/config.py +2 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/realtime_client/models/__init__.py +50 -10
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/realtime_client/realtime_client.py +34 -23
- ddx_python-1.0.1/python/ddx/realtime_client/tests/realtime_client_tests.py +420 -0
- ddx_python-0.9.0/ddx-python/python/ddx/rest_client/resources/base_resource.py → ddx_python-1.0.1/python/ddx/rest_client/clients/base_client.py +4 -4
- ddx_python-1.0.1/python/ddx/rest_client/clients/market_client.py +1241 -0
- ddx_python-0.9.0/ddx-python/python/ddx/rest_client/resources/on_chain_resource.py → ddx_python-1.0.1/python/ddx/rest_client/clients/on_chain_client.py +3 -4
- ddx_python-0.9.0/ddx-python/python/ddx/rest_client/resources/trade_resource.py → ddx_python-1.0.1/python/ddx/rest_client/clients/signed_client.py +15 -10
- ddx_python-0.9.0/ddx-python/python/ddx/rest_client/resources/system_resource.py → ddx_python-1.0.1/python/ddx/rest_client/clients/system_client.py +428 -363
- ddx_python-1.0.1/python/ddx/rest_client/clients/trade_client.py +335 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/rest_client/constants/endpoints.py +39 -52
- ddx_python-1.0.1/python/ddx/rest_client/models/__init__.py +0 -0
- ddx_python-1.0.1/python/ddx/rest_client/models/market.py +683 -0
- ddx_python-0.9.0/ddx-python/python/ddx/rest_client/models/trade.py → ddx_python-1.0.1/python/ddx/rest_client/models/signed.py +8 -0
- {ddx_python-0.9.0/ddx-python → ddx_python-1.0.1}/python/ddx/rest_client/models/system.py +56 -54
- ddx_python-1.0.1/python/ddx/rest_client/models/trade.py +140 -0
- ddx_python-1.0.1/python/ddx/rest_client/utils/__init__.py +0 -0
- ddx_python-0.9.0/ddx-python/python/ddx/__init__.py.~HEAD~2~ +0 -57
- ddx_python-0.9.0/ddx-python/python/ddx/realtime_client/config.py +0 -7
- ddx_python-0.9.0/ddx-python/python/ddx/realtime_client/tests/realtime_client_tests.py +0 -438
- ddx_python-0.9.0/ddx-python/python/ddx/rest_client/models/account.py +0 -329
- ddx_python-0.9.0/ddx-python/python/ddx/rest_client/models/market.py +0 -488
- ddx_python-0.9.0/ddx-python/python/ddx/rest_client/resources/account_resource.py +0 -783
- ddx_python-0.9.0/ddx-python/python/ddx/rest_client/resources/market_resource.py +0 -950
- ddx_python-0.9.0/ddx-python/src/lib.rs +0 -34
- ddx_python-0.9.0/python/ddx/__init__.py.~HEAD~2~ +0 -57
- ddx_python-0.9.0/python/ddx/realtime_client/config.py +0 -7
- ddx_python-0.9.0/python/ddx/realtime_client/tests/realtime_client_tests.py +0 -438
- ddx_python-0.9.0/python/ddx/rest_client/models/account.py +0 -329
- ddx_python-0.9.0/python/ddx/rest_client/models/market.py +0 -488
- ddx_python-0.9.0/python/ddx/rest_client/resources/account_resource.py +0 -783
- ddx_python-0.9.0/python/ddx/rest_client/resources/market_resource.py +0 -950
- {ddx_python-0.9.0 → ddx_python-1.0.1}/Cargo.toml +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/constants.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/error.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/lib.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/types/contract.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/types/mod.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/types/node.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/types/state.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/types/transaction.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/util/backoff.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/util/mem.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/util/mod.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/util/tokenize.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/common/src/util/tracing.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/crypto/src/eip712.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/crypto/src/encryption.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/crypto/src/signing.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/crypto/src/test_accounts.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/macros/Cargo.toml +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/specs/Cargo.toml +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/specs/src/eval.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/specs/src/float_parser.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/specs/src/lib.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/core/specs/src/str_parser.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/execution/accounting.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/execution/error.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/execution/mod.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/execution/validation.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/lib.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/tree/README.md +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/tree/mod.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/tree/shared_store.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/trusted_settings.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/types/clock.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/types/contract_events.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/types/ethereum.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/types/mod.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/util/convert.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/util/env.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/util/mod.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-operator/core/src/util/serde.rs +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/README.md +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/whitebox_fuzzing/auditor/auditor.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/whitebox_fuzzing/auditor.conf.json.template +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies/README.md +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies/chaos_strategies/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/whitebox_fuzzing/sample_strategies/chaos_strategies/spawner.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/fuzzing/whitebox_fuzzing/test_utils/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/mocks/MANIFEST.in +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/mocks/README.md +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/mocks/price_feed_fuzzer.conf.json.template +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/mocks/price_feed_fuzzer.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/notebooks/README.md +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/notebooks/auditor_replay.ipynb +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/notebooks/exchange_dashboard.ipynb +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/notebooks/frontend_dashboard.ipynb +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/notebooks/performance_dashboard.ipynb +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/notebooks/state_root_mismatch.ipynb +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/README.md +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/app_config/addresses.json +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/auditor/README.md +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/auditor/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/auditor/websocket_message.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/epoch_params.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/fill_context.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/item_utils.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/logging.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/trade_mining_params.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transaction_utils.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/advance_epoch.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/advance_settlement_epoch.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/all_price_checkpoints.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/cancel.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/cancel_all.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/complete_fill.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/disaster_recovery.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/event.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/fee_distribution.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/futures_expiry.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/genesis.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/inner/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/inner/adl_outcome.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/inner/fill.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/inner/liquidated_position.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/inner/liquidation_entry.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/inner/liquidation_fill.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/inner/outcome.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/inner/trade_fill.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/insurance_fund_update.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/insurance_fund_withdraw.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/liquidation.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/partial_fill.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/pnl_realization.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/post.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/post_order.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/signer_registered.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/specs_update.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/tradable_product_update.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/trade_mining.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/trader_update.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/withdraw.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/transactions/withdraw_ddx.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/common/utils.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/config.py +0 -0
- /ddx_python-0.9.0/ddx-python/logs/pytest.log → /ddx_python-1.0.1/ddx-python/python/ddx/py.typed +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/realtime_client/logs/pytest.log +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/rest_client/__init__.py +0 -0
- {ddx_python-0.9.0/ddx-python/python/ddx/rest_client/constants → ddx_python-1.0.1/ddx-python/python/ddx/rest_client/clients}/__init__.py +0 -0
- {ddx_python-0.9.0/ddx-python/python/ddx/rest_client/contracts → ddx_python-1.0.1/ddx-python/python/ddx/rest_client/constants}/__init__.py +0 -0
- {ddx_python-0.9.0/ddx-python/python/ddx/rest_client/exceptions → ddx_python-1.0.1/ddx-python/python/ddx/rest_client/contracts}/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/rest_client/contracts/checkpoint/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/rest_client/contracts/ddx/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/rest_client/contracts/dummy_token/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/rest_client/contracts/i_collateral/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/rest_client/contracts/i_stake/__init__.py +0 -0
- {ddx_python-0.9.0/ddx-python/python/ddx/rest_client/http → ddx_python-1.0.1/ddx-python/python/ddx/rest_client/exceptions}/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/rest_client/exceptions/exceptions.py +0 -0
- {ddx_python-0.9.0/ddx-python/python/ddx/rest_client/models → ddx_python-1.0.1/ddx-python/python/ddx/rest_client/http}/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/rest_client/http/http_client.py +0 -0
- {ddx_python-0.9.0/ddx-python/python/ddx/rest_client/resources → ddx_python-1.0.1/ddx-python/python/ddx/rest_client/models}/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/rest_client/utils/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/ddx/rest_client/utils/encryption_utils.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/examples/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/fuzz-compose.template.ini +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/common_tests/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/common_tests/liquidation.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/common_tests/matching.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/common_tests/pnl_realization.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/common_tests/trade_mining.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/conftest.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/decimal/Add_000_001.csv +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/decimal/Add_100_100.csv +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/decimal/Add_111_111.csv +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/decimal/Div_100_100.csv +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/decimal/Div_101_010.csv +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/decimal/Div_110_000.csv +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/decimal/Div_111_110.csv +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/decimal/Div_111_111.csv +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/decimal/Mul_001_000.csv +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/decimal/Mul_010_111.csv +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/decimal/Mul_100_101.csv +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/decimal/Mul_110_001.csv +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/decimal/Mul_111_111.csv +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/decimal/Rem_101_101.csv +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/decimal/Rem_111_000.csv +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/decimal/Rem_111_110.csv +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/decimal/Sub_101_110.csv +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/decimal/Sub_110_011.csv +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/decimal/Sub_111_111.csv +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/futures_tests.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/general_tests.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/account.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/execution/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/execution/listing.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/execution/matching.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/execution/state.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/execution/trade_mining.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/execution/trader.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/execution/utils.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/market_aware_account.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/market_data_driver/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/market_data_driver/custom_market_data_driver.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/market_data_driver/exchange_market_data_driver.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/market_data_driver/tick.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/matchers/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/matchers/account.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/matchers/fuzzed_account.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/matchers/tick.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/matchers/utils.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/order_book.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/store.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/harness/wallet.py +0 -0
- {ddx_python-0.9.0/python/ddx/realtime_client → ddx_python-1.0.1/ddx-python/python/tests}/logs/pytest.log +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/mock_transactions.json +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/perps_tests.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/python_only.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/test_ddx_common.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/tests/test_decimal.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/utils/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/ddx-python/python/utils/utils.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/app_config/addresses.json +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/auditor/README.md +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/auditor/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/auditor/websocket_message.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/epoch_params.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/fill_context.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/item_utils.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/logging.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/trade_mining_params.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transaction_utils.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/advance_epoch.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/advance_settlement_epoch.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/all_price_checkpoints.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/cancel.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/cancel_all.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/complete_fill.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/disaster_recovery.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/event.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/fee_distribution.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/futures_expiry.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/genesis.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/inner/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/inner/adl_outcome.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/inner/fill.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/inner/liquidated_position.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/inner/liquidation_entry.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/inner/liquidation_fill.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/inner/outcome.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/inner/trade_fill.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/insurance_fund_update.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/insurance_fund_withdraw.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/liquidation.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/partial_fill.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/pnl_realization.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/post.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/post_order.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/signer_registered.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/specs_update.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/tradable_product_update.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/trade_mining.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/trader_update.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/withdraw.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/transactions/withdraw_ddx.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/common/utils.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/config.py +0 -0
- /ddx_python-0.9.0/python/ddx/rest_client/__init__.py → /ddx_python-1.0.1/python/ddx/py.typed +0 -0
- /ddx_python-0.9.0/python/ddx/rest_client/constants/__init__.py → /ddx_python-1.0.1/python/ddx/realtime_client/logs/pytest.log +0 -0
- {ddx_python-0.9.0/python/ddx/rest_client/contracts → ddx_python-1.0.1/python/ddx/rest_client}/__init__.py +0 -0
- {ddx_python-0.9.0/python/ddx/rest_client/exceptions → ddx_python-1.0.1/python/ddx/rest_client/clients}/__init__.py +0 -0
- {ddx_python-0.9.0/python/ddx/rest_client/http → ddx_python-1.0.1/python/ddx/rest_client/constants}/__init__.py +0 -0
- {ddx_python-0.9.0/python/ddx/rest_client/models → ddx_python-1.0.1/python/ddx/rest_client/contracts}/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/rest_client/contracts/checkpoint/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/rest_client/contracts/ddx/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/rest_client/contracts/dummy_token/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/rest_client/contracts/i_collateral/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/rest_client/contracts/i_stake/__init__.py +0 -0
- {ddx_python-0.9.0/python/ddx/rest_client/resources → ddx_python-1.0.1/python/ddx/rest_client/exceptions}/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/rest_client/exceptions/exceptions.py +0 -0
- {ddx_python-0.9.0/python/ddx/rest_client/utils → ddx_python-1.0.1/python/ddx/rest_client/http}/__init__.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/rest_client/http/http_client.py +0 -0
- {ddx_python-0.9.0 → ddx_python-1.0.1}/python/ddx/rest_client/utils/encryption_utils.py +0 -0
|
@@ -401,7 +401,7 @@ dependencies = [
|
|
|
401
401
|
"rustc-hash",
|
|
402
402
|
"serde",
|
|
403
403
|
"sha3",
|
|
404
|
-
"tiny-keccak
|
|
404
|
+
"tiny-keccak",
|
|
405
405
|
]
|
|
406
406
|
|
|
407
407
|
[[package]]
|
|
@@ -460,7 +460,7 @@ checksum = "a40e1ef334153322fd878d07e86af7a529bcb86b2439525920a88eba87bcf943"
|
|
|
460
460
|
dependencies = [
|
|
461
461
|
"proc-macro2",
|
|
462
462
|
"quote",
|
|
463
|
-
"syn 2.0.
|
|
463
|
+
"syn 2.0.104",
|
|
464
464
|
]
|
|
465
465
|
|
|
466
466
|
[[package]]
|
|
@@ -603,7 +603,7 @@ dependencies = [
|
|
|
603
603
|
"proc-macro-error2",
|
|
604
604
|
"proc-macro2",
|
|
605
605
|
"quote",
|
|
606
|
-
"syn 2.0.
|
|
606
|
+
"syn 2.0.104",
|
|
607
607
|
]
|
|
608
608
|
|
|
609
609
|
[[package]]
|
|
@@ -620,9 +620,9 @@ dependencies = [
|
|
|
620
620
|
"proc-macro-error2",
|
|
621
621
|
"proc-macro2",
|
|
622
622
|
"quote",
|
|
623
|
-
"syn 2.0.
|
|
623
|
+
"syn 2.0.104",
|
|
624
624
|
"syn-solidity",
|
|
625
|
-
"tiny-keccak
|
|
625
|
+
"tiny-keccak",
|
|
626
626
|
]
|
|
627
627
|
|
|
628
628
|
[[package]]
|
|
@@ -639,7 +639,7 @@ dependencies = [
|
|
|
639
639
|
"proc-macro2",
|
|
640
640
|
"quote",
|
|
641
641
|
"serde_json",
|
|
642
|
-
"syn 2.0.
|
|
642
|
+
"syn 2.0.104",
|
|
643
643
|
"syn-solidity",
|
|
644
644
|
]
|
|
645
645
|
|
|
@@ -802,9 +802,9 @@ dependencies = [
|
|
|
802
802
|
|
|
803
803
|
[[package]]
|
|
804
804
|
name = "anyhow"
|
|
805
|
-
version = "1.0.
|
|
805
|
+
version = "1.0.98"
|
|
806
806
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
-
checksum = "
|
|
807
|
+
checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
|
|
808
808
|
|
|
809
809
|
[[package]]
|
|
810
810
|
name = "arc-swap"
|
|
@@ -1149,7 +1149,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
|
1149
1149
|
dependencies = [
|
|
1150
1150
|
"proc-macro2",
|
|
1151
1151
|
"quote",
|
|
1152
|
-
"syn 2.0.
|
|
1152
|
+
"syn 2.0.104",
|
|
1153
1153
|
]
|
|
1154
1154
|
|
|
1155
1155
|
[[package]]
|
|
@@ -1166,7 +1166,7 @@ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
|
|
|
1166
1166
|
dependencies = [
|
|
1167
1167
|
"proc-macro2",
|
|
1168
1168
|
"quote",
|
|
1169
|
-
"syn 2.0.
|
|
1169
|
+
"syn 2.0.104",
|
|
1170
1170
|
]
|
|
1171
1171
|
|
|
1172
1172
|
[[package]]
|
|
@@ -1194,7 +1194,7 @@ checksum = "e12882f59de5360c748c4cbf569a042d5fb0eb515f7bea9c1f470b47f6ffbd73"
|
|
|
1194
1194
|
dependencies = [
|
|
1195
1195
|
"proc-macro2",
|
|
1196
1196
|
"quote",
|
|
1197
|
-
"syn 2.0.
|
|
1197
|
+
"syn 2.0.104",
|
|
1198
1198
|
]
|
|
1199
1199
|
|
|
1200
1200
|
[[package]]
|
|
@@ -1238,6 +1238,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1238
1238
|
checksum = "de45108900e1f9b9242f7f2e254aa3e2c029c921c258fe9e6b4217eeebd54288"
|
|
1239
1239
|
dependencies = [
|
|
1240
1240
|
"axum-core 0.5.2",
|
|
1241
|
+
"axum-macros",
|
|
1241
1242
|
"base64 0.22.1",
|
|
1242
1243
|
"bytes",
|
|
1243
1244
|
"form_urlencoded",
|
|
@@ -1261,7 +1262,7 @@ dependencies = [
|
|
|
1261
1262
|
"sha1",
|
|
1262
1263
|
"sync_wrapper 1.0.2",
|
|
1263
1264
|
"tokio",
|
|
1264
|
-
"tokio-tungstenite
|
|
1265
|
+
"tokio-tungstenite",
|
|
1265
1266
|
"tower 0.5.2",
|
|
1266
1267
|
"tower-layer",
|
|
1267
1268
|
"tower-service",
|
|
@@ -1305,6 +1306,17 @@ dependencies = [
|
|
|
1305
1306
|
"tracing",
|
|
1306
1307
|
]
|
|
1307
1308
|
|
|
1309
|
+
[[package]]
|
|
1310
|
+
name = "axum-macros"
|
|
1311
|
+
version = "0.5.0"
|
|
1312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1313
|
+
checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c"
|
|
1314
|
+
dependencies = [
|
|
1315
|
+
"proc-macro2",
|
|
1316
|
+
"quote",
|
|
1317
|
+
"syn 2.0.104",
|
|
1318
|
+
]
|
|
1319
|
+
|
|
1308
1320
|
[[package]]
|
|
1309
1321
|
name = "backoff"
|
|
1310
1322
|
version = "0.4.0"
|
|
@@ -1544,7 +1556,7 @@ dependencies = [
|
|
|
1544
1556
|
"proc-macro-crate",
|
|
1545
1557
|
"proc-macro2",
|
|
1546
1558
|
"quote",
|
|
1547
|
-
"syn 2.0.
|
|
1559
|
+
"syn 2.0.104",
|
|
1548
1560
|
]
|
|
1549
1561
|
|
|
1550
1562
|
[[package]]
|
|
@@ -1809,7 +1821,7 @@ dependencies = [
|
|
|
1809
1821
|
"heck 0.5.0",
|
|
1810
1822
|
"proc-macro2",
|
|
1811
1823
|
"quote",
|
|
1812
|
-
"syn 2.0.
|
|
1824
|
+
"syn 2.0.104",
|
|
1813
1825
|
]
|
|
1814
1826
|
|
|
1815
1827
|
[[package]]
|
|
@@ -2001,6 +2013,7 @@ dependencies = [
|
|
|
2001
2013
|
"cbor4ii",
|
|
2002
2014
|
"chrono",
|
|
2003
2015
|
"clap 4.5.34",
|
|
2016
|
+
"core-api",
|
|
2004
2017
|
"core-common",
|
|
2005
2018
|
"core-copy-trading",
|
|
2006
2019
|
"core-crypto",
|
|
@@ -2025,7 +2038,7 @@ dependencies = [
|
|
|
2025
2038
|
"sgx_urts",
|
|
2026
2039
|
"time",
|
|
2027
2040
|
"tokio",
|
|
2028
|
-
"tokio-tungstenite
|
|
2041
|
+
"tokio-tungstenite",
|
|
2029
2042
|
"tower-http",
|
|
2030
2043
|
"tracing",
|
|
2031
2044
|
"tracing-subscriber",
|
|
@@ -2067,7 +2080,7 @@ dependencies = [
|
|
|
2067
2080
|
"sgx_trts",
|
|
2068
2081
|
"sgx_types",
|
|
2069
2082
|
"sgx_unit_test",
|
|
2070
|
-
"thiserror
|
|
2083
|
+
"thiserror 2.0.12",
|
|
2071
2084
|
"tokio",
|
|
2072
2085
|
"tokio-rustls 0.26.2",
|
|
2073
2086
|
"tokio-stream",
|
|
@@ -2080,14 +2093,15 @@ name = "core-api"
|
|
|
2080
2093
|
version = "0.1.0"
|
|
2081
2094
|
dependencies = [
|
|
2082
2095
|
"anyhow",
|
|
2096
|
+
"axum 0.8.3",
|
|
2083
2097
|
"core-node",
|
|
2084
|
-
"
|
|
2098
|
+
"http 1.3.1",
|
|
2085
2099
|
"rust_decimal",
|
|
2086
2100
|
"serde",
|
|
2087
2101
|
"serde_json",
|
|
2088
2102
|
"tokio",
|
|
2103
|
+
"tower-http",
|
|
2089
2104
|
"tracing",
|
|
2090
|
-
"warp",
|
|
2091
2105
|
]
|
|
2092
2106
|
|
|
2093
2107
|
[[package]]
|
|
@@ -2111,6 +2125,7 @@ dependencies = [
|
|
|
2111
2125
|
"libsecp256k1",
|
|
2112
2126
|
"postgres-types",
|
|
2113
2127
|
"pyo3",
|
|
2128
|
+
"pyo3-stub-gen",
|
|
2114
2129
|
"pythonize",
|
|
2115
2130
|
"quickcheck",
|
|
2116
2131
|
"rand 0.8.5",
|
|
@@ -2122,7 +2137,7 @@ dependencies = [
|
|
|
2122
2137
|
"sparse-merkle-tree",
|
|
2123
2138
|
"strum 0.27.1",
|
|
2124
2139
|
"strum_macros 0.27.1",
|
|
2125
|
-
"thiserror
|
|
2140
|
+
"thiserror 2.0.12",
|
|
2126
2141
|
"time",
|
|
2127
2142
|
"tracing",
|
|
2128
2143
|
"tracing-subscriber",
|
|
@@ -2150,7 +2165,7 @@ dependencies = [
|
|
|
2150
2165
|
"rust_decimal",
|
|
2151
2166
|
"serde",
|
|
2152
2167
|
"serde_json",
|
|
2153
|
-
"thiserror
|
|
2168
|
+
"thiserror 2.0.12",
|
|
2154
2169
|
"time",
|
|
2155
2170
|
"tracing-subscriber",
|
|
2156
2171
|
]
|
|
@@ -2160,6 +2175,7 @@ name = "core-crypto"
|
|
|
2160
2175
|
version = "0.1.0"
|
|
2161
2176
|
dependencies = [
|
|
2162
2177
|
"aes-gcm",
|
|
2178
|
+
"alloy-primitives",
|
|
2163
2179
|
"core-common",
|
|
2164
2180
|
"digest 0.9.0",
|
|
2165
2181
|
"lazy_static",
|
|
@@ -2167,7 +2183,6 @@ dependencies = [
|
|
|
2167
2183
|
"rand 0.8.5",
|
|
2168
2184
|
"rustc-hex",
|
|
2169
2185
|
"sgx_crypto",
|
|
2170
|
-
"tiny-keccak 1.5.0",
|
|
2171
2186
|
"tracing",
|
|
2172
2187
|
"typenum",
|
|
2173
2188
|
]
|
|
@@ -2214,6 +2229,7 @@ dependencies = [
|
|
|
2214
2229
|
"plain_hasher",
|
|
2215
2230
|
"postgres-types",
|
|
2216
2231
|
"pyo3",
|
|
2232
|
+
"pyo3-stub-gen",
|
|
2217
2233
|
"pythonize",
|
|
2218
2234
|
"quickcheck",
|
|
2219
2235
|
"rand 0.8.5",
|
|
@@ -2227,7 +2243,7 @@ dependencies = [
|
|
|
2227
2243
|
"sparse-merkle-tree",
|
|
2228
2244
|
"strum 0.27.1",
|
|
2229
2245
|
"strum_macros 0.27.1",
|
|
2230
|
-
"thiserror
|
|
2246
|
+
"thiserror 2.0.12",
|
|
2231
2247
|
"tracing",
|
|
2232
2248
|
"triehash",
|
|
2233
2249
|
"wasm-bindgen",
|
|
@@ -2262,6 +2278,7 @@ dependencies = [
|
|
|
2262
2278
|
"sgx_tse",
|
|
2263
2279
|
"sgx_tseal",
|
|
2264
2280
|
"sgx_types",
|
|
2281
|
+
"thiserror 2.0.12",
|
|
2265
2282
|
"time",
|
|
2266
2283
|
"tokio",
|
|
2267
2284
|
"tracing",
|
|
@@ -2301,7 +2318,6 @@ dependencies = [
|
|
|
2301
2318
|
"serde_json",
|
|
2302
2319
|
"strum 0.27.1",
|
|
2303
2320
|
"strum_macros 0.27.1",
|
|
2304
|
-
"thiserror 1.0.69",
|
|
2305
2321
|
"tracing",
|
|
2306
2322
|
]
|
|
2307
2323
|
|
|
@@ -2330,7 +2346,7 @@ dependencies = [
|
|
|
2330
2346
|
"regex",
|
|
2331
2347
|
"serde",
|
|
2332
2348
|
"serde_json",
|
|
2333
|
-
"thiserror
|
|
2349
|
+
"thiserror 2.0.12",
|
|
2334
2350
|
"tokio",
|
|
2335
2351
|
"tracing",
|
|
2336
2352
|
"tracing-futures",
|
|
@@ -2653,7 +2669,7 @@ dependencies = [
|
|
|
2653
2669
|
"proc-macro2",
|
|
2654
2670
|
"quote",
|
|
2655
2671
|
"strsim 0.11.1",
|
|
2656
|
-
"syn 2.0.
|
|
2672
|
+
"syn 2.0.104",
|
|
2657
2673
|
]
|
|
2658
2674
|
|
|
2659
2675
|
[[package]]
|
|
@@ -2675,7 +2691,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
|
|
|
2675
2691
|
dependencies = [
|
|
2676
2692
|
"darling_core 0.20.10",
|
|
2677
2693
|
"quote",
|
|
2678
|
-
"syn 2.0.
|
|
2694
|
+
"syn 2.0.104",
|
|
2679
2695
|
]
|
|
2680
2696
|
|
|
2681
2697
|
[[package]]
|
|
@@ -2730,6 +2746,7 @@ dependencies = [
|
|
|
2730
2746
|
"anyhow",
|
|
2731
2747
|
"arc-swap",
|
|
2732
2748
|
"async-trait",
|
|
2749
|
+
"axum 0.8.3",
|
|
2733
2750
|
"backoff",
|
|
2734
2751
|
"cbor4ii",
|
|
2735
2752
|
"cfg-if 1.0.0",
|
|
@@ -2755,7 +2772,6 @@ dependencies = [
|
|
|
2755
2772
|
"im",
|
|
2756
2773
|
"itertools 0.10.5",
|
|
2757
2774
|
"lazy_static",
|
|
2758
|
-
"log",
|
|
2759
2775
|
"maplit",
|
|
2760
2776
|
"num_cpus",
|
|
2761
2777
|
"openraft",
|
|
@@ -2775,15 +2791,16 @@ dependencies = [
|
|
|
2775
2791
|
"signal-hook",
|
|
2776
2792
|
"sparse-merkle-tree",
|
|
2777
2793
|
"test-log",
|
|
2778
|
-
"thiserror
|
|
2794
|
+
"thiserror 2.0.12",
|
|
2779
2795
|
"time",
|
|
2780
2796
|
"tokio",
|
|
2781
2797
|
"tokio-postgres",
|
|
2782
2798
|
"tokio-stream",
|
|
2799
|
+
"tokio-tungstenite",
|
|
2800
|
+
"tower-http",
|
|
2783
2801
|
"tracing",
|
|
2784
2802
|
"tracing-futures",
|
|
2785
2803
|
"tracing-subscriber",
|
|
2786
|
-
"warp",
|
|
2787
2804
|
]
|
|
2788
2805
|
|
|
2789
2806
|
[[package]]
|
|
@@ -2839,7 +2856,7 @@ dependencies = [
|
|
|
2839
2856
|
"sgx_unit_test",
|
|
2840
2857
|
"sparse-merkle-tree",
|
|
2841
2858
|
"static_assertions",
|
|
2842
|
-
"thiserror
|
|
2859
|
+
"thiserror 2.0.12",
|
|
2843
2860
|
"tokio",
|
|
2844
2861
|
"tracing",
|
|
2845
2862
|
]
|
|
@@ -2875,11 +2892,12 @@ dependencies = [
|
|
|
2875
2892
|
|
|
2876
2893
|
[[package]]
|
|
2877
2894
|
name = "ddx-python"
|
|
2878
|
-
version = "0.
|
|
2895
|
+
version = "1.0.1"
|
|
2879
2896
|
dependencies = [
|
|
2880
2897
|
"core-common",
|
|
2881
2898
|
"core-ddx",
|
|
2882
2899
|
"pyo3",
|
|
2900
|
+
"pyo3-stub-gen",
|
|
2883
2901
|
]
|
|
2884
2902
|
|
|
2885
2903
|
[[package]]
|
|
@@ -3022,7 +3040,7 @@ dependencies = [
|
|
|
3022
3040
|
"darling 0.20.10",
|
|
3023
3041
|
"proc-macro2",
|
|
3024
3042
|
"quote",
|
|
3025
|
-
"syn 2.0.
|
|
3043
|
+
"syn 2.0.104",
|
|
3026
3044
|
]
|
|
3027
3045
|
|
|
3028
3046
|
[[package]]
|
|
@@ -3032,7 +3050,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3032
3050
|
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
3033
3051
|
dependencies = [
|
|
3034
3052
|
"derive_builder_core",
|
|
3035
|
-
"syn 2.0.
|
|
3053
|
+
"syn 2.0.104",
|
|
3036
3054
|
]
|
|
3037
3055
|
|
|
3038
3056
|
[[package]]
|
|
@@ -3043,7 +3061,7 @@ checksum = "3da29a38df43d6f156149c9b43ded5e018ddff2a855cf2cfd62e8cd7d079c69f"
|
|
|
3043
3061
|
dependencies = [
|
|
3044
3062
|
"proc-macro2",
|
|
3045
3063
|
"quote",
|
|
3046
|
-
"syn 2.0.
|
|
3064
|
+
"syn 2.0.104",
|
|
3047
3065
|
]
|
|
3048
3066
|
|
|
3049
3067
|
[[package]]
|
|
@@ -3072,7 +3090,7 @@ checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22"
|
|
|
3072
3090
|
dependencies = [
|
|
3073
3091
|
"proc-macro2",
|
|
3074
3092
|
"quote",
|
|
3075
|
-
"syn 2.0.
|
|
3093
|
+
"syn 2.0.104",
|
|
3076
3094
|
"unicode-xid",
|
|
3077
3095
|
]
|
|
3078
3096
|
|
|
@@ -3084,7 +3102,7 @@ checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
|
|
|
3084
3102
|
dependencies = [
|
|
3085
3103
|
"proc-macro2",
|
|
3086
3104
|
"quote",
|
|
3087
|
-
"syn 2.0.
|
|
3105
|
+
"syn 2.0.104",
|
|
3088
3106
|
"unicode-xid",
|
|
3089
3107
|
]
|
|
3090
3108
|
|
|
@@ -3138,7 +3156,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
3138
3156
|
dependencies = [
|
|
3139
3157
|
"proc-macro2",
|
|
3140
3158
|
"quote",
|
|
3141
|
-
"syn 2.0.
|
|
3159
|
+
"syn 2.0.104",
|
|
3142
3160
|
]
|
|
3143
3161
|
|
|
3144
3162
|
[[package]]
|
|
@@ -3607,7 +3625,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
|
3607
3625
|
dependencies = [
|
|
3608
3626
|
"proc-macro2",
|
|
3609
3627
|
"quote",
|
|
3610
|
-
"syn 2.0.
|
|
3628
|
+
"syn 2.0.104",
|
|
3611
3629
|
]
|
|
3612
3630
|
|
|
3613
3631
|
[[package]]
|
|
@@ -3853,7 +3871,7 @@ dependencies = [
|
|
|
3853
3871
|
[[package]]
|
|
3854
3872
|
name = "hashbrown_tstd"
|
|
3855
3873
|
version = "0.14.2"
|
|
3856
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
3874
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
3857
3875
|
dependencies = [
|
|
3858
3876
|
"allocator-api2",
|
|
3859
3877
|
]
|
|
@@ -3871,30 +3889,6 @@ dependencies = [
|
|
|
3871
3889
|
"num-traits",
|
|
3872
3890
|
]
|
|
3873
3891
|
|
|
3874
|
-
[[package]]
|
|
3875
|
-
name = "headers"
|
|
3876
|
-
version = "0.3.9"
|
|
3877
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3878
|
-
checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270"
|
|
3879
|
-
dependencies = [
|
|
3880
|
-
"base64 0.21.7",
|
|
3881
|
-
"bytes",
|
|
3882
|
-
"headers-core",
|
|
3883
|
-
"http 0.2.12",
|
|
3884
|
-
"httpdate",
|
|
3885
|
-
"mime",
|
|
3886
|
-
"sha1",
|
|
3887
|
-
]
|
|
3888
|
-
|
|
3889
|
-
[[package]]
|
|
3890
|
-
name = "headers-core"
|
|
3891
|
-
version = "0.2.0"
|
|
3892
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3893
|
-
checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429"
|
|
3894
|
-
dependencies = [
|
|
3895
|
-
"http 0.2.12",
|
|
3896
|
-
]
|
|
3897
|
-
|
|
3898
3892
|
[[package]]
|
|
3899
3893
|
name = "heapless"
|
|
3900
3894
|
version = "0.8.0"
|
|
@@ -4361,7 +4355,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
|
4361
4355
|
dependencies = [
|
|
4362
4356
|
"proc-macro2",
|
|
4363
4357
|
"quote",
|
|
4364
|
-
"syn 2.0.
|
|
4358
|
+
"syn 2.0.104",
|
|
4365
4359
|
]
|
|
4366
4360
|
|
|
4367
4361
|
[[package]]
|
|
@@ -4422,7 +4416,7 @@ checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9"
|
|
|
4422
4416
|
dependencies = [
|
|
4423
4417
|
"proc-macro2",
|
|
4424
4418
|
"quote",
|
|
4425
|
-
"syn 2.0.
|
|
4419
|
+
"syn 2.0.104",
|
|
4426
4420
|
]
|
|
4427
4421
|
|
|
4428
4422
|
[[package]]
|
|
@@ -4582,6 +4576,15 @@ dependencies = [
|
|
|
4582
4576
|
"either",
|
|
4583
4577
|
]
|
|
4584
4578
|
|
|
4579
|
+
[[package]]
|
|
4580
|
+
name = "itertools"
|
|
4581
|
+
version = "0.13.0"
|
|
4582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4583
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
4584
|
+
dependencies = [
|
|
4585
|
+
"either",
|
|
4586
|
+
]
|
|
4587
|
+
|
|
4585
4588
|
[[package]]
|
|
4586
4589
|
name = "itertools"
|
|
4587
4590
|
version = "0.14.0"
|
|
@@ -4712,6 +4715,7 @@ name = "kyc"
|
|
|
4712
4715
|
version = "0.1.0"
|
|
4713
4716
|
dependencies = [
|
|
4714
4717
|
"anyhow",
|
|
4718
|
+
"axum 0.8.3",
|
|
4715
4719
|
"backoff",
|
|
4716
4720
|
"cbor4ii",
|
|
4717
4721
|
"chrono",
|
|
@@ -4739,9 +4743,9 @@ dependencies = [
|
|
|
4739
4743
|
"time",
|
|
4740
4744
|
"tokio",
|
|
4741
4745
|
"topk8",
|
|
4746
|
+
"tower-http",
|
|
4742
4747
|
"tracing",
|
|
4743
4748
|
"tracing-subscriber",
|
|
4744
|
-
"warp",
|
|
4745
4749
|
]
|
|
4746
4750
|
|
|
4747
4751
|
[[package]]
|
|
@@ -4756,8 +4760,6 @@ dependencies = [
|
|
|
4756
4760
|
"core-enclave",
|
|
4757
4761
|
"core-kyc",
|
|
4758
4762
|
"hex",
|
|
4759
|
-
"http-body-util",
|
|
4760
|
-
"hyper 1.6.0",
|
|
4761
4763
|
"lazy_static",
|
|
4762
4764
|
"serde",
|
|
4763
4765
|
"serde_json",
|
|
@@ -4766,7 +4768,6 @@ dependencies = [
|
|
|
4766
4768
|
"sgx_types",
|
|
4767
4769
|
"sgx_unit_test",
|
|
4768
4770
|
"static_assertions",
|
|
4769
|
-
"thiserror 1.0.69",
|
|
4770
4771
|
"tokio",
|
|
4771
4772
|
"tracing",
|
|
4772
4773
|
]
|
|
@@ -4788,7 +4789,7 @@ dependencies = [
|
|
|
4788
4789
|
"regex-syntax 0.8.5",
|
|
4789
4790
|
"string_cache",
|
|
4790
4791
|
"term",
|
|
4791
|
-
"tiny-keccak
|
|
4792
|
+
"tiny-keccak",
|
|
4792
4793
|
"unicode-xid",
|
|
4793
4794
|
"walkdir",
|
|
4794
4795
|
]
|
|
@@ -4963,7 +4964,7 @@ checksum = "1b27834086c65ec3f9387b096d66e99f221cf081c2b738042aa252bcd41204e3"
|
|
|
4963
4964
|
dependencies = [
|
|
4964
4965
|
"proc-macro2",
|
|
4965
4966
|
"quote",
|
|
4966
|
-
"syn 2.0.
|
|
4967
|
+
"syn 2.0.104",
|
|
4967
4968
|
]
|
|
4968
4969
|
|
|
4969
4970
|
[[package]]
|
|
@@ -4993,6 +4994,16 @@ version = "0.8.4"
|
|
|
4993
4994
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4994
4995
|
checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
|
4995
4996
|
|
|
4997
|
+
[[package]]
|
|
4998
|
+
name = "matrixmultiply"
|
|
4999
|
+
version = "0.3.10"
|
|
5000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5001
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
5002
|
+
dependencies = [
|
|
5003
|
+
"autocfg",
|
|
5004
|
+
"rawpointer",
|
|
5005
|
+
]
|
|
5006
|
+
|
|
4996
5007
|
[[package]]
|
|
4997
5008
|
name = "md-5"
|
|
4998
5009
|
version = "0.10.6"
|
|
@@ -5033,16 +5044,6 @@ version = "0.3.17"
|
|
|
5033
5044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5034
5045
|
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
5035
5046
|
|
|
5036
|
-
[[package]]
|
|
5037
|
-
name = "mime_guess"
|
|
5038
|
-
version = "2.0.5"
|
|
5039
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5040
|
-
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
|
|
5041
|
-
dependencies = [
|
|
5042
|
-
"mime",
|
|
5043
|
-
"unicase",
|
|
5044
|
-
]
|
|
5045
|
-
|
|
5046
5047
|
[[package]]
|
|
5047
5048
|
name = "minicov"
|
|
5048
5049
|
version = "0.3.7"
|
|
@@ -5079,24 +5080,6 @@ dependencies = [
|
|
|
5079
5080
|
"windows-sys 0.52.0",
|
|
5080
5081
|
]
|
|
5081
5082
|
|
|
5082
|
-
[[package]]
|
|
5083
|
-
name = "multer"
|
|
5084
|
-
version = "2.1.0"
|
|
5085
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5086
|
-
checksum = "01acbdc23469fd8fe07ab135923371d5f5a422fbf9c522158677c8eb15bc51c2"
|
|
5087
|
-
dependencies = [
|
|
5088
|
-
"bytes",
|
|
5089
|
-
"encoding_rs",
|
|
5090
|
-
"futures-util",
|
|
5091
|
-
"http 0.2.12",
|
|
5092
|
-
"httparse",
|
|
5093
|
-
"log",
|
|
5094
|
-
"memchr",
|
|
5095
|
-
"mime",
|
|
5096
|
-
"spin 0.9.8",
|
|
5097
|
-
"version_check",
|
|
5098
|
-
]
|
|
5099
|
-
|
|
5100
5083
|
[[package]]
|
|
5101
5084
|
name = "native-tls"
|
|
5102
5085
|
version = "0.2.14"
|
|
@@ -5114,6 +5097,21 @@ dependencies = [
|
|
|
5114
5097
|
"tempfile",
|
|
5115
5098
|
]
|
|
5116
5099
|
|
|
5100
|
+
[[package]]
|
|
5101
|
+
name = "ndarray"
|
|
5102
|
+
version = "0.16.1"
|
|
5103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5104
|
+
checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
|
|
5105
|
+
dependencies = [
|
|
5106
|
+
"matrixmultiply",
|
|
5107
|
+
"num-complex",
|
|
5108
|
+
"num-integer",
|
|
5109
|
+
"num-traits",
|
|
5110
|
+
"portable-atomic",
|
|
5111
|
+
"portable-atomic-util",
|
|
5112
|
+
"rawpointer",
|
|
5113
|
+
]
|
|
5114
|
+
|
|
5117
5115
|
[[package]]
|
|
5118
5116
|
name = "new_debug_unreachable"
|
|
5119
5117
|
version = "1.0.6"
|
|
@@ -5162,7 +5160,7 @@ checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21"
|
|
|
5162
5160
|
[[package]]
|
|
5163
5161
|
name = "nts-client"
|
|
5164
5162
|
version = "0.1.0"
|
|
5165
|
-
source = "git+https://gitlab.com/dexlabs/nts-sgx.git
|
|
5163
|
+
source = "git+https://gitlab.com/dexlabs/nts-sgx.git#edbf4abc30e475f83595430c18b9542c7822f923"
|
|
5166
5164
|
dependencies = [
|
|
5167
5165
|
"aes 0.7.5",
|
|
5168
5166
|
"aes-siv",
|
|
@@ -5213,6 +5211,15 @@ dependencies = [
|
|
|
5213
5211
|
"zeroize",
|
|
5214
5212
|
]
|
|
5215
5213
|
|
|
5214
|
+
[[package]]
|
|
5215
|
+
name = "num-complex"
|
|
5216
|
+
version = "0.4.6"
|
|
5217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5218
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
5219
|
+
dependencies = [
|
|
5220
|
+
"num-traits",
|
|
5221
|
+
]
|
|
5222
|
+
|
|
5216
5223
|
[[package]]
|
|
5217
5224
|
name = "num-conv"
|
|
5218
5225
|
version = "0.1.0"
|
|
@@ -5286,7 +5293,23 @@ checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56"
|
|
|
5286
5293
|
dependencies = [
|
|
5287
5294
|
"proc-macro2",
|
|
5288
5295
|
"quote",
|
|
5289
|
-
"syn 2.0.
|
|
5296
|
+
"syn 2.0.104",
|
|
5297
|
+
]
|
|
5298
|
+
|
|
5299
|
+
[[package]]
|
|
5300
|
+
name = "numpy"
|
|
5301
|
+
version = "0.25.0"
|
|
5302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5303
|
+
checksum = "29f1dee9aa8d3f6f8e8b9af3803006101bb3653866ef056d530d53ae68587191"
|
|
5304
|
+
dependencies = [
|
|
5305
|
+
"libc",
|
|
5306
|
+
"ndarray",
|
|
5307
|
+
"num-complex",
|
|
5308
|
+
"num-integer",
|
|
5309
|
+
"num-traits",
|
|
5310
|
+
"pyo3",
|
|
5311
|
+
"pyo3-build-config",
|
|
5312
|
+
"rustc-hash",
|
|
5290
5313
|
]
|
|
5291
5314
|
|
|
5292
5315
|
[[package]]
|
|
@@ -5331,9 +5354,9 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
|
|
5331
5354
|
|
|
5332
5355
|
[[package]]
|
|
5333
5356
|
name = "openraft"
|
|
5334
|
-
version = "0.9.
|
|
5357
|
+
version = "0.9.20"
|
|
5335
5358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5336
|
-
checksum = "
|
|
5359
|
+
checksum = "a45c037292efa0d71a5a41aa05b74ede16c8fa739ae5fbfb225764116d4d9aa6"
|
|
5337
5360
|
dependencies = [
|
|
5338
5361
|
"anyerror",
|
|
5339
5362
|
"byte-unit 5.1.6",
|
|
@@ -5362,7 +5385,7 @@ dependencies = [
|
|
|
5362
5385
|
"proc-macro2",
|
|
5363
5386
|
"quote",
|
|
5364
5387
|
"semver 1.0.26",
|
|
5365
|
-
"syn 2.0.
|
|
5388
|
+
"syn 2.0.104",
|
|
5366
5389
|
]
|
|
5367
5390
|
|
|
5368
5391
|
[[package]]
|
|
@@ -5388,7 +5411,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
|
5388
5411
|
dependencies = [
|
|
5389
5412
|
"proc-macro2",
|
|
5390
5413
|
"quote",
|
|
5391
|
-
"syn 2.0.
|
|
5414
|
+
"syn 2.0.104",
|
|
5392
5415
|
]
|
|
5393
5416
|
|
|
5394
5417
|
[[package]]
|
|
@@ -5446,7 +5469,7 @@ dependencies = [
|
|
|
5446
5469
|
"proc-macro-crate",
|
|
5447
5470
|
"proc-macro2",
|
|
5448
5471
|
"quote",
|
|
5449
|
-
"syn 2.0.
|
|
5472
|
+
"syn 2.0.104",
|
|
5450
5473
|
]
|
|
5451
5474
|
|
|
5452
5475
|
[[package]]
|
|
@@ -5590,7 +5613,7 @@ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
|
5590
5613
|
dependencies = [
|
|
5591
5614
|
"proc-macro2",
|
|
5592
5615
|
"quote",
|
|
5593
|
-
"syn 2.0.
|
|
5616
|
+
"syn 2.0.104",
|
|
5594
5617
|
]
|
|
5595
5618
|
|
|
5596
5619
|
[[package]]
|
|
@@ -5729,6 +5752,15 @@ version = "1.11.0"
|
|
|
5729
5752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5730
5753
|
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
|
5731
5754
|
|
|
5755
|
+
[[package]]
|
|
5756
|
+
name = "portable-atomic-util"
|
|
5757
|
+
version = "0.2.4"
|
|
5758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5759
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
5760
|
+
dependencies = [
|
|
5761
|
+
"portable-atomic",
|
|
5762
|
+
]
|
|
5763
|
+
|
|
5732
5764
|
[[package]]
|
|
5733
5765
|
name = "postgres"
|
|
5734
5766
|
version = "0.19.10"
|
|
@@ -5752,7 +5784,7 @@ dependencies = [
|
|
|
5752
5784
|
"heck 0.5.0",
|
|
5753
5785
|
"proc-macro2",
|
|
5754
5786
|
"quote",
|
|
5755
|
-
"syn 2.0.
|
|
5787
|
+
"syn 2.0.104",
|
|
5756
5788
|
]
|
|
5757
5789
|
|
|
5758
5790
|
[[package]]
|
|
@@ -5870,14 +5902,14 @@ dependencies = [
|
|
|
5870
5902
|
"proc-macro-error-attr2",
|
|
5871
5903
|
"proc-macro2",
|
|
5872
5904
|
"quote",
|
|
5873
|
-
"syn 2.0.
|
|
5905
|
+
"syn 2.0.104",
|
|
5874
5906
|
]
|
|
5875
5907
|
|
|
5876
5908
|
[[package]]
|
|
5877
5909
|
name = "proc-macro2"
|
|
5878
|
-
version = "1.0.
|
|
5910
|
+
version = "1.0.95"
|
|
5879
5911
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5880
|
-
checksum = "
|
|
5912
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
5881
5913
|
dependencies = [
|
|
5882
5914
|
"unicode-ident",
|
|
5883
5915
|
]
|
|
@@ -5922,7 +5954,7 @@ dependencies = [
|
|
|
5922
5954
|
"itertools 0.12.1",
|
|
5923
5955
|
"proc-macro2",
|
|
5924
5956
|
"quote",
|
|
5925
|
-
"syn 2.0.
|
|
5957
|
+
"syn 2.0.104",
|
|
5926
5958
|
]
|
|
5927
5959
|
|
|
5928
5960
|
[[package]]
|
|
@@ -5956,17 +5988,16 @@ dependencies = [
|
|
|
5956
5988
|
|
|
5957
5989
|
[[package]]
|
|
5958
5990
|
name = "pyo3"
|
|
5959
|
-
version = "0.
|
|
5991
|
+
version = "0.25.1"
|
|
5960
5992
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5961
|
-
checksum = "
|
|
5993
|
+
checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
|
|
5962
5994
|
dependencies = [
|
|
5963
|
-
"cfg-if 1.0.0",
|
|
5964
5995
|
"chrono",
|
|
5965
5996
|
"indoc",
|
|
5966
5997
|
"inventory",
|
|
5967
5998
|
"libc",
|
|
5968
5999
|
"memoffset",
|
|
5969
|
-
"
|
|
6000
|
+
"once_cell",
|
|
5970
6001
|
"portable-atomic",
|
|
5971
6002
|
"pyo3-build-config",
|
|
5972
6003
|
"pyo3-ffi",
|
|
@@ -5976,9 +6007,9 @@ dependencies = [
|
|
|
5976
6007
|
|
|
5977
6008
|
[[package]]
|
|
5978
6009
|
name = "pyo3-build-config"
|
|
5979
|
-
version = "0.
|
|
6010
|
+
version = "0.25.1"
|
|
5980
6011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5981
|
-
checksum = "
|
|
6012
|
+
checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
|
|
5982
6013
|
dependencies = [
|
|
5983
6014
|
"once_cell",
|
|
5984
6015
|
"target-lexicon",
|
|
@@ -5986,9 +6017,9 @@ dependencies = [
|
|
|
5986
6017
|
|
|
5987
6018
|
[[package]]
|
|
5988
6019
|
name = "pyo3-ffi"
|
|
5989
|
-
version = "0.
|
|
6020
|
+
version = "0.25.1"
|
|
5990
6021
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5991
|
-
checksum = "
|
|
6022
|
+
checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
|
|
5992
6023
|
dependencies = [
|
|
5993
6024
|
"libc",
|
|
5994
6025
|
"pyo3-build-config",
|
|
@@ -5996,34 +6027,66 @@ dependencies = [
|
|
|
5996
6027
|
|
|
5997
6028
|
[[package]]
|
|
5998
6029
|
name = "pyo3-macros"
|
|
5999
|
-
version = "0.
|
|
6030
|
+
version = "0.25.1"
|
|
6000
6031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6001
|
-
checksum = "
|
|
6032
|
+
checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
|
|
6002
6033
|
dependencies = [
|
|
6003
6034
|
"proc-macro2",
|
|
6004
6035
|
"pyo3-macros-backend",
|
|
6005
6036
|
"quote",
|
|
6006
|
-
"syn 2.0.
|
|
6037
|
+
"syn 2.0.104",
|
|
6007
6038
|
]
|
|
6008
6039
|
|
|
6009
6040
|
[[package]]
|
|
6010
6041
|
name = "pyo3-macros-backend"
|
|
6011
|
-
version = "0.
|
|
6042
|
+
version = "0.25.1"
|
|
6012
6043
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6013
|
-
checksum = "
|
|
6044
|
+
checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
|
|
6014
6045
|
dependencies = [
|
|
6015
|
-
"heck 0.
|
|
6046
|
+
"heck 0.5.0",
|
|
6016
6047
|
"proc-macro2",
|
|
6017
6048
|
"pyo3-build-config",
|
|
6018
6049
|
"quote",
|
|
6019
|
-
"syn 2.0.
|
|
6050
|
+
"syn 2.0.104",
|
|
6051
|
+
]
|
|
6052
|
+
|
|
6053
|
+
[[package]]
|
|
6054
|
+
name = "pyo3-stub-gen"
|
|
6055
|
+
version = "0.10.1"
|
|
6056
|
+
source = "git+https://github.com/Jij-Inc/pyo3-stub-gen.git#7934a17869a76d71ad40afa9dab0b116537ea852"
|
|
6057
|
+
dependencies = [
|
|
6058
|
+
"anyhow",
|
|
6059
|
+
"chrono",
|
|
6060
|
+
"either",
|
|
6061
|
+
"indexmap 2.8.0",
|
|
6062
|
+
"inventory",
|
|
6063
|
+
"itertools 0.13.0",
|
|
6064
|
+
"log",
|
|
6065
|
+
"maplit",
|
|
6066
|
+
"num-complex",
|
|
6067
|
+
"numpy",
|
|
6068
|
+
"pyo3",
|
|
6069
|
+
"pyo3-stub-gen-derive",
|
|
6070
|
+
"serde",
|
|
6071
|
+
"toml",
|
|
6072
|
+
]
|
|
6073
|
+
|
|
6074
|
+
[[package]]
|
|
6075
|
+
name = "pyo3-stub-gen-derive"
|
|
6076
|
+
version = "0.10.1"
|
|
6077
|
+
source = "git+https://github.com/Jij-Inc/pyo3-stub-gen.git#7934a17869a76d71ad40afa9dab0b116537ea852"
|
|
6078
|
+
dependencies = [
|
|
6079
|
+
"heck 0.5.0",
|
|
6080
|
+
"proc-macro2",
|
|
6081
|
+
"quote",
|
|
6082
|
+
"syn 2.0.104",
|
|
6020
6083
|
]
|
|
6021
6084
|
|
|
6022
6085
|
[[package]]
|
|
6023
6086
|
name = "pythonize"
|
|
6024
|
-
version = "0.
|
|
6087
|
+
version = "0.25.0"
|
|
6025
6088
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6026
|
-
checksum = "
|
|
6089
|
+
checksum = "597907139a488b22573158793aa7539df36ae863eba300c75f3a0d65fc475e27"
|
|
6027
6090
|
dependencies = [
|
|
6028
6091
|
"pyo3",
|
|
6029
6092
|
"serde",
|
|
@@ -6194,6 +6257,12 @@ dependencies = [
|
|
|
6194
6257
|
"bitflags 2.9.0",
|
|
6195
6258
|
]
|
|
6196
6259
|
|
|
6260
|
+
[[package]]
|
|
6261
|
+
name = "rawpointer"
|
|
6262
|
+
version = "0.2.1"
|
|
6263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6264
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
6265
|
+
|
|
6197
6266
|
[[package]]
|
|
6198
6267
|
name = "rayon"
|
|
6199
6268
|
version = "1.10.0"
|
|
@@ -6747,12 +6816,6 @@ dependencies = [
|
|
|
6747
6816
|
"windows-sys 0.59.0",
|
|
6748
6817
|
]
|
|
6749
6818
|
|
|
6750
|
-
[[package]]
|
|
6751
|
-
name = "scoped-tls"
|
|
6752
|
-
version = "1.0.1"
|
|
6753
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6754
|
-
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
6755
|
-
|
|
6756
6819
|
[[package]]
|
|
6757
6820
|
name = "scopeguard"
|
|
6758
6821
|
version = "1.2.0"
|
|
@@ -6872,7 +6935,7 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
|
6872
6935
|
dependencies = [
|
|
6873
6936
|
"proc-macro2",
|
|
6874
6937
|
"quote",
|
|
6875
|
-
"syn 2.0.
|
|
6938
|
+
"syn 2.0.104",
|
|
6876
6939
|
]
|
|
6877
6940
|
|
|
6878
6941
|
[[package]]
|
|
@@ -6915,7 +6978,16 @@ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
|
|
|
6915
6978
|
dependencies = [
|
|
6916
6979
|
"proc-macro2",
|
|
6917
6980
|
"quote",
|
|
6918
|
-
"syn 2.0.
|
|
6981
|
+
"syn 2.0.104",
|
|
6982
|
+
]
|
|
6983
|
+
|
|
6984
|
+
[[package]]
|
|
6985
|
+
name = "serde_spanned"
|
|
6986
|
+
version = "0.6.9"
|
|
6987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6988
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
6989
|
+
dependencies = [
|
|
6990
|
+
"serde",
|
|
6919
6991
|
]
|
|
6920
6992
|
|
|
6921
6993
|
[[package]]
|
|
@@ -6933,17 +7005,17 @@ dependencies = [
|
|
|
6933
7005
|
[[package]]
|
|
6934
7006
|
name = "sgx_alloc"
|
|
6935
7007
|
version = "2.0.0"
|
|
6936
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7008
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
6937
7009
|
|
|
6938
7010
|
[[package]]
|
|
6939
7011
|
name = "sgx_build_helper"
|
|
6940
7012
|
version = "2.0.0"
|
|
6941
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7013
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
6942
7014
|
|
|
6943
7015
|
[[package]]
|
|
6944
7016
|
name = "sgx_crypto"
|
|
6945
7017
|
version = "2.0.0"
|
|
6946
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7018
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
6947
7019
|
dependencies = [
|
|
6948
7020
|
"sgx_crypto_sys",
|
|
6949
7021
|
"sgx_trts",
|
|
@@ -6953,7 +7025,7 @@ dependencies = [
|
|
|
6953
7025
|
[[package]]
|
|
6954
7026
|
name = "sgx_crypto_sys"
|
|
6955
7027
|
version = "2.0.0"
|
|
6956
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7028
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
6957
7029
|
dependencies = [
|
|
6958
7030
|
"sgx_build_helper",
|
|
6959
7031
|
"sgx_download_prebuilt",
|
|
@@ -6963,7 +7035,7 @@ dependencies = [
|
|
|
6963
7035
|
[[package]]
|
|
6964
7036
|
name = "sgx_download_prebuilt"
|
|
6965
7037
|
version = "2.0.0"
|
|
6966
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7038
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
6967
7039
|
dependencies = [
|
|
6968
7040
|
"sgx_build_helper",
|
|
6969
7041
|
]
|
|
@@ -6971,7 +7043,7 @@ dependencies = [
|
|
|
6971
7043
|
[[package]]
|
|
6972
7044
|
name = "sgx_ffi"
|
|
6973
7045
|
version = "2.0.0"
|
|
6974
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7046
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
6975
7047
|
dependencies = [
|
|
6976
7048
|
"sgx_types",
|
|
6977
7049
|
]
|
|
@@ -6979,7 +7051,7 @@ dependencies = [
|
|
|
6979
7051
|
[[package]]
|
|
6980
7052
|
name = "sgx_libc"
|
|
6981
7053
|
version = "2.0.0"
|
|
6982
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7054
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
6983
7055
|
dependencies = [
|
|
6984
7056
|
"sgx_ffi",
|
|
6985
7057
|
"sgx_oc",
|
|
@@ -6992,7 +7064,7 @@ dependencies = [
|
|
|
6992
7064
|
[[package]]
|
|
6993
7065
|
name = "sgx_oc"
|
|
6994
7066
|
version = "2.0.0"
|
|
6995
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7067
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
6996
7068
|
dependencies = [
|
|
6997
7069
|
"sgx_ffi",
|
|
6998
7070
|
"sgx_sync",
|
|
@@ -7003,7 +7075,7 @@ dependencies = [
|
|
|
7003
7075
|
[[package]]
|
|
7004
7076
|
name = "sgx_rsrvmm"
|
|
7005
7077
|
version = "2.0.0"
|
|
7006
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7078
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
7007
7079
|
dependencies = [
|
|
7008
7080
|
"sgx_sync",
|
|
7009
7081
|
"sgx_trts",
|
|
@@ -7013,7 +7085,7 @@ dependencies = [
|
|
|
7013
7085
|
[[package]]
|
|
7014
7086
|
name = "sgx_sync"
|
|
7015
7087
|
version = "2.0.0"
|
|
7016
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7088
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
7017
7089
|
dependencies = [
|
|
7018
7090
|
"sgx_trts",
|
|
7019
7091
|
"sgx_types",
|
|
@@ -7022,7 +7094,7 @@ dependencies = [
|
|
|
7022
7094
|
[[package]]
|
|
7023
7095
|
name = "sgx_test_macro"
|
|
7024
7096
|
version = "2.0.0"
|
|
7025
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7097
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
7026
7098
|
dependencies = [
|
|
7027
7099
|
"proc-macro2",
|
|
7028
7100
|
"quote",
|
|
@@ -7032,7 +7104,7 @@ dependencies = [
|
|
|
7032
7104
|
[[package]]
|
|
7033
7105
|
name = "sgx_test_utils"
|
|
7034
7106
|
version = "2.0.0"
|
|
7035
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7107
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
7036
7108
|
dependencies = [
|
|
7037
7109
|
"sgx_test_macro",
|
|
7038
7110
|
]
|
|
@@ -7040,7 +7112,7 @@ dependencies = [
|
|
|
7040
7112
|
[[package]]
|
|
7041
7113
|
name = "sgx_tlibc_sys"
|
|
7042
7114
|
version = "2.0.0"
|
|
7043
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7115
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
7044
7116
|
dependencies = [
|
|
7045
7117
|
"sgx_build_helper",
|
|
7046
7118
|
"sgx_download_prebuilt",
|
|
@@ -7050,7 +7122,7 @@ dependencies = [
|
|
|
7050
7122
|
[[package]]
|
|
7051
7123
|
name = "sgx_trts"
|
|
7052
7124
|
version = "2.0.0"
|
|
7053
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7125
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
7054
7126
|
dependencies = [
|
|
7055
7127
|
"bitflags 1.3.2",
|
|
7056
7128
|
"buddy_system_allocator",
|
|
@@ -7064,7 +7136,7 @@ dependencies = [
|
|
|
7064
7136
|
[[package]]
|
|
7065
7137
|
name = "sgx_tse"
|
|
7066
7138
|
version = "2.0.0"
|
|
7067
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7139
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
7068
7140
|
dependencies = [
|
|
7069
7141
|
"sgx_crypto",
|
|
7070
7142
|
"sgx_trts",
|
|
@@ -7074,7 +7146,7 @@ dependencies = [
|
|
|
7074
7146
|
[[package]]
|
|
7075
7147
|
name = "sgx_tseal"
|
|
7076
7148
|
version = "2.0.0"
|
|
7077
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7149
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
7078
7150
|
dependencies = [
|
|
7079
7151
|
"sgx_crypto",
|
|
7080
7152
|
"sgx_trts",
|
|
@@ -7085,7 +7157,7 @@ dependencies = [
|
|
|
7085
7157
|
[[package]]
|
|
7086
7158
|
name = "sgx_tstd"
|
|
7087
7159
|
version = "2.0.0"
|
|
7088
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7160
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
7089
7161
|
dependencies = [
|
|
7090
7162
|
"hashbrown_tstd",
|
|
7091
7163
|
"sgx_alloc",
|
|
@@ -7101,12 +7173,12 @@ dependencies = [
|
|
|
7101
7173
|
[[package]]
|
|
7102
7174
|
name = "sgx_types"
|
|
7103
7175
|
version = "2.0.0"
|
|
7104
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7176
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
7105
7177
|
|
|
7106
7178
|
[[package]]
|
|
7107
7179
|
name = "sgx_unit_test"
|
|
7108
7180
|
version = "2.0.0"
|
|
7109
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7181
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
7110
7182
|
dependencies = [
|
|
7111
7183
|
"sgx_test_utils",
|
|
7112
7184
|
"sgx_tstd",
|
|
@@ -7115,7 +7187,7 @@ dependencies = [
|
|
|
7115
7187
|
[[package]]
|
|
7116
7188
|
name = "sgx_unwind"
|
|
7117
7189
|
version = "2.0.0"
|
|
7118
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7190
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
7119
7191
|
dependencies = [
|
|
7120
7192
|
"sgx_build_helper",
|
|
7121
7193
|
]
|
|
@@ -7123,7 +7195,7 @@ dependencies = [
|
|
|
7123
7195
|
[[package]]
|
|
7124
7196
|
name = "sgx_uprotected_fs"
|
|
7125
7197
|
version = "2.0.0"
|
|
7126
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7198
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
7127
7199
|
dependencies = [
|
|
7128
7200
|
"libc",
|
|
7129
7201
|
"sgx_types",
|
|
@@ -7132,7 +7204,7 @@ dependencies = [
|
|
|
7132
7204
|
[[package]]
|
|
7133
7205
|
name = "sgx_urts"
|
|
7134
7206
|
version = "2.0.0"
|
|
7135
|
-
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=
|
|
7207
|
+
source = "git+https://gitlab.com/dexlabs/incubator-teaclave-sgx-sdk?branch=v2.0.0-sgx-emm#4256e955dc9cd69925ab0939ecfb03125e1ebeec"
|
|
7136
7208
|
dependencies = [
|
|
7137
7209
|
"libc",
|
|
7138
7210
|
"sgx_types",
|
|
@@ -7458,7 +7530,7 @@ dependencies = [
|
|
|
7458
7530
|
"proc-macro2",
|
|
7459
7531
|
"quote",
|
|
7460
7532
|
"rustversion",
|
|
7461
|
-
"syn 2.0.
|
|
7533
|
+
"syn 2.0.104",
|
|
7462
7534
|
]
|
|
7463
7535
|
|
|
7464
7536
|
[[package]]
|
|
@@ -7471,7 +7543,7 @@ dependencies = [
|
|
|
7471
7543
|
"proc-macro2",
|
|
7472
7544
|
"quote",
|
|
7473
7545
|
"rustversion",
|
|
7474
|
-
"syn 2.0.
|
|
7546
|
+
"syn 2.0.104",
|
|
7475
7547
|
]
|
|
7476
7548
|
|
|
7477
7549
|
[[package]]
|
|
@@ -7516,9 +7588,9 @@ dependencies = [
|
|
|
7516
7588
|
|
|
7517
7589
|
[[package]]
|
|
7518
7590
|
name = "syn"
|
|
7519
|
-
version = "2.0.
|
|
7591
|
+
version = "2.0.104"
|
|
7520
7592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7521
|
-
checksum = "
|
|
7593
|
+
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
|
|
7522
7594
|
dependencies = [
|
|
7523
7595
|
"proc-macro2",
|
|
7524
7596
|
"quote",
|
|
@@ -7534,7 +7606,7 @@ dependencies = [
|
|
|
7534
7606
|
"paste",
|
|
7535
7607
|
"proc-macro2",
|
|
7536
7608
|
"quote",
|
|
7537
|
-
"syn 2.0.
|
|
7609
|
+
"syn 2.0.104",
|
|
7538
7610
|
]
|
|
7539
7611
|
|
|
7540
7612
|
[[package]]
|
|
@@ -7560,7 +7632,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
|
7560
7632
|
dependencies = [
|
|
7561
7633
|
"proc-macro2",
|
|
7562
7634
|
"quote",
|
|
7563
|
-
"syn 2.0.
|
|
7635
|
+
"syn 2.0.104",
|
|
7564
7636
|
]
|
|
7565
7637
|
|
|
7566
7638
|
[[package]]
|
|
@@ -7592,9 +7664,9 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
|
7592
7664
|
|
|
7593
7665
|
[[package]]
|
|
7594
7666
|
name = "target-lexicon"
|
|
7595
|
-
version = "0.
|
|
7667
|
+
version = "0.13.2"
|
|
7596
7668
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7597
|
-
checksum = "
|
|
7669
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
7598
7670
|
|
|
7599
7671
|
[[package]]
|
|
7600
7672
|
name = "tempfile"
|
|
@@ -7639,7 +7711,7 @@ checksum = "888d0c3c6db53c0fdab160d2ed5e12ba745383d3e85813f2ea0f2b1475ab553f"
|
|
|
7639
7711
|
dependencies = [
|
|
7640
7712
|
"proc-macro2",
|
|
7641
7713
|
"quote",
|
|
7642
|
-
"syn 2.0.
|
|
7714
|
+
"syn 2.0.104",
|
|
7643
7715
|
]
|
|
7644
7716
|
|
|
7645
7717
|
[[package]]
|
|
@@ -7674,7 +7746,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
7674
7746
|
dependencies = [
|
|
7675
7747
|
"proc-macro2",
|
|
7676
7748
|
"quote",
|
|
7677
|
-
"syn 2.0.
|
|
7749
|
+
"syn 2.0.104",
|
|
7678
7750
|
]
|
|
7679
7751
|
|
|
7680
7752
|
[[package]]
|
|
@@ -7685,7 +7757,7 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
|
7685
7757
|
dependencies = [
|
|
7686
7758
|
"proc-macro2",
|
|
7687
7759
|
"quote",
|
|
7688
|
-
"syn 2.0.
|
|
7760
|
+
"syn 2.0.104",
|
|
7689
7761
|
]
|
|
7690
7762
|
|
|
7691
7763
|
[[package]]
|
|
@@ -7738,15 +7810,6 @@ dependencies = [
|
|
|
7738
7810
|
"time-core",
|
|
7739
7811
|
]
|
|
7740
7812
|
|
|
7741
|
-
[[package]]
|
|
7742
|
-
name = "tiny-keccak"
|
|
7743
|
-
version = "1.5.0"
|
|
7744
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7745
|
-
checksum = "1d8a021c69bb74a44ccedb824a046447e2c84a01df9e5c20779750acb38e11b2"
|
|
7746
|
-
dependencies = [
|
|
7747
|
-
"crunchy",
|
|
7748
|
-
]
|
|
7749
|
-
|
|
7750
7813
|
[[package]]
|
|
7751
7814
|
name = "tiny-keccak"
|
|
7752
7815
|
version = "2.0.2"
|
|
@@ -7828,7 +7891,7 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
|
|
7828
7891
|
dependencies = [
|
|
7829
7892
|
"proc-macro2",
|
|
7830
7893
|
"quote",
|
|
7831
|
-
"syn 2.0.
|
|
7894
|
+
"syn 2.0.104",
|
|
7832
7895
|
]
|
|
7833
7896
|
|
|
7834
7897
|
[[package]]
|
|
@@ -7899,18 +7962,6 @@ dependencies = [
|
|
|
7899
7962
|
"tokio-util",
|
|
7900
7963
|
]
|
|
7901
7964
|
|
|
7902
|
-
[[package]]
|
|
7903
|
-
name = "tokio-tungstenite"
|
|
7904
|
-
version = "0.18.0"
|
|
7905
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7906
|
-
checksum = "54319c93411147bced34cb5609a80e0a8e44c5999c93903a81cd866630ec0bfd"
|
|
7907
|
-
dependencies = [
|
|
7908
|
-
"futures-util",
|
|
7909
|
-
"log",
|
|
7910
|
-
"tokio",
|
|
7911
|
-
"tungstenite 0.18.0",
|
|
7912
|
-
]
|
|
7913
|
-
|
|
7914
7965
|
[[package]]
|
|
7915
7966
|
name = "tokio-tungstenite"
|
|
7916
7967
|
version = "0.26.2"
|
|
@@ -7920,7 +7971,7 @@ dependencies = [
|
|
|
7920
7971
|
"futures-util",
|
|
7921
7972
|
"log",
|
|
7922
7973
|
"tokio",
|
|
7923
|
-
"tungstenite
|
|
7974
|
+
"tungstenite",
|
|
7924
7975
|
]
|
|
7925
7976
|
|
|
7926
7977
|
[[package]]
|
|
@@ -7936,23 +7987,47 @@ dependencies = [
|
|
|
7936
7987
|
"tokio",
|
|
7937
7988
|
]
|
|
7938
7989
|
|
|
7990
|
+
[[package]]
|
|
7991
|
+
name = "toml"
|
|
7992
|
+
version = "0.8.23"
|
|
7993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7994
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
7995
|
+
dependencies = [
|
|
7996
|
+
"serde",
|
|
7997
|
+
"serde_spanned",
|
|
7998
|
+
"toml_datetime",
|
|
7999
|
+
"toml_edit",
|
|
8000
|
+
]
|
|
8001
|
+
|
|
7939
8002
|
[[package]]
|
|
7940
8003
|
name = "toml_datetime"
|
|
7941
|
-
version = "0.6.
|
|
8004
|
+
version = "0.6.11"
|
|
7942
8005
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7943
|
-
checksum = "
|
|
8006
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
8007
|
+
dependencies = [
|
|
8008
|
+
"serde",
|
|
8009
|
+
]
|
|
7944
8010
|
|
|
7945
8011
|
[[package]]
|
|
7946
8012
|
name = "toml_edit"
|
|
7947
|
-
version = "0.22.
|
|
8013
|
+
version = "0.22.27"
|
|
7948
8014
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7949
|
-
checksum = "
|
|
8015
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
7950
8016
|
dependencies = [
|
|
7951
8017
|
"indexmap 2.8.0",
|
|
8018
|
+
"serde",
|
|
8019
|
+
"serde_spanned",
|
|
7952
8020
|
"toml_datetime",
|
|
8021
|
+
"toml_write",
|
|
7953
8022
|
"winnow",
|
|
7954
8023
|
]
|
|
7955
8024
|
|
|
8025
|
+
[[package]]
|
|
8026
|
+
name = "toml_write"
|
|
8027
|
+
version = "0.1.2"
|
|
8028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
8029
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
8030
|
+
|
|
7956
8031
|
[[package]]
|
|
7957
8032
|
name = "tonic"
|
|
7958
8033
|
version = "0.10.2"
|
|
@@ -8035,9 +8110,11 @@ dependencies = [
|
|
|
8035
8110
|
"bitflags 2.9.0",
|
|
8036
8111
|
"bytes",
|
|
8037
8112
|
"http 1.3.1",
|
|
8113
|
+
"http-body 1.0.1",
|
|
8038
8114
|
"pin-project-lite",
|
|
8039
8115
|
"tower-layer",
|
|
8040
8116
|
"tower-service",
|
|
8117
|
+
"tracing",
|
|
8041
8118
|
]
|
|
8042
8119
|
|
|
8043
8120
|
[[package]]
|
|
@@ -8072,7 +8149,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
|
|
8072
8149
|
dependencies = [
|
|
8073
8150
|
"proc-macro2",
|
|
8074
8151
|
"quote",
|
|
8075
|
-
"syn 2.0.
|
|
8152
|
+
"syn 2.0.104",
|
|
8076
8153
|
]
|
|
8077
8154
|
|
|
8078
8155
|
[[package]]
|
|
@@ -8146,7 +8223,7 @@ checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7"
|
|
|
8146
8223
|
dependencies = [
|
|
8147
8224
|
"proc-macro2",
|
|
8148
8225
|
"quote",
|
|
8149
|
-
"syn 2.0.
|
|
8226
|
+
"syn 2.0.104",
|
|
8150
8227
|
]
|
|
8151
8228
|
|
|
8152
8229
|
[[package]]
|
|
@@ -8165,25 +8242,6 @@ version = "0.2.5"
|
|
|
8165
8242
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
8166
8243
|
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
8167
8244
|
|
|
8168
|
-
[[package]]
|
|
8169
|
-
name = "tungstenite"
|
|
8170
|
-
version = "0.18.0"
|
|
8171
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
8172
|
-
checksum = "30ee6ab729cd4cf0fd55218530c4522ed30b7b6081752839b68fcec8d0960788"
|
|
8173
|
-
dependencies = [
|
|
8174
|
-
"base64 0.13.1",
|
|
8175
|
-
"byteorder",
|
|
8176
|
-
"bytes",
|
|
8177
|
-
"http 0.2.12",
|
|
8178
|
-
"httparse",
|
|
8179
|
-
"log",
|
|
8180
|
-
"rand 0.8.5",
|
|
8181
|
-
"sha1",
|
|
8182
|
-
"thiserror 1.0.69",
|
|
8183
|
-
"url",
|
|
8184
|
-
"utf-8",
|
|
8185
|
-
]
|
|
8186
|
-
|
|
8187
8245
|
[[package]]
|
|
8188
8246
|
name = "tungstenite"
|
|
8189
8247
|
version = "0.26.2"
|
|
@@ -8231,12 +8289,6 @@ version = "0.1.4"
|
|
|
8231
8289
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
8232
8290
|
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
8233
8291
|
|
|
8234
|
-
[[package]]
|
|
8235
|
-
name = "unicase"
|
|
8236
|
-
version = "2.8.1"
|
|
8237
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
8238
|
-
checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
|
|
8239
|
-
|
|
8240
8292
|
[[package]]
|
|
8241
8293
|
name = "unicode-bidi"
|
|
8242
8294
|
version = "0.3.18"
|
|
@@ -8415,37 +8467,6 @@ dependencies = [
|
|
|
8415
8467
|
"try-lock",
|
|
8416
8468
|
]
|
|
8417
8469
|
|
|
8418
|
-
[[package]]
|
|
8419
|
-
name = "warp"
|
|
8420
|
-
version = "0.3.5"
|
|
8421
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
8422
|
-
checksum = "ba431ef570df1287f7f8b07e376491ad54f84d26ac473489427231e1718e1f69"
|
|
8423
|
-
dependencies = [
|
|
8424
|
-
"bytes",
|
|
8425
|
-
"futures-channel",
|
|
8426
|
-
"futures-util",
|
|
8427
|
-
"headers",
|
|
8428
|
-
"http 0.2.12",
|
|
8429
|
-
"hyper 0.14.32",
|
|
8430
|
-
"log",
|
|
8431
|
-
"mime",
|
|
8432
|
-
"mime_guess",
|
|
8433
|
-
"multer",
|
|
8434
|
-
"percent-encoding",
|
|
8435
|
-
"pin-project",
|
|
8436
|
-
"rustls-pemfile 1.0.4",
|
|
8437
|
-
"scoped-tls",
|
|
8438
|
-
"serde",
|
|
8439
|
-
"serde_json",
|
|
8440
|
-
"serde_urlencoded",
|
|
8441
|
-
"tokio",
|
|
8442
|
-
"tokio-stream",
|
|
8443
|
-
"tokio-tungstenite 0.18.0",
|
|
8444
|
-
"tokio-util",
|
|
8445
|
-
"tower-service",
|
|
8446
|
-
"tracing",
|
|
8447
|
-
]
|
|
8448
|
-
|
|
8449
8470
|
[[package]]
|
|
8450
8471
|
name = "wasi"
|
|
8451
8472
|
version = "0.11.0+wasi-snapshot-preview1"
|
|
@@ -8489,7 +8510,7 @@ dependencies = [
|
|
|
8489
8510
|
"log",
|
|
8490
8511
|
"proc-macro2",
|
|
8491
8512
|
"quote",
|
|
8492
|
-
"syn 2.0.
|
|
8513
|
+
"syn 2.0.104",
|
|
8493
8514
|
"wasm-bindgen-shared",
|
|
8494
8515
|
]
|
|
8495
8516
|
|
|
@@ -8524,7 +8545,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
|
8524
8545
|
dependencies = [
|
|
8525
8546
|
"proc-macro2",
|
|
8526
8547
|
"quote",
|
|
8527
|
-
"syn 2.0.
|
|
8548
|
+
"syn 2.0.104",
|
|
8528
8549
|
"wasm-bindgen-backend",
|
|
8529
8550
|
"wasm-bindgen-shared",
|
|
8530
8551
|
]
|
|
@@ -8559,7 +8580,7 @@ checksum = "17d5042cc5fa009658f9a7333ef24291b1291a25b6382dd68862a7f3b969f69b"
|
|
|
8559
8580
|
dependencies = [
|
|
8560
8581
|
"proc-macro2",
|
|
8561
8582
|
"quote",
|
|
8562
|
-
"syn 2.0.
|
|
8583
|
+
"syn 2.0.104",
|
|
8563
8584
|
]
|
|
8564
8585
|
|
|
8565
8586
|
[[package]]
|
|
@@ -8920,9 +8941,9 @@ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
|
8920
8941
|
|
|
8921
8942
|
[[package]]
|
|
8922
8943
|
name = "winnow"
|
|
8923
|
-
version = "0.7.
|
|
8944
|
+
version = "0.7.11"
|
|
8924
8945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
8925
|
-
checksum = "
|
|
8946
|
+
checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd"
|
|
8926
8947
|
dependencies = [
|
|
8927
8948
|
"memchr",
|
|
8928
8949
|
]
|
|
@@ -9021,7 +9042,7 @@ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
|
9021
9042
|
dependencies = [
|
|
9022
9043
|
"proc-macro2",
|
|
9023
9044
|
"quote",
|
|
9024
|
-
"syn 2.0.
|
|
9045
|
+
"syn 2.0.104",
|
|
9025
9046
|
"synstructure",
|
|
9026
9047
|
]
|
|
9027
9048
|
|
|
@@ -9051,7 +9072,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
|
9051
9072
|
dependencies = [
|
|
9052
9073
|
"proc-macro2",
|
|
9053
9074
|
"quote",
|
|
9054
|
-
"syn 2.0.
|
|
9075
|
+
"syn 2.0.104",
|
|
9055
9076
|
]
|
|
9056
9077
|
|
|
9057
9078
|
[[package]]
|
|
@@ -9062,7 +9083,7 @@ checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
|
|
|
9062
9083
|
dependencies = [
|
|
9063
9084
|
"proc-macro2",
|
|
9064
9085
|
"quote",
|
|
9065
|
-
"syn 2.0.
|
|
9086
|
+
"syn 2.0.104",
|
|
9066
9087
|
]
|
|
9067
9088
|
|
|
9068
9089
|
[[package]]
|
|
@@ -9082,7 +9103,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
|
9082
9103
|
dependencies = [
|
|
9083
9104
|
"proc-macro2",
|
|
9084
9105
|
"quote",
|
|
9085
|
-
"syn 2.0.
|
|
9106
|
+
"syn 2.0.104",
|
|
9086
9107
|
"synstructure",
|
|
9087
9108
|
]
|
|
9088
9109
|
|
|
@@ -9103,7 +9124,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
|
|
|
9103
9124
|
dependencies = [
|
|
9104
9125
|
"proc-macro2",
|
|
9105
9126
|
"quote",
|
|
9106
|
-
"syn 2.0.
|
|
9127
|
+
"syn 2.0.104",
|
|
9107
9128
|
]
|
|
9108
9129
|
|
|
9109
9130
|
[[package]]
|
|
@@ -9125,5 +9146,5 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
|
9125
9146
|
dependencies = [
|
|
9126
9147
|
"proc-macro2",
|
|
9127
9148
|
"quote",
|
|
9128
|
-
"syn 2.0.
|
|
9149
|
+
"syn 2.0.104",
|
|
9129
9150
|
]
|