tx-engine 0.7.1__tar.gz → 0.7.3__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.
- {tx_engine-0.7.1 → tx_engine-0.7.3}/Cargo.lock +99 -93
- {tx_engine-0.7.1 → tx_engine-0.7.3}/Cargo.toml +6 -6
- {tx_engine-0.7.1 → tx_engine-0.7.3}/PKG-INFO +1 -1
- {tx_engine-0.7.1 → tx_engine-0.7.3}/docs/Development.md +4 -2
- {tx_engine-0.7.1 → tx_engine-0.7.3}/docs/Releases.md +3 -1
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tests/test_bsv.py +4 -4
- tx_engine-0.7.3/python/src/tests/test_woc.py +135 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tx_engine/engine/op_code_names.py +2 -2
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tx_engine/engine/op_codes.py +2 -2
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tx_engine/interface/woc.py +2 -2
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/interface/uaas_interface.rs +3 -3
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/merkle_block.rs +2 -2
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/peer/peer.rs +3 -3
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/python/op_code_names.rs +2 -2
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/script/interpreter.rs +18 -3
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/script/mod.rs +4 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/util/bits.rs +2 -2
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/util/bloom_filter.rs +1 -1
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/util/rx.rs +1 -1
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/wallet/mnemonic.rs +1 -1
- {tx_engine-0.7.1 → tx_engine-0.7.3}/.github/workflows/CI.yml +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/.github/workflows/on_push.yml +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/.gitignore +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/LICENSE +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/LICENSE-rust-sv +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/README.md +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/docs/README-chain-gang.md +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/docs/Requirements +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/docs/diagrams/keys.png +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/docs/diagrams/keys.puml +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/docs/diagrams/overview.png +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/docs/diagrams/overview.puml +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/docs/diagrams/python_classes.png +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/docs/diagrams/python_classes.puml +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/pyproject.toml +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/lint.sh +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/requirements.txt +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tests/README.md +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tests/test_bit_twiddling.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tests/test_debug.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tests/test_ec.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tests/test_fed.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tests/test_if.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tests/test_interface.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tests/test_op.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tests/test_parse.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tests/test_script.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tests/test_sighash.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tests/test_sign.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tests/test_tx.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tests/test_wallet.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tx_engine/__init__.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tx_engine/engine/__init__.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tx_engine/engine/context.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tx_engine/engine/cryptography_utils.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tx_engine/engine/engine_types.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tx_engine/engine/util.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tx_engine/interface/__init__.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tx_engine/interface/blockchain_interface.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tx_engine/interface/interface_factory.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tx_engine/interface/mock_interface.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tx_engine/interface/rpc_interface.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tx_engine/interface/verify_script.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tx_engine/interface/woc_interface.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tx_engine/tx/__init__.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/src/tx_engine/tx/sighash.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/python/tests.sh +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/address/mod.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/interface/blockchain_interface.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/interface/mod.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/interface/test_interface.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/interface/woc_interface.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/lib.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/addr.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/authch.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/block.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/block_header.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/block_locator.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/blocktxn.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/cmpctblock.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/createstrm.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/fee_filter.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/filter_add.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/filter_load.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/getblocktxn.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/headers.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/inv.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/inv_vect.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/message.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/message_header.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/mod.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/node_addr.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/node_addr_ex.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/out_point.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/ping.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/protoconf.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/reject.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/send_cmpct.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/streamack.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/tx.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/tx_in.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/tx_out.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/messages/version.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/network/mod.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/network/network.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/network/seed_iter.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/peer/atomic_reader.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/peer/mod.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/python/mod.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/python/py_script.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/python/py_stack.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/python/py_tx.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/python/py_wallet.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/script/checker.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/script/op_codes.rs +4 -4
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/script/stack.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/transaction/mod.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/transaction/p2pkh.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/transaction/sighash.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/util/errors.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/util/future.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/util/hash160.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/util/hash256.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/util/latch.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/util/mod.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/util/serdes.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/util/sha1.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/util/sha256.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/util/var_int.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/wallet/base58_checksum.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/wallet/extended_key.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/wallet/mod.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/wallet/wallet.rs +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/wallet/wordlists/chinese_simplified.txt +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/wallet/wordlists/chinese_traditional.txt +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/wallet/wordlists/english.txt +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/wallet/wordlists/french.txt +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/wallet/wordlists/italian.txt +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/wallet/wordlists/japanese.txt +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/wallet/wordlists/korean.txt +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/src/wallet/wordlists/spanish.txt +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/tools/README.md +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/tools/dbg.py +0 -0
- {tx_engine-0.7.1 → tx_engine-0.7.3}/tools/generate_key.py +0 -0
|
@@ -28,18 +28,18 @@ dependencies = [
|
|
|
28
28
|
|
|
29
29
|
[[package]]
|
|
30
30
|
name = "async-mutex"
|
|
31
|
-
version = "1.4.
|
|
31
|
+
version = "1.4.1"
|
|
32
32
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
-
checksum = "
|
|
33
|
+
checksum = "73112ce9e1059d8604242af62c7ec8e5975ac58ac251686c8403b45e8a6fe778"
|
|
34
34
|
dependencies = [
|
|
35
35
|
"event-listener",
|
|
36
36
|
]
|
|
37
37
|
|
|
38
38
|
[[package]]
|
|
39
39
|
name = "async-trait"
|
|
40
|
-
version = "0.1.
|
|
40
|
+
version = "0.1.88"
|
|
41
41
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
-
checksum = "
|
|
42
|
+
checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
|
|
43
43
|
dependencies = [
|
|
44
44
|
"proc-macro2",
|
|
45
45
|
"quote",
|
|
@@ -93,9 +93,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
|
93
93
|
|
|
94
94
|
[[package]]
|
|
95
95
|
name = "base64ct"
|
|
96
|
-
version = "1.7.
|
|
96
|
+
version = "1.7.3"
|
|
97
97
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
-
checksum = "
|
|
98
|
+
checksum = "89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3"
|
|
99
99
|
|
|
100
100
|
[[package]]
|
|
101
101
|
name = "bitflags"
|
|
@@ -132,9 +132,9 @@ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
|
132
132
|
|
|
133
133
|
[[package]]
|
|
134
134
|
name = "cc"
|
|
135
|
-
version = "1.2.
|
|
135
|
+
version = "1.2.20"
|
|
136
136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
-
checksum = "
|
|
137
|
+
checksum = "04da6a0d40b948dfc4fa8f5bbf402b0fc1a64a28dbf7d12ffd683550f2c1b63a"
|
|
138
138
|
dependencies = [
|
|
139
139
|
"shlex",
|
|
140
140
|
]
|
|
@@ -147,7 +147,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
147
147
|
|
|
148
148
|
[[package]]
|
|
149
149
|
name = "chain-gang"
|
|
150
|
-
version = "0.7.
|
|
150
|
+
version = "0.7.3"
|
|
151
151
|
dependencies = [
|
|
152
152
|
"async-mutex",
|
|
153
153
|
"async-trait",
|
|
@@ -242,9 +242,9 @@ checksum = "b72465f46d518f6015d9cf07f7f3013a95dd6b9c2747c3d65ae0cce43929d14f"
|
|
|
242
242
|
|
|
243
243
|
[[package]]
|
|
244
244
|
name = "der"
|
|
245
|
-
version = "0.7.
|
|
245
|
+
version = "0.7.10"
|
|
246
246
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
-
checksum = "
|
|
247
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
248
248
|
dependencies = [
|
|
249
249
|
"const-oid",
|
|
250
250
|
"zeroize",
|
|
@@ -335,9 +335,9 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
|
335
335
|
|
|
336
336
|
[[package]]
|
|
337
337
|
name = "errno"
|
|
338
|
-
version = "0.3.
|
|
338
|
+
version = "0.3.11"
|
|
339
339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
-
checksum = "
|
|
340
|
+
checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
|
|
341
341
|
dependencies = [
|
|
342
342
|
"libc",
|
|
343
343
|
"windows-sys 0.59.0",
|
|
@@ -447,9 +447,9 @@ dependencies = [
|
|
|
447
447
|
|
|
448
448
|
[[package]]
|
|
449
449
|
name = "getrandom"
|
|
450
|
-
version = "0.2.
|
|
450
|
+
version = "0.2.16"
|
|
451
451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
-
checksum = "
|
|
452
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
453
453
|
dependencies = [
|
|
454
454
|
"cfg-if",
|
|
455
455
|
"libc",
|
|
@@ -458,14 +458,14 @@ dependencies = [
|
|
|
458
458
|
|
|
459
459
|
[[package]]
|
|
460
460
|
name = "getrandom"
|
|
461
|
-
version = "0.3.
|
|
461
|
+
version = "0.3.2"
|
|
462
462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
-
checksum = "
|
|
463
|
+
checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
|
|
464
464
|
dependencies = [
|
|
465
465
|
"cfg-if",
|
|
466
466
|
"libc",
|
|
467
|
-
"
|
|
468
|
-
"
|
|
467
|
+
"r-efi",
|
|
468
|
+
"wasi 0.14.2+wasi-0.2.4",
|
|
469
469
|
]
|
|
470
470
|
|
|
471
471
|
[[package]]
|
|
@@ -487,9 +487,9 @@ dependencies = [
|
|
|
487
487
|
|
|
488
488
|
[[package]]
|
|
489
489
|
name = "h2"
|
|
490
|
-
version = "0.4.
|
|
490
|
+
version = "0.4.9"
|
|
491
491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
-
checksum = "
|
|
492
|
+
checksum = "75249d144030531f8dee69fe9cea04d3edf809a017ae445e2abdff6629e86633"
|
|
493
493
|
dependencies = [
|
|
494
494
|
"atomic-waker",
|
|
495
495
|
"bytes",
|
|
@@ -626,9 +626,9 @@ dependencies = [
|
|
|
626
626
|
|
|
627
627
|
[[package]]
|
|
628
628
|
name = "hyper-util"
|
|
629
|
-
version = "0.1.
|
|
629
|
+
version = "0.1.11"
|
|
630
630
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
-
checksum = "
|
|
631
|
+
checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
|
|
632
632
|
dependencies = [
|
|
633
633
|
"bytes",
|
|
634
634
|
"futures-channel",
|
|
@@ -636,6 +636,7 @@ dependencies = [
|
|
|
636
636
|
"http",
|
|
637
637
|
"http-body",
|
|
638
638
|
"hyper",
|
|
639
|
+
"libc",
|
|
639
640
|
"pin-project-lite",
|
|
640
641
|
"socket2",
|
|
641
642
|
"tokio",
|
|
@@ -684,9 +685,9 @@ dependencies = [
|
|
|
684
685
|
|
|
685
686
|
[[package]]
|
|
686
687
|
name = "icu_locid_transform_data"
|
|
687
|
-
version = "1.5.
|
|
688
|
+
version = "1.5.1"
|
|
688
689
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
-
checksum = "
|
|
690
|
+
checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
|
|
690
691
|
|
|
691
692
|
[[package]]
|
|
692
693
|
name = "icu_normalizer"
|
|
@@ -708,9 +709,9 @@ dependencies = [
|
|
|
708
709
|
|
|
709
710
|
[[package]]
|
|
710
711
|
name = "icu_normalizer_data"
|
|
711
|
-
version = "1.5.
|
|
712
|
+
version = "1.5.1"
|
|
712
713
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
-
checksum = "
|
|
714
|
+
checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
|
|
714
715
|
|
|
715
716
|
[[package]]
|
|
716
717
|
name = "icu_properties"
|
|
@@ -729,9 +730,9 @@ dependencies = [
|
|
|
729
730
|
|
|
730
731
|
[[package]]
|
|
731
732
|
name = "icu_properties_data"
|
|
732
|
-
version = "1.5.
|
|
733
|
+
version = "1.5.1"
|
|
733
734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
734
|
-
checksum = "
|
|
735
|
+
checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
|
|
735
736
|
|
|
736
737
|
[[package]]
|
|
737
738
|
name = "icu_provider"
|
|
@@ -784,9 +785,9 @@ dependencies = [
|
|
|
784
785
|
|
|
785
786
|
[[package]]
|
|
786
787
|
name = "indexmap"
|
|
787
|
-
version = "2.
|
|
788
|
+
version = "2.9.0"
|
|
788
789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
-
checksum = "
|
|
790
|
+
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
|
790
791
|
dependencies = [
|
|
791
792
|
"equivalent",
|
|
792
793
|
"hashbrown",
|
|
@@ -842,9 +843,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
|
842
843
|
|
|
843
844
|
[[package]]
|
|
844
845
|
name = "libc"
|
|
845
|
-
version = "0.2.
|
|
846
|
+
version = "0.2.172"
|
|
846
847
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
-
checksum = "
|
|
848
|
+
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
|
848
849
|
|
|
849
850
|
[[package]]
|
|
850
851
|
name = "linked-hash-map"
|
|
@@ -854,9 +855,9 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
|
|
854
855
|
|
|
855
856
|
[[package]]
|
|
856
857
|
name = "linux-raw-sys"
|
|
857
|
-
version = "0.9.
|
|
858
|
+
version = "0.9.4"
|
|
858
859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
859
|
-
checksum = "
|
|
860
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
860
861
|
|
|
861
862
|
[[package]]
|
|
862
863
|
name = "litemap"
|
|
@@ -866,9 +867,9 @@ checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
|
|
866
867
|
|
|
867
868
|
[[package]]
|
|
868
869
|
name = "log"
|
|
869
|
-
version = "0.4.
|
|
870
|
+
version = "0.4.27"
|
|
870
871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
-
checksum = "
|
|
872
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
872
873
|
|
|
873
874
|
[[package]]
|
|
874
875
|
name = "memchr"
|
|
@@ -893,9 +894,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
|
893
894
|
|
|
894
895
|
[[package]]
|
|
895
896
|
name = "miniz_oxide"
|
|
896
|
-
version = "0.8.
|
|
897
|
+
version = "0.8.8"
|
|
897
898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
-
checksum = "
|
|
899
|
+
checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
|
899
900
|
dependencies = [
|
|
900
901
|
"adler2",
|
|
901
902
|
]
|
|
@@ -973,15 +974,15 @@ dependencies = [
|
|
|
973
974
|
|
|
974
975
|
[[package]]
|
|
975
976
|
name = "once_cell"
|
|
976
|
-
version = "1.21.
|
|
977
|
+
version = "1.21.3"
|
|
977
978
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
978
|
-
checksum = "
|
|
979
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
979
980
|
|
|
980
981
|
[[package]]
|
|
981
982
|
name = "openssl"
|
|
982
|
-
version = "0.10.
|
|
983
|
+
version = "0.10.72"
|
|
983
984
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
-
checksum = "
|
|
985
|
+
checksum = "fedfea7d58a1f73118430a55da6a286e7b044961736ce96a16a17068ea25e5da"
|
|
985
986
|
dependencies = [
|
|
986
987
|
"bitflags",
|
|
987
988
|
"cfg-if",
|
|
@@ -1011,9 +1012,9 @@ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
|
1011
1012
|
|
|
1012
1013
|
[[package]]
|
|
1013
1014
|
name = "openssl-sys"
|
|
1014
|
-
version = "0.9.
|
|
1015
|
+
version = "0.9.107"
|
|
1015
1016
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
-
checksum = "
|
|
1017
|
+
checksum = "8288979acd84749c744a9014b4382d42b8f7b2592847b5afb2ed29e5d16ede07"
|
|
1017
1018
|
dependencies = [
|
|
1018
1019
|
"cc",
|
|
1019
1020
|
"libc",
|
|
@@ -1082,18 +1083,18 @@ dependencies = [
|
|
|
1082
1083
|
|
|
1083
1084
|
[[package]]
|
|
1084
1085
|
name = "proc-macro2"
|
|
1085
|
-
version = "1.0.
|
|
1086
|
+
version = "1.0.95"
|
|
1086
1087
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1087
|
-
checksum = "
|
|
1088
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
1088
1089
|
dependencies = [
|
|
1089
1090
|
"unicode-ident",
|
|
1090
1091
|
]
|
|
1091
1092
|
|
|
1092
1093
|
[[package]]
|
|
1093
1094
|
name = "pyo3"
|
|
1094
|
-
version = "0.24.
|
|
1095
|
+
version = "0.24.2"
|
|
1095
1096
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1096
|
-
checksum = "
|
|
1097
|
+
checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
|
|
1097
1098
|
dependencies = [
|
|
1098
1099
|
"cfg-if",
|
|
1099
1100
|
"indoc",
|
|
@@ -1109,9 +1110,9 @@ dependencies = [
|
|
|
1109
1110
|
|
|
1110
1111
|
[[package]]
|
|
1111
1112
|
name = "pyo3-build-config"
|
|
1112
|
-
version = "0.24.
|
|
1113
|
+
version = "0.24.2"
|
|
1113
1114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1114
|
-
checksum = "
|
|
1115
|
+
checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
|
|
1115
1116
|
dependencies = [
|
|
1116
1117
|
"once_cell",
|
|
1117
1118
|
"target-lexicon",
|
|
@@ -1119,9 +1120,9 @@ dependencies = [
|
|
|
1119
1120
|
|
|
1120
1121
|
[[package]]
|
|
1121
1122
|
name = "pyo3-ffi"
|
|
1122
|
-
version = "0.24.
|
|
1123
|
+
version = "0.24.2"
|
|
1123
1124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
-
checksum = "
|
|
1125
|
+
checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
|
|
1125
1126
|
dependencies = [
|
|
1126
1127
|
"libc",
|
|
1127
1128
|
"pyo3-build-config",
|
|
@@ -1129,9 +1130,9 @@ dependencies = [
|
|
|
1129
1130
|
|
|
1130
1131
|
[[package]]
|
|
1131
1132
|
name = "pyo3-macros"
|
|
1132
|
-
version = "0.24.
|
|
1133
|
+
version = "0.24.2"
|
|
1133
1134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
-
checksum = "
|
|
1135
|
+
checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
|
|
1135
1136
|
dependencies = [
|
|
1136
1137
|
"proc-macro2",
|
|
1137
1138
|
"pyo3-macros-backend",
|
|
@@ -1141,9 +1142,9 @@ dependencies = [
|
|
|
1141
1142
|
|
|
1142
1143
|
[[package]]
|
|
1143
1144
|
name = "pyo3-macros-backend"
|
|
1144
|
-
version = "0.24.
|
|
1145
|
+
version = "0.24.2"
|
|
1145
1146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1146
|
-
checksum = "
|
|
1147
|
+
checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
|
|
1147
1148
|
dependencies = [
|
|
1148
1149
|
"heck",
|
|
1149
1150
|
"proc-macro2",
|
|
@@ -1161,6 +1162,12 @@ dependencies = [
|
|
|
1161
1162
|
"proc-macro2",
|
|
1162
1163
|
]
|
|
1163
1164
|
|
|
1165
|
+
[[package]]
|
|
1166
|
+
name = "r-efi"
|
|
1167
|
+
version = "5.2.0"
|
|
1168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
|
1170
|
+
|
|
1164
1171
|
[[package]]
|
|
1165
1172
|
name = "rand"
|
|
1166
1173
|
version = "0.8.5"
|
|
@@ -1188,7 +1195,7 @@ version = "0.6.4"
|
|
|
1188
1195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
1196
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1190
1197
|
dependencies = [
|
|
1191
|
-
"getrandom 0.2.
|
|
1198
|
+
"getrandom 0.2.16",
|
|
1192
1199
|
]
|
|
1193
1200
|
|
|
1194
1201
|
[[package]]
|
|
@@ -1228,9 +1235,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
|
1228
1235
|
|
|
1229
1236
|
[[package]]
|
|
1230
1237
|
name = "reqwest"
|
|
1231
|
-
version = "0.12.
|
|
1238
|
+
version = "0.12.15"
|
|
1232
1239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1233
|
-
checksum = "
|
|
1240
|
+
checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
|
|
1234
1241
|
dependencies = [
|
|
1235
1242
|
"base64",
|
|
1236
1243
|
"bytes",
|
|
@@ -1288,7 +1295,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
|
1288
1295
|
dependencies = [
|
|
1289
1296
|
"cc",
|
|
1290
1297
|
"cfg-if",
|
|
1291
|
-
"getrandom 0.2.
|
|
1298
|
+
"getrandom 0.2.16",
|
|
1292
1299
|
"libc",
|
|
1293
1300
|
"untrusted",
|
|
1294
1301
|
"windows-sys 0.52.0",
|
|
@@ -1311,9 +1318,9 @@ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
|
1311
1318
|
|
|
1312
1319
|
[[package]]
|
|
1313
1320
|
name = "rustix"
|
|
1314
|
-
version = "1.0.
|
|
1321
|
+
version = "1.0.5"
|
|
1315
1322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1316
|
-
checksum = "
|
|
1323
|
+
checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
|
|
1317
1324
|
dependencies = [
|
|
1318
1325
|
"bitflags",
|
|
1319
1326
|
"errno",
|
|
@@ -1324,9 +1331,9 @@ dependencies = [
|
|
|
1324
1331
|
|
|
1325
1332
|
[[package]]
|
|
1326
1333
|
name = "rustls"
|
|
1327
|
-
version = "0.23.
|
|
1334
|
+
version = "0.23.26"
|
|
1328
1335
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1329
|
-
checksum = "
|
|
1336
|
+
checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
|
|
1330
1337
|
dependencies = [
|
|
1331
1338
|
"once_cell",
|
|
1332
1339
|
"rustls-pki-types",
|
|
@@ -1352,9 +1359,9 @@ checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
|
|
|
1352
1359
|
|
|
1353
1360
|
[[package]]
|
|
1354
1361
|
name = "rustls-webpki"
|
|
1355
|
-
version = "0.
|
|
1362
|
+
version = "0.103.1"
|
|
1356
1363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
|
-
checksum = "
|
|
1364
|
+
checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
|
|
1358
1365
|
dependencies = [
|
|
1359
1366
|
"ring",
|
|
1360
1367
|
"rustls-pki-types",
|
|
@@ -1512,9 +1519,9 @@ dependencies = [
|
|
|
1512
1519
|
|
|
1513
1520
|
[[package]]
|
|
1514
1521
|
name = "smallvec"
|
|
1515
|
-
version = "1.
|
|
1522
|
+
version = "1.15.0"
|
|
1516
1523
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1517
|
-
checksum = "
|
|
1524
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
|
1518
1525
|
|
|
1519
1526
|
[[package]]
|
|
1520
1527
|
name = "snowflake"
|
|
@@ -1524,9 +1531,9 @@ checksum = "27207bb65232eda1f588cf46db2fee75c0808d557f6b3cf19a75f5d6d7c94df1"
|
|
|
1524
1531
|
|
|
1525
1532
|
[[package]]
|
|
1526
1533
|
name = "socket2"
|
|
1527
|
-
version = "0.5.
|
|
1534
|
+
version = "0.5.9"
|
|
1528
1535
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1529
|
-
checksum = "
|
|
1536
|
+
checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
|
|
1530
1537
|
dependencies = [
|
|
1531
1538
|
"libc",
|
|
1532
1539
|
"windows-sys 0.52.0",
|
|
@@ -1556,9 +1563,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
1556
1563
|
|
|
1557
1564
|
[[package]]
|
|
1558
1565
|
name = "syn"
|
|
1559
|
-
version = "2.0.
|
|
1566
|
+
version = "2.0.101"
|
|
1560
1567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
-
checksum = "
|
|
1568
|
+
checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
|
|
1562
1569
|
dependencies = [
|
|
1563
1570
|
"proc-macro2",
|
|
1564
1571
|
"quote",
|
|
@@ -1614,13 +1621,12 @@ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
|
1614
1621
|
|
|
1615
1622
|
[[package]]
|
|
1616
1623
|
name = "tempfile"
|
|
1617
|
-
version = "3.
|
|
1624
|
+
version = "3.19.1"
|
|
1618
1625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
-
checksum = "
|
|
1626
|
+
checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
|
|
1620
1627
|
dependencies = [
|
|
1621
|
-
"cfg-if",
|
|
1622
1628
|
"fastrand",
|
|
1623
|
-
"getrandom 0.3.
|
|
1629
|
+
"getrandom 0.3.2",
|
|
1624
1630
|
"once_cell",
|
|
1625
1631
|
"rustix",
|
|
1626
1632
|
"windows-sys 0.59.0",
|
|
@@ -1658,9 +1664,9 @@ dependencies = [
|
|
|
1658
1664
|
|
|
1659
1665
|
[[package]]
|
|
1660
1666
|
name = "tokio"
|
|
1661
|
-
version = "1.44.
|
|
1667
|
+
version = "1.44.2"
|
|
1662
1668
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1663
|
-
checksum = "
|
|
1669
|
+
checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
|
|
1664
1670
|
dependencies = [
|
|
1665
1671
|
"backtrace",
|
|
1666
1672
|
"bytes",
|
|
@@ -1693,9 +1699,9 @@ dependencies = [
|
|
|
1693
1699
|
|
|
1694
1700
|
[[package]]
|
|
1695
1701
|
name = "tokio-util"
|
|
1696
|
-
version = "0.7.
|
|
1702
|
+
version = "0.7.15"
|
|
1697
1703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1698
|
-
checksum = "
|
|
1704
|
+
checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
|
|
1699
1705
|
dependencies = [
|
|
1700
1706
|
"bytes",
|
|
1701
1707
|
"futures-core",
|
|
@@ -1832,9 +1838,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
1832
1838
|
|
|
1833
1839
|
[[package]]
|
|
1834
1840
|
name = "wasi"
|
|
1835
|
-
version = "0.
|
|
1841
|
+
version = "0.14.2+wasi-0.2.4"
|
|
1836
1842
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1837
|
-
checksum = "
|
|
1843
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
|
1838
1844
|
dependencies = [
|
|
1839
1845
|
"wit-bindgen-rt",
|
|
1840
1846
|
]
|
|
@@ -1922,9 +1928,9 @@ dependencies = [
|
|
|
1922
1928
|
|
|
1923
1929
|
[[package]]
|
|
1924
1930
|
name = "windows-link"
|
|
1925
|
-
version = "0.1.
|
|
1931
|
+
version = "0.1.1"
|
|
1926
1932
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1927
|
-
checksum = "
|
|
1933
|
+
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
|
1928
1934
|
|
|
1929
1935
|
[[package]]
|
|
1930
1936
|
name = "windows-registry"
|
|
@@ -1939,9 +1945,9 @@ dependencies = [
|
|
|
1939
1945
|
|
|
1940
1946
|
[[package]]
|
|
1941
1947
|
name = "windows-result"
|
|
1942
|
-
version = "0.3.
|
|
1948
|
+
version = "0.3.2"
|
|
1943
1949
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1944
|
-
checksum = "
|
|
1950
|
+
checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
|
|
1945
1951
|
dependencies = [
|
|
1946
1952
|
"windows-link",
|
|
1947
1953
|
]
|
|
@@ -2169,9 +2175,9 @@ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
|
2169
2175
|
|
|
2170
2176
|
[[package]]
|
|
2171
2177
|
name = "wit-bindgen-rt"
|
|
2172
|
-
version = "0.
|
|
2178
|
+
version = "0.39.0"
|
|
2173
2179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2174
|
-
checksum = "
|
|
2180
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
2175
2181
|
dependencies = [
|
|
2176
2182
|
"bitflags",
|
|
2177
2183
|
]
|
|
@@ -2214,18 +2220,18 @@ dependencies = [
|
|
|
2214
2220
|
|
|
2215
2221
|
[[package]]
|
|
2216
2222
|
name = "zerocopy"
|
|
2217
|
-
version = "0.8.
|
|
2223
|
+
version = "0.8.25"
|
|
2218
2224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2219
|
-
checksum = "
|
|
2225
|
+
checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
|
|
2220
2226
|
dependencies = [
|
|
2221
2227
|
"zerocopy-derive",
|
|
2222
2228
|
]
|
|
2223
2229
|
|
|
2224
2230
|
[[package]]
|
|
2225
2231
|
name = "zerocopy-derive"
|
|
2226
|
-
version = "0.8.
|
|
2232
|
+
version = "0.8.25"
|
|
2227
2233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2228
|
-
checksum = "
|
|
2234
|
+
checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
|
|
2229
2235
|
dependencies = [
|
|
2230
2236
|
"proc-macro2",
|
|
2231
2237
|
"quote",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "chain-gang"
|
|
3
|
-
version = "0.7.
|
|
3
|
+
version = "0.7.3"
|
|
4
4
|
description = "This is a library that enables monitoring of multiple blockchains (BTC, BCH, BSV)."
|
|
5
5
|
# repository = "https://github.com/brentongunning/rust-sv"
|
|
6
6
|
authors = ["Arthur Gordon <a.gordon@nchain.com>"]
|
|
@@ -13,7 +13,7 @@ byteorder = "1.2"
|
|
|
13
13
|
dns-lookup = "2.0.4"
|
|
14
14
|
hex = "0.4.3"
|
|
15
15
|
linked-hash-map = "0.5"
|
|
16
|
-
log = { version = "0.4.
|
|
16
|
+
log = { version = "0.4.27", features = ["max_level_trace", "release_max_level_warn"] }
|
|
17
17
|
db-key = "0.0.5"
|
|
18
18
|
thiserror = "2.0.12"
|
|
19
19
|
url = "2.5.4"
|
|
@@ -37,12 +37,12 @@ pbkdf2 = "0.12.2"
|
|
|
37
37
|
# Used by the interface feature
|
|
38
38
|
serde = { version = "1.0.219", features = ["derive"], optional = true }
|
|
39
39
|
serde_json = { version = "1.0.140", optional = true }
|
|
40
|
-
reqwest = { version = "0.12.
|
|
41
|
-
async-mutex = { version = "1.4.
|
|
42
|
-
async-trait = { version = "0.1.
|
|
40
|
+
reqwest = { version = "0.12.15", features = ["json"], optional = true }
|
|
41
|
+
async-mutex = { version = "1.4.1", optional = true }
|
|
42
|
+
async-trait = { version = "0.1.88", optional = true }
|
|
43
43
|
|
|
44
44
|
# For python feature
|
|
45
|
-
pyo3 = { version = "0.24.
|
|
45
|
+
pyo3 = { version = "0.24.2", optional = true }
|
|
46
46
|
regex = "^1.5.5"
|
|
47
47
|
lazy_static = "1.5.0"
|
|
48
48
|
rand_core = "0.9.3"
|
|
@@ -45,6 +45,7 @@ For more information on the tests see [here](../python/src/tests/README.md)
|
|
|
45
45
|
To perform static code analysis on the Python source code run the following:
|
|
46
46
|
|
|
47
47
|
```bash
|
|
48
|
+
|
|
48
49
|
$ cd python
|
|
49
50
|
$ ./lint.sh
|
|
50
51
|
```
|
|
@@ -99,8 +100,9 @@ https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-e
|
|
|
99
100
|
# Github & PyPi
|
|
100
101
|
|
|
101
102
|
To force a release the git version needs to be tagged.
|
|
102
|
-
1) Update `cargo.toml` version
|
|
103
|
-
2)
|
|
103
|
+
1) Update `cargo.toml` version
|
|
104
|
+
2) Update `Releases.md` file
|
|
105
|
+
3) push code up to repo. Otherwise GitHub won't figure out that the software has been updated.
|
|
104
106
|
4) Update git `tag` and push. Otherwise the GitHub action `release` will not be triggered.
|
|
105
107
|
|
|
106
108
|
```bash
|
|
@@ -45,4 +45,6 @@
|
|
|
45
45
|
* v0.6.14 - Try again - remove platforms that did not read env vars
|
|
46
46
|
* v0.6.15 - Try again - remove two more platforms that did not read env vars
|
|
47
47
|
* v0.7.0 - Bump version for Python 3.13 support
|
|
48
|
-
* v0.7.1 -
|
|
48
|
+
* v0.7.1 - Fixed OP_CODESEPARATOR
|
|
49
|
+
* v0.7.2 - Added OP_2MUL and OP_2DIV script operations
|
|
50
|
+
* v0.7.3 - Fixed WoC endpoints get_block_header and get_merkle_proof to use new TSC endpoint
|
|
@@ -140,16 +140,16 @@ class BSVTests(unittest.TestCase):
|
|
|
140
140
|
"""
|
|
141
141
|
script = Script([OP_16, OP_2MUL])
|
|
142
142
|
context = Context(script=script)
|
|
143
|
-
|
|
144
|
-
self.
|
|
143
|
+
self.assertTrue(context.evaluate_core())
|
|
144
|
+
self.assertEqual(context.get_stack(), Stack([[32]]))
|
|
145
145
|
|
|
146
146
|
def test_2div(self):
|
|
147
147
|
""" Simple check of 2DIV
|
|
148
148
|
"""
|
|
149
149
|
script = Script([OP_16, OP_2DIV])
|
|
150
150
|
context = Context(script=script)
|
|
151
|
-
|
|
152
|
-
self.
|
|
151
|
+
self.assertTrue(context.evaluate_core())
|
|
152
|
+
self.assertEqual(context.get_stack(), Stack([[8]]))
|
|
153
153
|
|
|
154
154
|
def test_mod(self):
|
|
155
155
|
""" Simple check of MOD
|