ddx-python 0.2.5__tar.gz → 0.2.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (113) hide show
  1. {ddx_python-0.2.5 → ddx_python-0.2.6}/Cargo.lock +592 -163
  2. {ddx_python-0.2.5 → ddx_python-0.2.6}/PKG-INFO +1 -1
  3. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/Cargo.toml +22 -12
  4. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/attestation.rs +8 -3
  5. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/constants.rs +8 -4
  6. ddx_python-0.2.6/ddx-common/src/copy_trading/auth.rs +116 -0
  7. ddx_python-0.2.6/ddx-common/src/copy_trading/execution.rs +489 -0
  8. ddx_python-0.2.6/ddx-common/src/copy_trading/mod.rs +133 -0
  9. ddx_python-0.2.6/ddx-common/src/copy_trading/strategy.rs +252 -0
  10. ddx_python-0.2.6/ddx-common/src/copy_trading/subscribe.rs +73 -0
  11. ddx_python-0.2.6/ddx-common/src/copy_trading/test_account.rs +43 -0
  12. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/crypto/encryption.rs +18 -14
  13. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/crypto.rs +19 -10
  14. {ddx_python-0.2.5/ddx-common/src → ddx_python-0.2.6/ddx-common/src/enclave}/ecall.rs +1 -0
  15. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/enclave/runtime.rs +1 -1
  16. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/enclave.rs +39 -5
  17. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/execution/error.rs +4 -43
  18. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/execution/test_utils.rs +29 -18
  19. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/execution/validation.rs +0 -16
  20. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/lib.rs +17 -7
  21. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/node/errors.rs +8 -0
  22. ddx_python-0.2.6/ddx-common/src/node/mod.rs +5 -0
  23. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/types/accounting.rs +4 -16
  24. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/types/contract_events.rs +114 -6
  25. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/types/ethereum.rs +1 -1
  26. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/types/identifiers.rs +7 -13
  27. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/types/mod.rs +1 -3
  28. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/types/primitives.rs +61 -2
  29. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/types/request.rs +280 -26
  30. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/types/state/exported.rs +21 -9
  31. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/types/state.rs +38 -45
  32. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/types/transaction.rs +228 -303
  33. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/util/eip712.rs +67 -9
  34. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/util/mem.rs +5 -1
  35. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/util/mod.rs +2 -0
  36. ddx_python-0.2.6/ddx-common/src/util/node.rs +62 -0
  37. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/util/tokenize.rs +1 -2
  38. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/util/tracing.rs +8 -0
  39. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/Cargo.toml +5 -2
  40. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/src/ddx_common.rs +3 -2
  41. ddx_python-0.2.5/ddx-common/src/node/mod.rs +0 -3
  42. ddx_python-0.2.5/ddx-common/src/ocall.rs +0 -11
  43. ddx_python-0.2.5/ddx-common/src/types/execution.rs +0 -48
  44. {ddx_python-0.2.5 → ddx_python-0.2.6}/Cargo.toml +0 -0
  45. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/macros/Cargo.toml +0 -0
  46. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/macros/src/lib.rs +0 -0
  47. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/pkg/ddx_common.d.ts +0 -0
  48. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/core/runner.rs +0 -0
  49. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/core/services.rs +0 -0
  50. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/core.rs +0 -0
  51. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/crypto/signing.rs +0 -0
  52. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/db/admin.rs +0 -0
  53. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/db/mod.rs +0 -0
  54. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/db/txn_like.rs +0 -0
  55. /ddx_python-0.2.5/ddx-common/src/enclave/ocall.rs → /ddx_python-0.2.6/ddx-common/src/enclave/ocall_impl.rs +0 -0
  56. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/error.rs +0 -0
  57. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/execution/accounting.rs +0 -0
  58. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/execution/mod.rs +0 -0
  59. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/execution/test_accounts.rs +0 -0
  60. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/global.rs +0 -0
  61. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/node/api.rs +0 -0
  62. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/node/db.rs +0 -0
  63. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/specs/constants.rs +0 -0
  64. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/specs/eval.rs +0 -0
  65. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/specs/float_parser.rs +0 -0
  66. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/specs/index_fund.rs +0 -0
  67. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/specs/quarterly_expiry_future.rs +0 -0
  68. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/specs/str_parser.rs +0 -0
  69. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/specs/types.rs +0 -0
  70. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/specs.rs +0 -0
  71. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/tree/README.md +0 -0
  72. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/tree/mod.rs +0 -0
  73. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/tree/shared_smt.rs +0 -0
  74. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/tree/shared_store.rs +0 -0
  75. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/trusted_settings.rs +0 -0
  76. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/types/accounting/balance.rs +0 -0
  77. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/types/checkpoint.rs +0 -0
  78. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/types/clock.rs +0 -0
  79. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/types/contract.rs +0 -0
  80. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/types/primitives/numbers.rs +0 -0
  81. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/types/state/tradable_product.rs +0 -0
  82. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/types/state/trader.rs +0 -0
  83. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/util/backoff.rs +0 -0
  84. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/util/convert.rs +0 -0
  85. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/util/enclave.rs +0 -0
  86. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/util/env.rs +0 -0
  87. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-common/src/util/serde.rs +0 -0
  88. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/README.md +0 -0
  89. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/src/decimal.rs +0 -0
  90. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/src/h256.rs +0 -0
  91. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/src/lib.rs +0 -0
  92. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/__init__.py +0 -0
  93. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/decimal/Add_000_001.csv +0 -0
  94. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/decimal/Add_100_100.csv +0 -0
  95. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/decimal/Add_111_111.csv +0 -0
  96. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/decimal/Div_100_100.csv +0 -0
  97. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/decimal/Div_101_010.csv +0 -0
  98. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/decimal/Div_110_000.csv +0 -0
  99. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/decimal/Div_111_110.csv +0 -0
  100. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/decimal/Div_111_111.csv +0 -0
  101. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/decimal/Mul_001_000.csv +0 -0
  102. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/decimal/Mul_010_111.csv +0 -0
  103. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/decimal/Mul_100_101.csv +0 -0
  104. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/decimal/Mul_110_001.csv +0 -0
  105. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/decimal/Mul_111_111.csv +0 -0
  106. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/decimal/Rem_101_101.csv +0 -0
  107. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/decimal/Rem_111_000.csv +0 -0
  108. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/decimal/Rem_111_110.csv +0 -0
  109. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/decimal/Sub_101_110.csv +0 -0
  110. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/decimal/Sub_110_011.csv +0 -0
  111. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/decimal/Sub_111_111.csv +0 -0
  112. {ddx_python-0.2.5 → ddx_python-0.2.6}/ddx-python/tests/decimal_test.py +0 -0
  113. {ddx_python-0.2.5 → ddx_python-0.2.6}/pyproject.toml +0 -0
@@ -95,7 +95,7 @@ version = "0.7.8"
95
95
  source = "registry+https://github.com/rust-lang/crates.io-index"
96
96
  checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
97
97
  dependencies = [
98
- "getrandom 0.2.15",
98
+ "getrandom",
99
99
  "once_cell",
100
100
  "version_check",
101
101
  ]
@@ -107,7 +107,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
107
107
  checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
108
108
  dependencies = [
109
109
  "cfg-if 1.0.0",
110
- "getrandom 0.2.15",
110
+ "getrandom",
111
111
  "once_cell",
112
112
  "version_check",
113
113
  "zerocopy",
@@ -232,12 +232,6 @@ version = "0.3.9"
232
232
  source = "registry+https://github.com/rust-lang/crates.io-index"
233
233
  checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
234
234
 
235
- [[package]]
236
- name = "arrayvec"
237
- version = "0.5.2"
238
- source = "registry+https://github.com/rust-lang/crates.io-index"
239
- checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
240
-
241
235
  [[package]]
242
236
  name = "arrayvec"
243
237
  version = "0.7.6"
@@ -498,7 +492,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
498
492
  checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf"
499
493
  dependencies = [
500
494
  "async-trait",
501
- "axum-core",
495
+ "axum-core 0.3.4",
502
496
  "bitflags 1.3.2",
503
497
  "bytes",
504
498
  "futures-util",
@@ -506,19 +500,56 @@ dependencies = [
506
500
  "http-body 0.4.6",
507
501
  "hyper 0.14.32",
508
502
  "itoa",
509
- "matchit",
503
+ "matchit 0.7.3",
510
504
  "memchr",
511
505
  "mime",
512
506
  "percent-encoding",
513
507
  "pin-project-lite",
514
508
  "rustversion",
515
509
  "serde",
516
- "sync_wrapper",
517
- "tower",
510
+ "sync_wrapper 0.1.2",
511
+ "tower 0.4.13",
518
512
  "tower-layer",
519
513
  "tower-service",
520
514
  ]
521
515
 
516
+ [[package]]
517
+ name = "axum"
518
+ version = "0.8.1"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "6d6fd624c75e18b3b4c6b9caf42b1afe24437daaee904069137d8bab077be8b8"
521
+ dependencies = [
522
+ "axum-core 0.5.0",
523
+ "base64 0.22.1",
524
+ "bytes",
525
+ "form_urlencoded",
526
+ "futures-util",
527
+ "http 1.2.0",
528
+ "http-body 1.0.1",
529
+ "http-body-util",
530
+ "hyper 1.5.2",
531
+ "hyper-util",
532
+ "itoa",
533
+ "matchit 0.8.4",
534
+ "memchr",
535
+ "mime",
536
+ "percent-encoding",
537
+ "pin-project-lite",
538
+ "rustversion",
539
+ "serde",
540
+ "serde_json",
541
+ "serde_path_to_error",
542
+ "serde_urlencoded",
543
+ "sha1",
544
+ "sync_wrapper 1.0.2",
545
+ "tokio",
546
+ "tokio-tungstenite 0.26.1",
547
+ "tower 0.5.2",
548
+ "tower-layer",
549
+ "tower-service",
550
+ "tracing",
551
+ ]
552
+
522
553
  [[package]]
523
554
  name = "axum-core"
524
555
  version = "0.3.4"
@@ -536,13 +567,33 @@ dependencies = [
536
567
  "tower-service",
537
568
  ]
538
569
 
570
+ [[package]]
571
+ name = "axum-core"
572
+ version = "0.5.0"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "df1362f362fd16024ae199c1970ce98f9661bf5ef94b9808fee734bc3698b733"
575
+ dependencies = [
576
+ "bytes",
577
+ "futures-util",
578
+ "http 1.2.0",
579
+ "http-body 1.0.1",
580
+ "http-body-util",
581
+ "mime",
582
+ "pin-project-lite",
583
+ "rustversion",
584
+ "sync_wrapper 1.0.2",
585
+ "tower-layer",
586
+ "tower-service",
587
+ "tracing",
588
+ ]
589
+
539
590
  [[package]]
540
591
  name = "backoff"
541
592
  version = "0.4.0"
542
593
  source = "registry+https://github.com/rust-lang/crates.io-index"
543
594
  checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1"
544
595
  dependencies = [
545
- "getrandom 0.2.15",
596
+ "getrandom",
546
597
  "instant",
547
598
  "rand",
548
599
  ]
@@ -588,11 +639,11 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
588
639
 
589
640
  [[package]]
590
641
  name = "base64-url"
591
- version = "2.0.2"
642
+ version = "3.0.0"
592
643
  source = "registry+https://github.com/rust-lang/crates.io-index"
593
- checksum = "fb9fb9fb058cc3063b5fc88d9a21eefa2735871498a04e1650da76ed511c8569"
644
+ checksum = "38e2b6c78c06f7288d5e3c3d683bde35a79531127c83b087e5d0d77c974b4b28"
594
645
  dependencies = [
595
- "base64 0.21.7",
646
+ "base64 0.22.1",
596
647
  ]
597
648
 
598
649
  [[package]]
@@ -691,17 +742,6 @@ dependencies = [
691
742
  "cc",
692
743
  ]
693
744
 
694
- [[package]]
695
- name = "blake2b_simd"
696
- version = "0.5.11"
697
- source = "registry+https://github.com/rust-lang/crates.io-index"
698
- checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587"
699
- dependencies = [
700
- "arrayref",
701
- "arrayvec 0.5.2",
702
- "constant_time_eq",
703
- ]
704
-
705
745
  [[package]]
706
746
  name = "block-buffer"
707
747
  version = "0.9.0"
@@ -887,6 +927,7 @@ dependencies = [
887
927
  "iana-time-zone",
888
928
  "js-sys",
889
929
  "num-traits",
930
+ "serde",
890
931
  "wasm-bindgen",
891
932
  "windows-targets 0.52.6",
892
933
  ]
@@ -968,7 +1009,7 @@ dependencies = [
968
1009
  "anstream",
969
1010
  "anstyle",
970
1011
  "clap_lex 0.7.4",
971
- "strsim",
1012
+ "strsim 0.11.1",
972
1013
  ]
973
1014
 
974
1015
  [[package]]
@@ -1076,18 +1117,89 @@ version = "0.9.6"
1076
1117
  source = "registry+https://github.com/rust-lang/crates.io-index"
1077
1118
  checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
1078
1119
 
1079
- [[package]]
1080
- name = "constant_time_eq"
1081
- version = "0.1.5"
1082
- source = "registry+https://github.com/rust-lang/crates.io-index"
1083
- checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
1084
-
1085
1120
  [[package]]
1086
1121
  name = "convert_case"
1087
1122
  version = "0.4.0"
1088
1123
  source = "registry+https://github.com/rust-lang/crates.io-index"
1089
1124
  checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
1090
1125
 
1126
+ [[package]]
1127
+ name = "copy-trading-backend"
1128
+ version = "0.1.0"
1129
+ dependencies = [
1130
+ "anyhow",
1131
+ "async-trait",
1132
+ "axum 0.8.1",
1133
+ "base64 0.22.1",
1134
+ "chrono",
1135
+ "clap 4.5.24",
1136
+ "ddx-common",
1137
+ "ddx-ethereum",
1138
+ "deadpool-postgres",
1139
+ "derive_builder",
1140
+ "futures 0.3.31",
1141
+ "futures-util",
1142
+ "itertools 0.14.0",
1143
+ "lazy_static",
1144
+ "pem 1.1.1",
1145
+ "rand",
1146
+ "reqwest",
1147
+ "ring 0.17.8",
1148
+ "rust_decimal",
1149
+ "rustc-hex",
1150
+ "serde",
1151
+ "serde_json",
1152
+ "sgx_types",
1153
+ "sgx_urts",
1154
+ "time",
1155
+ "tokio",
1156
+ "tokio-tungstenite 0.26.1",
1157
+ "tower-http",
1158
+ "tracing",
1159
+ "tracing-subscriber",
1160
+ ]
1161
+
1162
+ [[package]]
1163
+ name = "copy-trading-enclave"
1164
+ version = "0.1.0"
1165
+ dependencies = [
1166
+ "anyhow",
1167
+ "backoff",
1168
+ "base64 0.22.1",
1169
+ "chrono",
1170
+ "ddx-common",
1171
+ "ddx-common-enclave",
1172
+ "ethereum-types",
1173
+ "fefix",
1174
+ "futures 0.3.31",
1175
+ "futures-util",
1176
+ "hex",
1177
+ "http-body-util",
1178
+ "hyper 1.5.2",
1179
+ "hyper-rustls 0.27.5",
1180
+ "hyper-util",
1181
+ "lazy_static",
1182
+ "pem 1.1.1",
1183
+ "rand",
1184
+ "regex",
1185
+ "ring 0.16.19",
1186
+ "rust_decimal",
1187
+ "rustls 0.23.20",
1188
+ "serde",
1189
+ "serde_json",
1190
+ "sgx_libc",
1191
+ "sgx_trts",
1192
+ "sgx_types",
1193
+ "sgx_unit_test",
1194
+ "static_assertions",
1195
+ "thiserror 1.0.69",
1196
+ "tokio",
1197
+ "tokio-rustls 0.26.1",
1198
+ "tokio-stream",
1199
+ "tracing",
1200
+ "webpki-roots 0.26.7",
1201
+ ]
1202
+
1091
1203
  [[package]]
1092
1204
  name = "core-foundation"
1093
1205
  version = "0.9.4"
@@ -1308,14 +1420,38 @@ dependencies = [
1308
1420
  "windows-sys 0.52.0",
1309
1421
  ]
1310
1422
 
1423
+ [[package]]
1424
+ name = "darling"
1425
+ version = "0.12.4"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "5f2c43f534ea4b0b049015d00269734195e6d3f0f6635cb692251aca6f9f8b3c"
1428
+ dependencies = [
1429
+ "darling_core 0.12.4",
1430
+ "darling_macro 0.12.4",
1431
+ ]
1432
+
1311
1433
  [[package]]
1312
1434
  name = "darling"
1313
1435
  version = "0.20.10"
1314
1436
  source = "registry+https://github.com/rust-lang/crates.io-index"
1315
1437
  checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
1316
1438
  dependencies = [
1317
- "darling_core",
1318
- "darling_macro",
1439
+ "darling_core 0.20.10",
1440
+ "darling_macro 0.20.10",
1441
+ ]
1442
+
1443
+ [[package]]
1444
+ name = "darling_core"
1445
+ version = "0.12.4"
1446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1447
+ checksum = "8e91455b86830a1c21799d94524df0845183fa55bafd9aa137b01c7d1065fa36"
1448
+ dependencies = [
1449
+ "fnv",
1450
+ "ident_case",
1451
+ "proc-macro2",
1452
+ "quote",
1453
+ "strsim 0.10.0",
1454
+ "syn 1.0.109",
1319
1455
  ]
1320
1456
 
1321
1457
  [[package]]
@@ -1328,17 +1464,28 @@ dependencies = [
1328
1464
  "ident_case",
1329
1465
  "proc-macro2",
1330
1466
  "quote",
1331
- "strsim",
1467
+ "strsim 0.11.1",
1332
1468
  "syn 2.0.95",
1333
1469
  ]
1334
1470
 
1471
+ [[package]]
1472
+ name = "darling_macro"
1473
+ version = "0.12.4"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "29b5acf0dea37a7f66f7b25d2c5e93fd46f8f6968b1a5d7a3e02e97768afc95a"
1476
+ dependencies = [
1477
+ "darling_core 0.12.4",
1478
+ "quote",
1479
+ "syn 1.0.109",
1480
+ ]
1481
+
1335
1482
  [[package]]
1336
1483
  name = "darling_macro"
1337
1484
  version = "0.20.10"
1338
1485
  source = "registry+https://github.com/rust-lang/crates.io-index"
1339
1486
  checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
1340
1487
  dependencies = [
1341
- "darling_core",
1488
+ "darling_core 0.20.10",
1342
1489
  "quote",
1343
1490
  "syn 2.0.95",
1344
1491
  ]
@@ -1356,6 +1503,12 @@ dependencies = [
1356
1503
  "parking_lot_core",
1357
1504
  ]
1358
1505
 
1506
+ [[package]]
1507
+ name = "data-encoding"
1508
+ version = "2.6.0"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2"
1511
+
1359
1512
  [[package]]
1360
1513
  name = "dbl"
1361
1514
  version = "0.3.2"
@@ -1374,7 +1527,6 @@ dependencies = [
1374
1527
  "arc-swap",
1375
1528
  "async-trait",
1376
1529
  "backoff",
1377
- "base64-url",
1378
1530
  "byte-unit 4.0.19",
1379
1531
  "cfg-if 1.0.0",
1380
1532
  "chrono",
@@ -1386,12 +1538,10 @@ dependencies = [
1386
1538
  "ddx-ethereum",
1387
1539
  "deadpool-postgres",
1388
1540
  "derive_builder",
1389
- "dirs",
1390
1541
  "ethabi",
1391
1542
  "ethereum-types",
1392
1543
  "futures 0.3.31",
1393
1544
  "futures-util",
1394
- "gethostname",
1395
1545
  "httparse",
1396
1546
  "httpmock",
1397
1547
  "im",
@@ -1418,7 +1568,7 @@ dependencies = [
1418
1568
  "signal-hook",
1419
1569
  "sparse-merkle-tree",
1420
1570
  "test-log",
1421
- "thiserror",
1571
+ "thiserror 1.0.69",
1422
1572
  "time",
1423
1573
  "tokio",
1424
1574
  "tokio-postgres",
@@ -1454,10 +1604,10 @@ dependencies = [
1454
1604
  "aes-gcm",
1455
1605
  "anyhow",
1456
1606
  "arc-swap",
1457
- "arrayvec 0.7.6",
1607
+ "arrayvec",
1458
1608
  "async-trait",
1459
1609
  "backoff",
1460
- "base64 0.13.1",
1610
+ "base64 0.22.1",
1461
1611
  "base64-url",
1462
1612
  "bitvec 0.20.4",
1463
1613
  "bytes",
@@ -1470,6 +1620,7 @@ dependencies = [
1470
1620
  "deadpool-postgres",
1471
1621
  "derive_builder",
1472
1622
  "digest 0.9.0",
1623
+ "downcast-rs",
1473
1624
  "dyn-fmt",
1474
1625
  "ethabi",
1475
1626
  "ethereum-types",
@@ -1504,7 +1655,7 @@ dependencies = [
1504
1655
  "sgx_urts",
1505
1656
  "sha2 0.10.8",
1506
1657
  "sparse-merkle-tree",
1507
- "thiserror",
1658
+ "thiserror 1.0.69",
1508
1659
  "time",
1509
1660
  "tiny-keccak 1.5.0",
1510
1661
  "tokio",
@@ -1532,13 +1683,14 @@ dependencies = [
1532
1683
  "http 1.2.0",
1533
1684
  "http-body-util",
1534
1685
  "hyper 1.5.2",
1535
- "hyper-rustls",
1686
+ "hyper-rustls 0.27.5",
1536
1687
  "hyper-util",
1537
1688
  "lazy_static",
1538
1689
  "libsecp256k1",
1539
1690
  "rustls 0.23.20",
1540
1691
  "rustls-pemfile 2.2.0",
1541
1692
  "serde_cbor",
1693
+ "serde_json",
1542
1694
  "sgx_crypto",
1543
1695
  "sgx_trts",
1544
1696
  "sgx_tse",
@@ -1588,15 +1740,13 @@ dependencies = [
1588
1740
  "serde",
1589
1741
  "serde_cbor",
1590
1742
  "serde_json",
1591
- "sgx_crypto",
1592
1743
  "sgx_libc",
1593
1744
  "sgx_trts",
1594
- "sgx_tseal",
1595
1745
  "sgx_types",
1596
1746
  "sgx_unit_test",
1597
1747
  "sparse-merkle-tree",
1598
1748
  "static_assertions",
1599
- "thiserror",
1749
+ "thiserror 1.0.69",
1600
1750
  "tiny-keccak 1.5.0",
1601
1751
  "tokio",
1602
1752
  "tracing",
@@ -1632,7 +1782,7 @@ dependencies = [
1632
1782
 
1633
1783
  [[package]]
1634
1784
  name = "ddx-python"
1635
- version = "0.2.5"
1785
+ version = "0.2.6"
1636
1786
  dependencies = [
1637
1787
  "ddx-common",
1638
1788
  "pyo3",
@@ -1671,7 +1821,7 @@ dependencies = [
1671
1821
  "ddx-common",
1672
1822
  "ddx-common-macros",
1673
1823
  "ethereum-types",
1674
- "getrandom 0.2.15",
1824
+ "getrandom",
1675
1825
  "gloo-utils",
1676
1826
  "log",
1677
1827
  "rand",
@@ -1762,7 +1912,7 @@ version = "0.20.2"
1762
1912
  source = "registry+https://github.com/rust-lang/crates.io-index"
1763
1913
  checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
1764
1914
  dependencies = [
1765
- "darling",
1915
+ "darling 0.20.10",
1766
1916
  "proc-macro2",
1767
1917
  "quote",
1768
1918
  "syn 2.0.95",
@@ -1833,17 +1983,6 @@ dependencies = [
1833
1983
  "subtle",
1834
1984
  ]
1835
1985
 
1836
- [[package]]
1837
- name = "dirs"
1838
- version = "1.0.5"
1839
- source = "registry+https://github.com/rust-lang/crates.io-index"
1840
- checksum = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901"
1841
- dependencies = [
1842
- "libc",
1843
- "redox_users 0.3.5",
1844
- "winapi",
1845
- ]
1846
-
1847
1986
  [[package]]
1848
1987
  name = "dirs-next"
1849
1988
  version = "2.0.0"
@@ -1861,7 +2000,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1861
2000
  checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
1862
2001
  dependencies = [
1863
2002
  "libc",
1864
- "redox_users 0.4.6",
2003
+ "redox_users",
1865
2004
  "winapi",
1866
2005
  ]
1867
2006
 
@@ -1876,6 +2015,18 @@ dependencies = [
1876
2015
  "syn 2.0.95",
1877
2016
  ]
1878
2017
 
2018
+ [[package]]
2019
+ name = "dotenv"
2020
+ version = "0.15.0"
2021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2022
+ checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
2023
+
2024
+ [[package]]
2025
+ name = "downcast-rs"
2026
+ version = "1.2.1"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
2029
+
1879
2030
  [[package]]
1880
2031
  name = "dyn-fmt"
1881
2032
  version = "0.3.0"
@@ -1966,7 +2117,7 @@ dependencies = [
1966
2117
  "serde",
1967
2118
  "serde_json",
1968
2119
  "sha3",
1969
- "thiserror",
2120
+ "thiserror 1.0.69",
1970
2121
  "uint",
1971
2122
  ]
1972
2123
 
@@ -2045,6 +2196,64 @@ version = "2.3.0"
2045
2196
  source = "registry+https://github.com/rust-lang/crates.io-index"
2046
2197
  checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
2047
2198
 
2199
+ [[package]]
2200
+ name = "fefix"
2201
+ version = "0.7.0"
2202
+ source = "git+https://github.com/ferrumfix/ferrumfix.git?branch=main#7e9657a369705870b84c5b781575f7fed1ee07d5"
2203
+ dependencies = [
2204
+ "chrono",
2205
+ "fefix-codegen",
2206
+ "fefix-derive",
2207
+ "fefix-dictionary",
2208
+ "futures 0.3.31",
2209
+ "futures-timer",
2210
+ "lazy_static",
2211
+ "nohash-hasher",
2212
+ "quick-xml 0.31.0",
2213
+ "roxmltree",
2214
+ "rust_decimal",
2215
+ "serde",
2216
+ "serde_json",
2217
+ "thiserror 1.0.69",
2218
+ "uuid",
2219
+ ]
2220
+
2221
+ [[package]]
2222
+ name = "fefix-codegen"
2223
+ version = "0.7.0"
2224
+ source = "git+https://github.com/ferrumfix/ferrumfix.git?branch=main#7e9657a369705870b84c5b781575f7fed1ee07d5"
2225
+ dependencies = [
2226
+ "chrono",
2227
+ "fefix-dictionary",
2228
+ "fnv",
2229
+ "heck 0.4.1",
2230
+ "indoc",
2231
+ ]
2232
+
2233
+ [[package]]
2234
+ name = "fefix-derive"
2235
+ version = "0.7.0"
2236
+ source = "git+https://github.com/ferrumfix/ferrumfix.git?branch=main#7e9657a369705870b84c5b781575f7fed1ee07d5"
2237
+ dependencies = [
2238
+ "darling 0.12.4",
2239
+ "proc-macro-crate",
2240
+ "proc-macro2",
2241
+ "quote",
2242
+ "syn 1.0.109",
2243
+ ]
2244
+
2245
+ [[package]]
2246
+ name = "fefix-dictionary"
2247
+ version = "0.7.0"
2248
+ source = "git+https://github.com/ferrumfix/ferrumfix.git?branch=main#7e9657a369705870b84c5b781575f7fed1ee07d5"
2249
+ dependencies = [
2250
+ "fnv",
2251
+ "roxmltree",
2252
+ "smartstring",
2253
+ "strum",
2254
+ "strum_macros",
2255
+ ]
2256
+
2048
2257
  [[package]]
2049
2258
  name = "findshlibs"
2050
2259
  version = "0.10.2"
@@ -2115,6 +2324,28 @@ dependencies = [
2115
2324
  "percent-encoding",
2116
2325
  ]
2117
2326
 
2327
+ [[package]]
2328
+ name = "frontend-server"
2329
+ version = "0.1.0"
2330
+ dependencies = [
2331
+ "anyhow",
2332
+ "axum 0.8.1",
2333
+ "base64 0.22.1",
2334
+ "ddx-common",
2335
+ "ddx-ethereum",
2336
+ "deadpool-postgres",
2337
+ "dotenv",
2338
+ "ethereum-types",
2339
+ "futures 0.3.31",
2340
+ "hyper 1.5.2",
2341
+ "postgres",
2342
+ "serde",
2343
+ "serde_json",
2344
+ "time",
2345
+ "tokio",
2346
+ "tokio-postgres",
2347
+ ]
2348
+
2118
2349
  [[package]]
2119
2350
  name = "funty"
2120
2351
  version = "1.1.0"
@@ -2267,27 +2498,6 @@ dependencies = [
2267
2498
  "version_check",
2268
2499
  ]
2269
2500
 
2270
- [[package]]
2271
- name = "gethostname"
2272
- version = "0.2.3"
2273
- source = "registry+https://github.com/rust-lang/crates.io-index"
2274
- checksum = "c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e"
2275
- dependencies = [
2276
- "libc",
2277
- "winapi",
2278
- ]
2279
-
2280
- [[package]]
2281
- name = "getrandom"
2282
- version = "0.1.16"
2283
- source = "registry+https://github.com/rust-lang/crates.io-index"
2284
- checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
2285
- dependencies = [
2286
- "cfg-if 1.0.0",
2287
- "libc",
2288
- "wasi 0.9.0+wasi-snapshot-preview1",
2289
- ]
2290
-
2291
2501
  [[package]]
2292
2502
  name = "getrandom"
2293
2503
  version = "0.2.15"
@@ -2297,7 +2507,7 @@ dependencies = [
2297
2507
  "cfg-if 1.0.0",
2298
2508
  "js-sys",
2299
2509
  "libc",
2300
- "wasi 0.11.0+wasi-snapshot-preview1",
2510
+ "wasi",
2301
2511
  "wasm-bindgen",
2302
2512
  ]
2303
2513
 
@@ -2702,6 +2912,7 @@ dependencies = [
2702
2912
  "http 1.2.0",
2703
2913
  "http-body 1.0.1",
2704
2914
  "httparse",
2915
+ "httpdate",
2705
2916
  "itoa",
2706
2917
  "pin-project-lite",
2707
2918
  "smallvec",
@@ -2709,6 +2920,20 @@ dependencies = [
2709
2920
  "want",
2710
2921
  ]
2711
2922
 
2923
+ [[package]]
2924
+ name = "hyper-rustls"
2925
+ version = "0.24.2"
2926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2927
+ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
2928
+ dependencies = [
2929
+ "futures-util",
2930
+ "http 0.2.12",
2931
+ "hyper 0.14.32",
2932
+ "rustls 0.21.12",
2933
+ "tokio",
2934
+ "tokio-rustls 0.24.1",
2935
+ ]
2936
+
2712
2937
  [[package]]
2713
2938
  name = "hyper-rustls"
2714
2939
  version = "0.27.5"
@@ -2722,7 +2947,7 @@ dependencies = [
2722
2947
  "rustls 0.23.20",
2723
2948
  "rustls-pki-types",
2724
2949
  "tokio",
2725
- "tokio-rustls",
2950
+ "tokio-rustls 0.26.1",
2726
2951
  "tower-service",
2727
2952
  ]
2728
2953
 
@@ -3039,7 +3264,7 @@ dependencies = [
3039
3264
  "log",
3040
3265
  "num-format",
3041
3266
  "once_cell",
3042
- "quick-xml",
3267
+ "quick-xml 0.26.0",
3043
3268
  "rgb",
3044
3269
  "str_stack",
3045
3270
  ]
@@ -3156,6 +3381,15 @@ dependencies = [
3156
3381
  "either",
3157
3382
  ]
3158
3383
 
3384
+ [[package]]
3385
+ name = "itertools"
3386
+ version = "0.14.0"
3387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3388
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
3389
+ dependencies = [
3390
+ "either",
3391
+ ]
3392
+
3159
3393
  [[package]]
3160
3394
  name = "itoa"
3161
3395
  version = "1.0.14"
@@ -3199,7 +3433,7 @@ dependencies = [
3199
3433
  "num-bigint",
3200
3434
  "serde",
3201
3435
  "serde_json",
3202
- "thiserror",
3436
+ "thiserror 1.0.69",
3203
3437
  "yasna",
3204
3438
  "zeroize",
3205
3439
  ]
@@ -3211,7 +3445,7 @@ source = "git+https://github.com/yangfh2004/jsonwebtoken.git#be99200f2869b780442
3211
3445
  dependencies = [
3212
3446
  "base64 0.21.7",
3213
3447
  "js-sys",
3214
- "pem",
3448
+ "pem 3.0.4",
3215
3449
  "ring 0.17.8",
3216
3450
  "serde",
3217
3451
  "serde_json",
@@ -3243,7 +3477,6 @@ dependencies = [
3243
3477
  "anyhow",
3244
3478
  "async-trait",
3245
3479
  "backoff",
3246
- "base64-url",
3247
3480
  "chrono",
3248
3481
  "clap 4.5.24",
3249
3482
  "ddx-common",
@@ -3283,14 +3516,12 @@ dependencies = [
3283
3516
  "serde",
3284
3517
  "serde_cbor",
3285
3518
  "serde_json",
3286
- "sgx_crypto",
3287
3519
  "sgx_libc",
3288
3520
  "sgx_trts",
3289
- "sgx_tseal",
3290
3521
  "sgx_types",
3291
3522
  "sgx_unit_test",
3292
3523
  "static_assertions",
3293
- "thiserror",
3524
+ "thiserror 1.0.69",
3294
3525
  "tokio",
3295
3526
  "tracing",
3296
3527
  ]
@@ -3485,6 +3716,12 @@ version = "0.7.3"
3485
3716
  source = "registry+https://github.com/rust-lang/crates.io-index"
3486
3717
  checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
3487
3718
 
3719
+ [[package]]
3720
+ name = "matchit"
3721
+ version = "0.8.4"
3722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3723
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
3724
+
3488
3725
  [[package]]
3489
3726
  name = "md-5"
3490
3727
  version = "0.10.6"
@@ -3567,7 +3804,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3567
3804
  checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
3568
3805
  dependencies = [
3569
3806
  "libc",
3570
- "wasi 0.11.0+wasi-snapshot-preview1",
3807
+ "wasi",
3571
3808
  "windows-sys 0.52.0",
3572
3809
  ]
3573
3810
 
@@ -3629,6 +3866,12 @@ version = "0.4.1"
3629
3866
  source = "registry+https://github.com/rust-lang/crates.io-index"
3630
3867
  checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c"
3631
3868
 
3869
+ [[package]]
3870
+ name = "nohash-hasher"
3871
+ version = "0.2.0"
3872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3873
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
3874
+
3632
3875
  [[package]]
3633
3876
  name = "nom"
3634
3877
  version = "7.1.3"
@@ -3657,7 +3900,7 @@ dependencies = [
3657
3900
  "rand",
3658
3901
  "rustls 0.19.1",
3659
3902
  "sgx_libc",
3660
- "thiserror",
3903
+ "thiserror 1.0.69",
3661
3904
  "webpki",
3662
3905
  "webpki-roots 0.17.0",
3663
3906
  ]
@@ -3711,7 +3954,7 @@ version = "0.4.4"
3711
3954
  source = "registry+https://github.com/rust-lang/crates.io-index"
3712
3955
  checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3"
3713
3956
  dependencies = [
3714
- "arrayvec 0.7.6",
3957
+ "arrayvec",
3715
3958
  "itoa",
3716
3959
  ]
3717
3960
 
@@ -3798,7 +4041,7 @@ dependencies = [
3798
4041
  "openraft-macros",
3799
4042
  "rand",
3800
4043
  "serde",
3801
- "thiserror",
4044
+ "thiserror 1.0.69",
3802
4045
  "tokio",
3803
4046
  "tracing",
3804
4047
  "tracing-futures",
@@ -3880,7 +4123,7 @@ version = "3.6.12"
3880
4123
  source = "registry+https://github.com/rust-lang/crates.io-index"
3881
4124
  checksum = "306800abfa29c7f16596b5970a588435e3d5b3149683d00c12b699cc19f895ee"
3882
4125
  dependencies = [
3883
- "arrayvec 0.7.6",
4126
+ "arrayvec",
3884
4127
  "bitvec 1.0.1",
3885
4128
  "byte-slice-cast",
3886
4129
  "impl-trait-for-tuples",
@@ -3924,11 +4167,20 @@ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
3924
4167
  dependencies = [
3925
4168
  "cfg-if 1.0.0",
3926
4169
  "libc",
3927
- "redox_syscall 0.5.8",
4170
+ "redox_syscall",
3928
4171
  "smallvec",
3929
4172
  "windows-targets 0.52.6",
3930
4173
  ]
3931
4174
 
4175
+ [[package]]
4176
+ name = "pem"
4177
+ version = "1.1.1"
4178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4179
+ checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8"
4180
+ dependencies = [
4181
+ "base64 0.13.1",
4182
+ ]
4183
+
3932
4184
  [[package]]
3933
4185
  name = "pem"
3934
4186
  version = "3.0.4"
@@ -4237,7 +4489,7 @@ dependencies = [
4237
4489
  "smallvec",
4238
4490
  "symbolic-demangle",
4239
4491
  "tempfile",
4240
- "thiserror",
4492
+ "thiserror 1.0.69",
4241
4493
  ]
4242
4494
 
4243
4495
  [[package]]
@@ -4423,7 +4675,7 @@ dependencies = [
4423
4675
  "libc",
4424
4676
  "once_cell",
4425
4677
  "raw-cpuid",
4426
- "wasi 0.11.0+wasi-snapshot-preview1",
4678
+ "wasi",
4427
4679
  "web-sys",
4428
4680
  "winapi",
4429
4681
  ]
@@ -4437,6 +4689,15 @@ dependencies = [
4437
4689
  "memchr",
4438
4690
  ]
4439
4691
 
4692
+ [[package]]
4693
+ name = "quick-xml"
4694
+ version = "0.31.0"
4695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4696
+ checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
4697
+ dependencies = [
4698
+ "memchr",
4699
+ ]
4700
+
4440
4701
  [[package]]
4441
4702
  name = "quickcheck"
4442
4703
  version = "1.0.3"
@@ -4496,7 +4757,7 @@ version = "0.6.4"
4496
4757
  source = "registry+https://github.com/rust-lang/crates.io-index"
4497
4758
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
4498
4759
  dependencies = [
4499
- "getrandom 0.2.15",
4760
+ "getrandom",
4500
4761
  ]
4501
4762
 
4502
4763
  [[package]]
@@ -4537,12 +4798,6 @@ dependencies = [
4537
4798
  "crossbeam-utils",
4538
4799
  ]
4539
4800
 
4540
- [[package]]
4541
- name = "redox_syscall"
4542
- version = "0.1.57"
4543
- source = "registry+https://github.com/rust-lang/crates.io-index"
4544
- checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
4545
-
4546
4801
  [[package]]
4547
4802
  name = "redox_syscall"
4548
4803
  version = "0.5.8"
@@ -4552,26 +4807,15 @@ dependencies = [
4552
4807
  "bitflags 2.6.0",
4553
4808
  ]
4554
4809
 
4555
- [[package]]
4556
- name = "redox_users"
4557
- version = "0.3.5"
4558
- source = "registry+https://github.com/rust-lang/crates.io-index"
4559
- checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d"
4560
- dependencies = [
4561
- "getrandom 0.1.16",
4562
- "redox_syscall 0.1.57",
4563
- "rust-argon2",
4564
- ]
4565
-
4566
4810
  [[package]]
4567
4811
  name = "redox_users"
4568
4812
  version = "0.4.6"
4569
4813
  source = "registry+https://github.com/rust-lang/crates.io-index"
4570
4814
  checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
4571
4815
  dependencies = [
4572
- "getrandom 0.2.15",
4816
+ "getrandom",
4573
4817
  "libredox",
4574
- "thiserror",
4818
+ "thiserror 1.0.69",
4575
4819
  ]
4576
4820
 
4577
4821
  [[package]]
@@ -4642,6 +4886,7 @@ dependencies = [
4642
4886
  "http 0.2.12",
4643
4887
  "http-body 0.4.6",
4644
4888
  "hyper 0.14.32",
4889
+ "hyper-rustls 0.24.2",
4645
4890
  "hyper-tls",
4646
4891
  "ipnet",
4647
4892
  "js-sys",
@@ -4651,19 +4896,22 @@ dependencies = [
4651
4896
  "once_cell",
4652
4897
  "percent-encoding",
4653
4898
  "pin-project-lite",
4899
+ "rustls 0.21.12",
4654
4900
  "rustls-pemfile 1.0.4",
4655
4901
  "serde",
4656
4902
  "serde_json",
4657
4903
  "serde_urlencoded",
4658
- "sync_wrapper",
4904
+ "sync_wrapper 0.1.2",
4659
4905
  "system-configuration",
4660
4906
  "tokio",
4661
4907
  "tokio-native-tls",
4908
+ "tokio-rustls 0.24.1",
4662
4909
  "tower-service",
4663
4910
  "url",
4664
4911
  "wasm-bindgen",
4665
4912
  "wasm-bindgen-futures",
4666
4913
  "web-sys",
4914
+ "webpki-roots 0.25.4",
4667
4915
  "winreg",
4668
4916
  ]
4669
4917
 
@@ -4682,6 +4930,16 @@ dependencies = [
4682
4930
  "bytemuck",
4683
4931
  ]
4684
4932
 
4933
+ [[package]]
4934
+ name = "ring"
4935
+ version = "0.16.19"
4936
+ source = "git+https://gitlab.com/dexlabs/ring-sgx.git?branch=sgx_v2.0.0_update#e561e35e5b030cb7745c2260edbc0f7e698984d8"
4937
+ dependencies = [
4938
+ "cc",
4939
+ "spin 0.5.2",
4940
+ "untrusted 0.7.1",
4941
+ ]
4942
+
4685
4943
  [[package]]
4686
4944
  name = "ring"
4687
4945
  version = "0.16.20"
@@ -4705,7 +4963,7 @@ checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
4705
4963
  dependencies = [
4706
4964
  "cc",
4707
4965
  "cfg-if 1.0.0",
4708
- "getrandom 0.2.15",
4966
+ "getrandom",
4709
4967
  "libc",
4710
4968
  "spin 0.9.8",
4711
4969
  "untrusted 0.9.0",
@@ -4751,6 +5009,12 @@ dependencies = [
4751
5009
  "rustc-hex",
4752
5010
  ]
4753
5011
 
5012
+ [[package]]
5013
+ name = "roxmltree"
5014
+ version = "0.19.0"
5015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5016
+ checksum = "3cd14fd5e3b777a7422cca79358c57a8f6e3a703d9ac187448d0daf220c2407f"
5017
+
4754
5018
  [[package]]
4755
5019
  name = "rsa"
4756
5020
  version = "0.9.7"
@@ -4771,25 +5035,13 @@ dependencies = [
4771
5035
  "zeroize",
4772
5036
  ]
4773
5037
 
4774
- [[package]]
4775
- name = "rust-argon2"
4776
- version = "0.8.3"
4777
- source = "registry+https://github.com/rust-lang/crates.io-index"
4778
- checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb"
4779
- dependencies = [
4780
- "base64 0.13.1",
4781
- "blake2b_simd",
4782
- "constant_time_eq",
4783
- "crossbeam-utils",
4784
- ]
4785
-
4786
5038
  [[package]]
4787
5039
  name = "rust_decimal"
4788
5040
  version = "1.36.0"
4789
5041
  source = "registry+https://github.com/rust-lang/crates.io-index"
4790
5042
  checksum = "b082d80e3e3cc52b2ed634388d436fe1f4de6af5786cc2de9ba9737527bdf555"
4791
5043
  dependencies = [
4792
- "arrayvec 0.7.6",
5044
+ "arrayvec",
4793
5045
  "borsh",
4794
5046
  "bytes",
4795
5047
  "num-traits",
@@ -4843,10 +5095,22 @@ dependencies = [
4843
5095
  "base64 0.13.1",
4844
5096
  "log",
4845
5097
  "ring 0.16.20",
4846
- "sct",
5098
+ "sct 0.6.1",
4847
5099
  "webpki",
4848
5100
  ]
4849
5101
 
5102
+ [[package]]
5103
+ name = "rustls"
5104
+ version = "0.21.12"
5105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5106
+ checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
5107
+ dependencies = [
5108
+ "log",
5109
+ "ring 0.17.8",
5110
+ "rustls-webpki 0.101.7",
5111
+ "sct 0.7.1",
5112
+ ]
5113
+
4850
5114
  [[package]]
4851
5115
  name = "rustls"
4852
5116
  version = "0.23.20"
@@ -4856,7 +5120,7 @@ dependencies = [
4856
5120
  "once_cell",
4857
5121
  "ring 0.17.8",
4858
5122
  "rustls-pki-types",
4859
- "rustls-webpki",
5123
+ "rustls-webpki 0.102.8",
4860
5124
  "subtle",
4861
5125
  "zeroize",
4862
5126
  ]
@@ -4885,6 +5149,16 @@ version = "1.10.1"
4885
5149
  source = "registry+https://github.com/rust-lang/crates.io-index"
4886
5150
  checksum = "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37"
4887
5151
 
5152
+ [[package]]
5153
+ name = "rustls-webpki"
5154
+ version = "0.101.7"
5155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5156
+ checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
5157
+ dependencies = [
5158
+ "ring 0.17.8",
5159
+ "untrusted 0.9.0",
5160
+ ]
5161
+
4888
5162
  [[package]]
4889
5163
  name = "rustls-webpki"
4890
5164
  version = "0.102.8"
@@ -4948,6 +5222,16 @@ dependencies = [
4948
5222
  "untrusted 0.7.1",
4949
5223
  ]
4950
5224
 
5225
+ [[package]]
5226
+ name = "sct"
5227
+ version = "0.7.1"
5228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5229
+ checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
5230
+ dependencies = [
5231
+ "ring 0.17.8",
5232
+ "untrusted 0.9.0",
5233
+ ]
5234
+
4951
5235
  [[package]]
4952
5236
  name = "seahash"
4953
5237
  version = "4.1.0"
@@ -5076,6 +5360,16 @@ dependencies = [
5076
5360
  "serde",
5077
5361
  ]
5078
5362
 
5363
+ [[package]]
5364
+ name = "serde_path_to_error"
5365
+ version = "0.1.16"
5366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5367
+ checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6"
5368
+ dependencies = [
5369
+ "itoa",
5370
+ "serde",
5371
+ ]
5372
+
5079
5373
  [[package]]
5080
5374
  name = "serde_regex"
5081
5375
  version = "1.1.0"
@@ -5427,7 +5721,7 @@ checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085"
5427
5721
  dependencies = [
5428
5722
  "num-bigint",
5429
5723
  "num-traits",
5430
- "thiserror",
5724
+ "thiserror 1.0.69",
5431
5725
  "time",
5432
5726
  ]
5433
5727
 
@@ -5479,6 +5773,17 @@ version = "1.13.2"
5479
5773
  source = "registry+https://github.com/rust-lang/crates.io-index"
5480
5774
  checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
5481
5775
 
5776
+ [[package]]
5777
+ name = "smartstring"
5778
+ version = "1.0.1"
5779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5780
+ checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
5781
+ dependencies = [
5782
+ "autocfg",
5783
+ "static_assertions",
5784
+ "version_check",
5785
+ ]
5786
+
5482
5787
  [[package]]
5483
5788
  name = "socket2"
5484
5789
  version = "0.5.8"
@@ -5574,12 +5879,37 @@ dependencies = [
5574
5879
  "unicode-properties",
5575
5880
  ]
5576
5881
 
5882
+ [[package]]
5883
+ name = "strsim"
5884
+ version = "0.10.0"
5885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5886
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
5887
+
5577
5888
  [[package]]
5578
5889
  name = "strsim"
5579
5890
  version = "0.11.1"
5580
5891
  source = "registry+https://github.com/rust-lang/crates.io-index"
5581
5892
  checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
5582
5893
 
5894
+ [[package]]
5895
+ name = "strum"
5896
+ version = "0.25.0"
5897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5898
+ checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
5899
+
5900
+ [[package]]
5901
+ name = "strum_macros"
5902
+ version = "0.26.4"
5903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5904
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
5905
+ dependencies = [
5906
+ "heck 0.5.0",
5907
+ "proc-macro2",
5908
+ "quote",
5909
+ "rustversion",
5910
+ "syn 2.0.95",
5911
+ ]
5912
+
5583
5913
  [[package]]
5584
5914
  name = "subtle"
5585
5915
  version = "2.6.1"
@@ -5637,6 +5967,12 @@ version = "0.1.2"
5637
5967
  source = "registry+https://github.com/rust-lang/crates.io-index"
5638
5968
  checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
5639
5969
 
5970
+ [[package]]
5971
+ name = "sync_wrapper"
5972
+ version = "1.0.2"
5973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5974
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
5975
+
5640
5976
  [[package]]
5641
5977
  name = "synstructure"
5642
5978
  version = "0.13.1"
@@ -5689,7 +6025,7 @@ checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704"
5689
6025
  dependencies = [
5690
6026
  "cfg-if 1.0.0",
5691
6027
  "fastrand 2.3.0",
5692
- "getrandom 0.2.15",
6028
+ "getrandom",
5693
6029
  "once_cell",
5694
6030
  "rustix",
5695
6031
  "windows-sys 0.59.0",
@@ -5740,7 +6076,16 @@ version = "1.0.69"
5740
6076
  source = "registry+https://github.com/rust-lang/crates.io-index"
5741
6077
  checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
5742
6078
  dependencies = [
5743
- "thiserror-impl",
6079
+ "thiserror-impl 1.0.69",
6080
+ ]
6081
+
6082
+ [[package]]
6083
+ name = "thiserror"
6084
+ version = "2.0.11"
6085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6086
+ checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
6087
+ dependencies = [
6088
+ "thiserror-impl 2.0.11",
5744
6089
  ]
5745
6090
 
5746
6091
  [[package]]
@@ -5754,6 +6099,17 @@ dependencies = [
5754
6099
  "syn 2.0.95",
5755
6100
  ]
5756
6101
 
6102
+ [[package]]
6103
+ name = "thiserror-impl"
6104
+ version = "2.0.11"
6105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6106
+ checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
6107
+ dependencies = [
6108
+ "proc-macro2",
6109
+ "quote",
6110
+ "syn 2.0.95",
6111
+ ]
6112
+
5757
6113
  [[package]]
5758
6114
  name = "thread_local"
5759
6115
  version = "1.1.8"
@@ -5850,9 +6206,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
5850
6206
 
5851
6207
  [[package]]
5852
6208
  name = "tokio"
5853
- version = "1.42.0"
6209
+ version = "1.43.0"
5854
6210
  source = "registry+https://github.com/rust-lang/crates.io-index"
5855
- checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551"
6211
+ checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e"
5856
6212
  dependencies = [
5857
6213
  "backtrace",
5858
6214
  "bytes",
@@ -5878,9 +6234,9 @@ dependencies = [
5878
6234
 
5879
6235
  [[package]]
5880
6236
  name = "tokio-macros"
5881
- version = "2.4.0"
6237
+ version = "2.5.0"
5882
6238
  source = "registry+https://github.com/rust-lang/crates.io-index"
5883
- checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
6239
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
5884
6240
  dependencies = [
5885
6241
  "proc-macro2",
5886
6242
  "quote",
@@ -5923,6 +6279,16 @@ dependencies = [
5923
6279
  "whoami",
5924
6280
  ]
5925
6281
 
6282
+ [[package]]
6283
+ name = "tokio-rustls"
6284
+ version = "0.24.1"
6285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6286
+ checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
6287
+ dependencies = [
6288
+ "rustls 0.21.12",
6289
+ "tokio",
6290
+ ]
6291
+
5926
6292
  [[package]]
5927
6293
  name = "tokio-rustls"
5928
6294
  version = "0.26.1"
@@ -5954,7 +6320,19 @@ dependencies = [
5954
6320
  "futures-util",
5955
6321
  "log",
5956
6322
  "tokio",
5957
- "tungstenite",
6323
+ "tungstenite 0.18.0",
6324
+ ]
6325
+
6326
+ [[package]]
6327
+ name = "tokio-tungstenite"
6328
+ version = "0.26.1"
6329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6330
+ checksum = "be4bf6fecd69fcdede0ec680aaf474cdab988f9de6bc73d3758f0160e3b7025a"
6331
+ dependencies = [
6332
+ "futures-util",
6333
+ "log",
6334
+ "tokio",
6335
+ "tungstenite 0.26.1",
5958
6336
  ]
5959
6337
 
5960
6338
  [[package]]
@@ -5995,7 +6373,7 @@ checksum = "d560933a0de61cf715926b9cac824d4c883c2c43142f787595e48280c40a1d0e"
5995
6373
  dependencies = [
5996
6374
  "async-stream",
5997
6375
  "async-trait",
5998
- "axum",
6376
+ "axum 0.6.20",
5999
6377
  "base64 0.21.7",
6000
6378
  "bytes",
6001
6379
  "h2",
@@ -6008,7 +6386,7 @@ dependencies = [
6008
6386
  "prost",
6009
6387
  "tokio",
6010
6388
  "tokio-stream",
6011
- "tower",
6389
+ "tower 0.4.13",
6012
6390
  "tower-layer",
6013
6391
  "tower-service",
6014
6392
  "tracing",
@@ -6021,7 +6399,7 @@ source = "git+https://github.com/yangfh2004/topk8#0b5e0cd2c5f6f585915c43050587f3
6021
6399
  dependencies = [
6022
6400
  "rsa",
6023
6401
  "sec1",
6024
- "thiserror",
6402
+ "thiserror 1.0.69",
6025
6403
  ]
6026
6404
 
6027
6405
  [[package]]
@@ -6044,6 +6422,36 @@ dependencies = [
6044
6422
  "tracing",
6045
6423
  ]
6046
6424
 
6425
+ [[package]]
6426
+ name = "tower"
6427
+ version = "0.5.2"
6428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6429
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
6430
+ dependencies = [
6431
+ "futures-core",
6432
+ "futures-util",
6433
+ "pin-project-lite",
6434
+ "sync_wrapper 1.0.2",
6435
+ "tokio",
6436
+ "tower-layer",
6437
+ "tower-service",
6438
+ "tracing",
6439
+ ]
6440
+
6441
+ [[package]]
6442
+ name = "tower-http"
6443
+ version = "0.6.2"
6444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6445
+ checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697"
6446
+ dependencies = [
6447
+ "bitflags 2.6.0",
6448
+ "bytes",
6449
+ "http 1.2.0",
6450
+ "pin-project-lite",
6451
+ "tower-layer",
6452
+ "tower-service",
6453
+ ]
6454
+
6047
6455
  [[package]]
6048
6456
  name = "tower-layer"
6049
6457
  version = "0.3.3"
@@ -6172,11 +6580,29 @@ dependencies = [
6172
6580
  "log",
6173
6581
  "rand",
6174
6582
  "sha1",
6175
- "thiserror",
6583
+ "thiserror 1.0.69",
6176
6584
  "url",
6177
6585
  "utf-8",
6178
6586
  ]
6179
6587
 
6588
+ [[package]]
6589
+ name = "tungstenite"
6590
+ version = "0.26.1"
6591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6592
+ checksum = "413083a99c579593656008130e29255e54dcaae495be556cc26888f211648c24"
6593
+ dependencies = [
6594
+ "byteorder",
6595
+ "bytes",
6596
+ "data-encoding",
6597
+ "http 1.2.0",
6598
+ "httparse",
6599
+ "log",
6600
+ "rand",
6601
+ "sha1",
6602
+ "thiserror 2.0.11",
6603
+ "utf-8",
6604
+ ]
6605
+
6180
6606
  [[package]]
6181
6607
  name = "typenum"
6182
6608
  version = "1.17.0"
@@ -6308,6 +6734,9 @@ name = "uuid"
6308
6734
  version = "1.11.0"
6309
6735
  source = "registry+https://github.com/rust-lang/crates.io-index"
6310
6736
  checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
6737
+ dependencies = [
6738
+ "getrandom",
6739
+ ]
6311
6740
 
6312
6741
  [[package]]
6313
6742
  name = "validit"
@@ -6392,18 +6821,12 @@ dependencies = [
6392
6821
  "serde_urlencoded",
6393
6822
  "tokio",
6394
6823
  "tokio-stream",
6395
- "tokio-tungstenite",
6824
+ "tokio-tungstenite 0.18.0",
6396
6825
  "tokio-util",
6397
6826
  "tower-service",
6398
6827
  "tracing",
6399
6828
  ]
6400
6829
 
6401
- [[package]]
6402
- name = "wasi"
6403
- version = "0.9.0+wasi-snapshot-preview1"
6404
- source = "registry+https://github.com/rust-lang/crates.io-index"
6405
- checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
6406
-
6407
6830
  [[package]]
6408
6831
  name = "wasi"
6409
6832
  version = "0.11.0+wasi-snapshot-preview1"
@@ -6523,7 +6946,7 @@ name = "web3"
6523
6946
  version = "0.20.0"
6524
6947
  source = "git+https://gitlab.com/dexlabs/rust-web3?branch=kl%2Fadd-in-dencun-block-fields#e263a002a6533bf9d43de574dbdacd154bb15b85"
6525
6948
  dependencies = [
6526
- "arrayvec 0.7.6",
6949
+ "arrayvec",
6527
6950
  "base64 0.21.7",
6528
6951
  "bytes",
6529
6952
  "derive_more 0.99.18",
@@ -6567,6 +6990,12 @@ dependencies = [
6567
6990
  "webpki",
6568
6991
  ]
6569
6992
 
6993
+ [[package]]
6994
+ name = "webpki-roots"
6995
+ version = "0.25.4"
6996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6997
+ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
6998
+
6570
6999
  [[package]]
6571
7000
  name = "webpki-roots"
6572
7001
  version = "0.26.7"
@@ -6582,7 +7011,7 @@ version = "1.5.2"
6582
7011
  source = "registry+https://github.com/rust-lang/crates.io-index"
6583
7012
  checksum = "372d5b87f58ec45c384ba03563b03544dc5fadc3983e434b286913f5b4a9bb6d"
6584
7013
  dependencies = [
6585
- "redox_syscall 0.5.8",
7014
+ "redox_syscall",
6586
7015
  "wasite",
6587
7016
  "web-sys",
6588
7017
  ]
@@ -6832,11 +7261,11 @@ dependencies = [
6832
7261
  "chrono",
6833
7262
  "der",
6834
7263
  "hex",
6835
- "pem",
7264
+ "pem 3.0.4",
6836
7265
  "ring 0.17.8",
6837
7266
  "signature",
6838
7267
  "spki",
6839
- "thiserror",
7268
+ "thiserror 1.0.69",
6840
7269
  "zeroize",
6841
7270
  ]
6842
7271