qcs-sdk-python-grpc-web 0.17.4__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 (144) hide show
  1. qcs_sdk_python_grpc_web-0.17.4/Cargo.lock +4076 -0
  2. qcs_sdk_python_grpc_web-0.17.4/Cargo.toml +44 -0
  3. qcs_sdk_python_grpc_web-0.17.4/PKG-INFO +95 -0
  4. qcs_sdk_python_grpc_web-0.17.4/README.md +76 -0
  5. qcs_sdk_python_grpc_web-0.17.4/crates/lib/CHANGELOG.md +1827 -0
  6. qcs_sdk_python_grpc_web-0.17.4/crates/lib/Cargo.toml +75 -0
  7. qcs_sdk_python_grpc_web-0.17.4/crates/lib/Makefile.toml +34 -0
  8. qcs_sdk_python_grpc_web-0.17.4/crates/lib/README.md +49 -0
  9. qcs_sdk_python_grpc_web-0.17.4/crates/lib/build.rs +3 -0
  10. qcs_sdk_python_grpc_web-0.17.4/crates/lib/examples/delayed_job_retrieval.rs +31 -0
  11. qcs_sdk_python_grpc_web-0.17.4/crates/lib/examples/execute.rs +57 -0
  12. qcs_sdk_python_grpc_web-0.17.4/crates/lib/examples/libquil.rs +33 -0
  13. qcs_sdk_python_grpc_web-0.17.4/crates/lib/examples/local.rs +32 -0
  14. qcs_sdk_python_grpc_web-0.17.4/crates/lib/examples/parametric_compilation.rs +72 -0
  15. qcs_sdk_python_grpc_web-0.17.4/crates/lib/examples/quil_t.rs +39 -0
  16. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/bin/diagnostics.rs +5 -0
  17. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/client.rs +139 -0
  18. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/compiler/isa/edge.rs +302 -0
  19. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/compiler/isa/mod.rs +184 -0
  20. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/compiler/isa/operator.rs +261 -0
  21. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/compiler/isa/qubit.rs +420 -0
  22. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/compiler/libquil.rs +347 -0
  23. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/compiler/mod.rs +8 -0
  24. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/compiler/quilc.rs +495 -0
  25. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/compiler/rpcq.rs +317 -0
  26. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/diagnostics.rs +278 -0
  27. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/executable.rs +922 -0
  28. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/execution_data.rs +540 -0
  29. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/lib.rs +71 -0
  30. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/qpu/api.rs +691 -0
  31. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/qpu/execution.rs +339 -0
  32. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/qpu/mod.rs +103 -0
  33. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/qpu/result_data.rs +148 -0
  34. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/qpu/rewrite_arithmetic.rs +563 -0
  35. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_allocates_for_multiple_expressions-2.snap +5 -0
  36. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_allocates_for_multiple_expressions.snap +5 -0
  37. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_converts_frequency_expressions-2.snap +5 -0
  38. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_converts_frequency_expressions.snap +5 -0
  39. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_converts_phases.snap +5 -0
  40. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_converts_set_scale_units.snap +5 -0
  41. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_substitutes_and_reuses_gate_expressions.snap +5 -0
  42. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_substitutes_gate_parameters.snap +5 -0
  43. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/qpu/translation.rs +272 -0
  44. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/qvm/execution.rs +135 -0
  45. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/qvm/http.rs +431 -0
  46. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/qvm/libquil.rs +199 -0
  47. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/qvm/mod.rs +342 -0
  48. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/qvm/snapshots/qcs__qvm__test__apply_valid_parameters_to_program.snap +10 -0
  49. qcs_sdk_python_grpc_web-0.17.4/crates/lib/src/register_data.rs +38 -0
  50. qcs_sdk_python_grpc_web-0.17.4/crates/lib/tests/aspen_9_isa.json +4495 -0
  51. qcs_sdk_python_grpc_web-0.17.4/crates/lib/tests/basic_qvm.rs +70 -0
  52. qcs_sdk_python_grpc_web-0.17.4/crates/lib/tests/bell_state_response_data.hex +1 -0
  53. qcs_sdk_python_grpc_web-0.17.4/crates/lib/tests/compiler-isa-Aspen-8.json +3852 -0
  54. qcs_sdk_python_grpc_web-0.17.4/crates/lib/tests/mocked_qpu.rs +397 -0
  55. qcs_sdk_python_grpc_web-0.17.4/crates/lib/tests/parametric_compilation.rs +69 -0
  56. qcs_sdk_python_grpc_web-0.17.4/crates/lib/tests/qcs-isa-Aspen-8.json +3336 -0
  57. qcs_sdk_python_grpc_web-0.17.4/crates/lib/tests/qvm_api.rs +120 -0
  58. qcs_sdk_python_grpc_web-0.17.4/crates/lib/tests/qvm_isa.json +1 -0
  59. qcs_sdk_python_grpc_web-0.17.4/crates/lib/tests/secrets.toml +5 -0
  60. qcs_sdk_python_grpc_web-0.17.4/crates/lib/tests/settings.toml +13 -0
  61. qcs_sdk_python_grpc_web-0.17.4/crates/python/.flake8 +7 -0
  62. qcs_sdk_python_grpc_web-0.17.4/crates/python/.stubtest-allowlist +3 -0
  63. qcs_sdk_python_grpc_web-0.17.4/crates/python/CHANGELOG.md +1906 -0
  64. qcs_sdk_python_grpc_web-0.17.4/crates/python/Cargo.toml +67 -0
  65. qcs_sdk_python_grpc_web-0.17.4/crates/python/Makefile.toml +65 -0
  66. qcs_sdk_python_grpc_web-0.17.4/crates/python/README.md +76 -0
  67. qcs_sdk_python_grpc_web-0.17.4/crates/python/build.rs +3 -0
  68. qcs_sdk_python_grpc_web-0.17.4/crates/python/poetry.lock +532 -0
  69. qcs_sdk_python_grpc_web-0.17.4/crates/python/qcs_sdk/__init__.py +8 -0
  70. qcs_sdk_python_grpc_web-0.17.4/crates/python/qcs_sdk/__init__.pyi +427 -0
  71. qcs_sdk_python_grpc_web-0.17.4/crates/python/qcs_sdk/client.py +1 -0
  72. qcs_sdk_python_grpc_web-0.17.4/crates/python/qcs_sdk/client.pyi +126 -0
  73. qcs_sdk_python_grpc_web-0.17.4/crates/python/qcs_sdk/compiler/__init__.py +4 -0
  74. qcs_sdk_python_grpc_web-0.17.4/crates/python/qcs_sdk/compiler/__init__.pyi +8 -0
  75. qcs_sdk_python_grpc_web-0.17.4/crates/python/qcs_sdk/compiler/quilc.pyi +380 -0
  76. qcs_sdk_python_grpc_web-0.17.4/crates/python/qcs_sdk/diagnostics.py +21 -0
  77. qcs_sdk_python_grpc_web-0.17.4/crates/python/qcs_sdk/py.typed +0 -0
  78. qcs_sdk_python_grpc_web-0.17.4/crates/python/qcs_sdk/qpu/__init__.py +4 -0
  79. qcs_sdk_python_grpc_web-0.17.4/crates/python/qcs_sdk/qpu/__init__.pyi +207 -0
  80. qcs_sdk_python_grpc_web-0.17.4/crates/python/qcs_sdk/qpu/api.pyi +443 -0
  81. qcs_sdk_python_grpc_web-0.17.4/crates/python/qcs_sdk/qpu/isa.pyi +326 -0
  82. qcs_sdk_python_grpc_web-0.17.4/crates/python/qcs_sdk/qpu/rewrite_arithmetic.pyi +65 -0
  83. qcs_sdk_python_grpc_web-0.17.4/crates/python/qcs_sdk/qpu/translation.pyi +157 -0
  84. qcs_sdk_python_grpc_web-0.17.4/crates/python/qcs_sdk/qvm/__init__.py +4 -0
  85. qcs_sdk_python_grpc_web-0.17.4/crates/python/qcs_sdk/qvm/__init__.pyi +152 -0
  86. qcs_sdk_python_grpc_web-0.17.4/crates/python/qcs_sdk/qvm/api.pyi +292 -0
  87. qcs_sdk_python_grpc_web-0.17.4/crates/python/scripts/patch_grpc_web.py +39 -0
  88. qcs_sdk_python_grpc_web-0.17.4/crates/python/src/client.rs +212 -0
  89. qcs_sdk_python_grpc_web-0.17.4/crates/python/src/compiler/mod.rs +9 -0
  90. qcs_sdk_python_grpc_web-0.17.4/crates/python/src/compiler/quilc.rs +397 -0
  91. qcs_sdk_python_grpc_web-0.17.4/crates/python/src/executable.rs +335 -0
  92. qcs_sdk_python_grpc_web-0.17.4/crates/python/src/execution_data.rs +339 -0
  93. qcs_sdk_python_grpc_web-0.17.4/crates/python/src/from_py.rs +19 -0
  94. qcs_sdk_python_grpc_web-0.17.4/crates/python/src/grpc/mod.rs +1 -0
  95. qcs_sdk_python_grpc_web-0.17.4/crates/python/src/grpc/models/controller.rs +59 -0
  96. qcs_sdk_python_grpc_web-0.17.4/crates/python/src/grpc/models/mod.rs +1 -0
  97. qcs_sdk_python_grpc_web-0.17.4/crates/python/src/lib.rs +77 -0
  98. qcs_sdk_python_grpc_web-0.17.4/crates/python/src/py_sync.rs +131 -0
  99. qcs_sdk_python_grpc_web-0.17.4/crates/python/src/qpu/api.rs +578 -0
  100. qcs_sdk_python_grpc_web-0.17.4/crates/python/src/qpu/isa.rs +160 -0
  101. qcs_sdk_python_grpc_web-0.17.4/crates/python/src/qpu/mod.rs +65 -0
  102. qcs_sdk_python_grpc_web-0.17.4/crates/python/src/qpu/result_data.rs +135 -0
  103. qcs_sdk_python_grpc_web-0.17.4/crates/python/src/qpu/rewrite_arithmetic.rs +141 -0
  104. qcs_sdk_python_grpc_web-0.17.4/crates/python/src/qpu/translation.rs +205 -0
  105. qcs_sdk_python_grpc_web-0.17.4/crates/python/src/qvm/api.rs +282 -0
  106. qcs_sdk_python_grpc_web-0.17.4/crates/python/src/qvm/mod.rs +279 -0
  107. qcs_sdk_python_grpc_web-0.17.4/crates/python/src/register_data.rs +38 -0
  108. qcs_sdk_python_grpc_web-0.17.4/crates/python/tests/_fixtures/aspen-m-3.json +12296 -0
  109. qcs_sdk_python_grpc_web-0.17.4/crates/python/tests/_fixtures/device-2q.json +214 -0
  110. qcs_sdk_python_grpc_web-0.17.4/crates/python/tests/_qcs_config/secrets.toml +9 -0
  111. qcs_sdk_python_grpc_web-0.17.4/crates/python/tests/_qcs_config/settings.toml +24 -0
  112. qcs_sdk_python_grpc_web-0.17.4/crates/python/tests/compiler/__snapshots__/test_quilc.ambr +23 -0
  113. qcs_sdk_python_grpc_web-0.17.4/crates/python/tests/compiler/test_quilc.py +139 -0
  114. qcs_sdk_python_grpc_web-0.17.4/crates/python/tests/conftest.py +104 -0
  115. qcs_sdk_python_grpc_web-0.17.4/crates/python/tests/execution_data/test_execution_data.py +134 -0
  116. qcs_sdk_python_grpc_web-0.17.4/crates/python/tests/qpu/test_api.py +52 -0
  117. qcs_sdk_python_grpc_web-0.17.4/crates/python/tests/qpu/test_isa.py +33 -0
  118. qcs_sdk_python_grpc_web-0.17.4/crates/python/tests/qpu/test_qpu.py +59 -0
  119. qcs_sdk_python_grpc_web-0.17.4/crates/python/tests/qpu/test_rewrite_arithmetic.py +32 -0
  120. qcs_sdk_python_grpc_web-0.17.4/crates/python/tests/qpu/test_translation.py +70 -0
  121. qcs_sdk_python_grpc_web-0.17.4/crates/python/tests/qvm/test_qvm.py +8 -0
  122. qcs_sdk_python_grpc_web-0.17.4/crates/python/tests/test_client.py +77 -0
  123. qcs_sdk_python_grpc_web-0.17.4/crates/python/tests/test_diagnostics.py +8 -0
  124. qcs_sdk_python_grpc_web-0.17.4/crates/python/tests/test_executable.py +67 -0
  125. qcs_sdk_python_grpc_web-0.17.4/crates/python/tests/test_logging.py +8 -0
  126. qcs_sdk_python_grpc_web-0.17.4/pyproject.toml +64 -0
  127. qcs_sdk_python_grpc_web-0.17.4/qcs_sdk/__init__.py +8 -0
  128. qcs_sdk_python_grpc_web-0.17.4/qcs_sdk/__init__.pyi +427 -0
  129. qcs_sdk_python_grpc_web-0.17.4/qcs_sdk/client.py +1 -0
  130. qcs_sdk_python_grpc_web-0.17.4/qcs_sdk/client.pyi +126 -0
  131. qcs_sdk_python_grpc_web-0.17.4/qcs_sdk/compiler/__init__.py +4 -0
  132. qcs_sdk_python_grpc_web-0.17.4/qcs_sdk/compiler/__init__.pyi +8 -0
  133. qcs_sdk_python_grpc_web-0.17.4/qcs_sdk/compiler/quilc.pyi +380 -0
  134. qcs_sdk_python_grpc_web-0.17.4/qcs_sdk/diagnostics.py +21 -0
  135. qcs_sdk_python_grpc_web-0.17.4/qcs_sdk/py.typed +0 -0
  136. qcs_sdk_python_grpc_web-0.17.4/qcs_sdk/qpu/__init__.py +4 -0
  137. qcs_sdk_python_grpc_web-0.17.4/qcs_sdk/qpu/__init__.pyi +207 -0
  138. qcs_sdk_python_grpc_web-0.17.4/qcs_sdk/qpu/api.pyi +443 -0
  139. qcs_sdk_python_grpc_web-0.17.4/qcs_sdk/qpu/isa.pyi +326 -0
  140. qcs_sdk_python_grpc_web-0.17.4/qcs_sdk/qpu/rewrite_arithmetic.pyi +65 -0
  141. qcs_sdk_python_grpc_web-0.17.4/qcs_sdk/qpu/translation.pyi +157 -0
  142. qcs_sdk_python_grpc_web-0.17.4/qcs_sdk/qvm/__init__.py +4 -0
  143. qcs_sdk_python_grpc_web-0.17.4/qcs_sdk/qvm/__init__.pyi +152 -0
  144. qcs_sdk_python_grpc_web-0.17.4/qcs_sdk/qvm/api.pyi +292 -0
@@ -0,0 +1,4076 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.21.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler"
16
+ version = "1.0.2"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
19
+
20
+ [[package]]
21
+ name = "aho-corasick"
22
+ version = "1.1.2"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
25
+ dependencies = [
26
+ "memchr",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "ansi_term"
31
+ version = "0.12.1"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
34
+ dependencies = [
35
+ "winapi",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "anyhow"
40
+ version = "1.0.81"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247"
43
+
44
+ [[package]]
45
+ name = "approx"
46
+ version = "0.5.1"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
49
+ dependencies = [
50
+ "num-complex",
51
+ "num-traits",
52
+ ]
53
+
54
+ [[package]]
55
+ name = "arc-swap"
56
+ version = "1.7.0"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "7b3d0060af21e8d11a926981cc00c6c1541aa91dd64b9f881985c3da1094425f"
59
+
60
+ [[package]]
61
+ name = "assert2"
62
+ version = "0.3.14"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "844ca3172d927ddd9d01f63b6c80f4ebd3e01c3f787c204626635450dfe3edba"
65
+ dependencies = [
66
+ "assert2-macros",
67
+ "diff",
68
+ "is-terminal",
69
+ "yansi",
70
+ ]
71
+
72
+ [[package]]
73
+ name = "assert2-macros"
74
+ version = "0.3.14"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "9ec0e42bd0fe1c8d72c7bde53ac8686764cea0fd86f412b92fcad20fea08b489"
77
+ dependencies = [
78
+ "proc-macro2",
79
+ "quote",
80
+ "rustc_version",
81
+ "syn 1.0.109",
82
+ ]
83
+
84
+ [[package]]
85
+ name = "async-socks5"
86
+ version = "0.5.1"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "77f634add2445eb2c1f785642a67ca1073fedd71e73dc3ca69435ef9b9bdedc7"
89
+ dependencies = [
90
+ "async-trait",
91
+ "thiserror",
92
+ "tokio",
93
+ ]
94
+
95
+ [[package]]
96
+ name = "async-stream"
97
+ version = "0.3.5"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
100
+ dependencies = [
101
+ "async-stream-impl",
102
+ "futures-core",
103
+ "pin-project-lite",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "async-stream-impl"
108
+ version = "0.3.5"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
111
+ dependencies = [
112
+ "proc-macro2",
113
+ "quote",
114
+ "syn 2.0.53",
115
+ ]
116
+
117
+ [[package]]
118
+ name = "async-trait"
119
+ version = "0.1.78"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "461abc97219de0eaaf81fe3ef974a540158f3d079c2ab200f891f1a2ef201e85"
122
+ dependencies = [
123
+ "proc-macro2",
124
+ "quote",
125
+ "syn 2.0.53",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "atty"
130
+ version = "0.2.14"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
133
+ dependencies = [
134
+ "hermit-abi 0.1.19",
135
+ "libc",
136
+ "winapi",
137
+ ]
138
+
139
+ [[package]]
140
+ name = "autocfg"
141
+ version = "1.1.0"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
144
+
145
+ [[package]]
146
+ name = "axum"
147
+ version = "0.6.20"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf"
150
+ dependencies = [
151
+ "async-trait",
152
+ "axum-core",
153
+ "bitflags 1.3.2",
154
+ "bytes",
155
+ "futures-util",
156
+ "http",
157
+ "http-body",
158
+ "hyper",
159
+ "itoa",
160
+ "matchit",
161
+ "memchr",
162
+ "mime",
163
+ "percent-encoding",
164
+ "pin-project-lite",
165
+ "rustversion",
166
+ "serde",
167
+ "sync_wrapper",
168
+ "tower",
169
+ "tower-layer",
170
+ "tower-service",
171
+ ]
172
+
173
+ [[package]]
174
+ name = "axum-core"
175
+ version = "0.3.4"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
178
+ dependencies = [
179
+ "async-trait",
180
+ "bytes",
181
+ "futures-util",
182
+ "http",
183
+ "http-body",
184
+ "mime",
185
+ "rustversion",
186
+ "tower-layer",
187
+ "tower-service",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "backoff"
192
+ version = "0.4.0"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1"
195
+ dependencies = [
196
+ "futures-core",
197
+ "getrandom",
198
+ "instant",
199
+ "pin-project-lite",
200
+ "rand",
201
+ "tokio",
202
+ ]
203
+
204
+ [[package]]
205
+ name = "backtrace"
206
+ version = "0.3.69"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
209
+ dependencies = [
210
+ "addr2line",
211
+ "cc",
212
+ "cfg-if 1.0.0",
213
+ "libc",
214
+ "miniz_oxide",
215
+ "object",
216
+ "rustc-demangle",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "base64"
221
+ version = "0.21.7"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
224
+
225
+ [[package]]
226
+ name = "bindgen"
227
+ version = "0.53.3"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "c72a978d268b1d70b0e963217e60fdabd9523a941457a6c42a7315d15c7e89e5"
230
+ dependencies = [
231
+ "bitflags 1.3.2",
232
+ "cexpr",
233
+ "cfg-if 0.1.10",
234
+ "clang-sys",
235
+ "clap",
236
+ "env_logger",
237
+ "lazy_static",
238
+ "lazycell",
239
+ "log",
240
+ "peeking_take_while",
241
+ "proc-macro2",
242
+ "quote",
243
+ "regex",
244
+ "rustc-hash",
245
+ "shlex",
246
+ "which 3.1.1",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "bitflags"
251
+ version = "1.3.2"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
254
+
255
+ [[package]]
256
+ name = "bitflags"
257
+ version = "2.5.0"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
260
+
261
+ [[package]]
262
+ name = "block-buffer"
263
+ version = "0.10.4"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
266
+ dependencies = [
267
+ "generic-array",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "built"
272
+ version = "0.6.1"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "b99c4cdc7b2c2364182331055623bdf45254fcb679fea565c40c3c11c101889a"
275
+ dependencies = [
276
+ "cargo-lock",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "bumpalo"
281
+ version = "3.15.4"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa"
284
+
285
+ [[package]]
286
+ name = "bytecount"
287
+ version = "0.6.7"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "e1e5f035d16fc623ae5f74981db80a439803888314e3a555fd6f04acd51a3205"
290
+
291
+ [[package]]
292
+ name = "byteorder"
293
+ version = "1.5.0"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
296
+
297
+ [[package]]
298
+ name = "bytes"
299
+ version = "1.5.0"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
302
+
303
+ [[package]]
304
+ name = "cached"
305
+ version = "0.44.0"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "b195e4fbc4b6862bbd065b991a34750399c119797efff72492f28a5864de8700"
308
+ dependencies = [
309
+ "async-trait",
310
+ "cached_proc_macro",
311
+ "cached_proc_macro_types",
312
+ "futures",
313
+ "hashbrown 0.13.2",
314
+ "instant",
315
+ "once_cell",
316
+ "thiserror",
317
+ "tokio",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "cached_proc_macro"
322
+ version = "0.17.0"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "b48814962d2fd604c50d2b9433c2a41a0ab567779ee2c02f7fba6eca1221f082"
325
+ dependencies = [
326
+ "cached_proc_macro_types",
327
+ "darling",
328
+ "proc-macro2",
329
+ "quote",
330
+ "syn 1.0.109",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "cached_proc_macro_types"
335
+ version = "0.1.1"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "ade8366b8bd5ba243f0a58f036cc0ca8a2f069cff1a2351ef1cac6b083e16fc0"
338
+
339
+ [[package]]
340
+ name = "cargo-lock"
341
+ version = "9.0.0"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "e11c675378efb449ed3ce8de78d75d0d80542fc98487c26aba28eb3b82feac72"
344
+ dependencies = [
345
+ "semver",
346
+ "serde",
347
+ "toml 0.7.8",
348
+ "url",
349
+ ]
350
+
351
+ [[package]]
352
+ name = "cc"
353
+ version = "1.0.90"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5"
356
+ dependencies = [
357
+ "jobserver",
358
+ "libc",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "cexpr"
363
+ version = "0.4.0"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27"
366
+ dependencies = [
367
+ "nom 5.1.3",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "cfg-expr"
372
+ version = "0.15.7"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "fa50868b64a9a6fda9d593ce778849ea8715cd2a3d2cc17ffdb4a2f2f2f1961d"
375
+ dependencies = [
376
+ "smallvec",
377
+ "target-lexicon",
378
+ ]
379
+
380
+ [[package]]
381
+ name = "cfg-if"
382
+ version = "0.1.10"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
385
+
386
+ [[package]]
387
+ name = "cfg-if"
388
+ version = "1.0.0"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
391
+
392
+ [[package]]
393
+ name = "chrono"
394
+ version = "0.4.35"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "8eaf5903dcbc0a39312feb77df2ff4c76387d591b9fc7b04a238dcf8bb62639a"
397
+ dependencies = [
398
+ "num-traits",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "clang-sys"
403
+ version = "0.29.3"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "fe6837df1d5cba2397b835c8530f51723267e16abbf83892e9e5af4f0e5dd10a"
406
+ dependencies = [
407
+ "glob",
408
+ "libc",
409
+ "libloading 0.5.2",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "clap"
414
+ version = "2.34.0"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
417
+ dependencies = [
418
+ "ansi_term",
419
+ "atty",
420
+ "bitflags 1.3.2",
421
+ "strsim 0.8.0",
422
+ "textwrap",
423
+ "unicode-width",
424
+ "vec_map",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "console"
429
+ version = "0.15.8"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
432
+ dependencies = [
433
+ "encode_unicode",
434
+ "lazy_static",
435
+ "libc",
436
+ "windows-sys 0.52.0",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "convert_case"
441
+ version = "0.4.0"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
444
+
445
+ [[package]]
446
+ name = "core-foundation"
447
+ version = "0.9.4"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
450
+ dependencies = [
451
+ "core-foundation-sys",
452
+ "libc",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "core-foundation-sys"
457
+ version = "0.8.6"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
460
+
461
+ [[package]]
462
+ name = "cpufeatures"
463
+ version = "0.2.12"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
466
+ dependencies = [
467
+ "libc",
468
+ ]
469
+
470
+ [[package]]
471
+ name = "crossbeam"
472
+ version = "0.8.4"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
475
+ dependencies = [
476
+ "crossbeam-channel",
477
+ "crossbeam-deque",
478
+ "crossbeam-epoch",
479
+ "crossbeam-queue",
480
+ "crossbeam-utils",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "crossbeam-channel"
485
+ version = "0.5.12"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95"
488
+ dependencies = [
489
+ "crossbeam-utils",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "crossbeam-deque"
494
+ version = "0.8.5"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
497
+ dependencies = [
498
+ "crossbeam-epoch",
499
+ "crossbeam-utils",
500
+ ]
501
+
502
+ [[package]]
503
+ name = "crossbeam-epoch"
504
+ version = "0.9.18"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
507
+ dependencies = [
508
+ "crossbeam-utils",
509
+ ]
510
+
511
+ [[package]]
512
+ name = "crossbeam-queue"
513
+ version = "0.3.11"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
516
+ dependencies = [
517
+ "crossbeam-utils",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "crossbeam-utils"
522
+ version = "0.8.19"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
525
+
526
+ [[package]]
527
+ name = "crypto-common"
528
+ version = "0.1.6"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
531
+ dependencies = [
532
+ "generic-array",
533
+ "typenum",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "darling"
538
+ version = "0.14.4"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
541
+ dependencies = [
542
+ "darling_core",
543
+ "darling_macro",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "darling_core"
548
+ version = "0.14.4"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
551
+ dependencies = [
552
+ "fnv",
553
+ "ident_case",
554
+ "proc-macro2",
555
+ "quote",
556
+ "strsim 0.10.0",
557
+ "syn 1.0.109",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "darling_macro"
562
+ version = "0.14.4"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
565
+ dependencies = [
566
+ "darling_core",
567
+ "quote",
568
+ "syn 1.0.109",
569
+ ]
570
+
571
+ [[package]]
572
+ name = "deranged"
573
+ version = "0.3.11"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
576
+ dependencies = [
577
+ "powerfmt",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "derive_builder"
582
+ version = "0.12.0"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8"
585
+ dependencies = [
586
+ "derive_builder_macro",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "derive_builder_core"
591
+ version = "0.12.0"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f"
594
+ dependencies = [
595
+ "darling",
596
+ "proc-macro2",
597
+ "quote",
598
+ "syn 1.0.109",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "derive_builder_macro"
603
+ version = "0.12.0"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e"
606
+ dependencies = [
607
+ "derive_builder_core",
608
+ "syn 1.0.109",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "derive_more"
613
+ version = "0.99.17"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
616
+ dependencies = [
617
+ "convert_case",
618
+ "proc-macro2",
619
+ "quote",
620
+ "rustc_version",
621
+ "syn 1.0.109",
622
+ ]
623
+
624
+ [[package]]
625
+ name = "diff"
626
+ version = "0.1.13"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
629
+
630
+ [[package]]
631
+ name = "digest"
632
+ version = "0.10.7"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
635
+ dependencies = [
636
+ "block-buffer",
637
+ "crypto-common",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "dircpy"
642
+ version = "0.3.16"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "29259db751c34980bfc44100875890c507f585323453b91936960ab1104272ca"
645
+ dependencies = [
646
+ "jwalk",
647
+ "log",
648
+ "walkdir",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "either"
653
+ version = "1.10.0"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a"
656
+
657
+ [[package]]
658
+ name = "encode_unicode"
659
+ version = "0.3.6"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
662
+
663
+ [[package]]
664
+ name = "encoding_rs"
665
+ version = "0.8.33"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
668
+ dependencies = [
669
+ "cfg-if 1.0.0",
670
+ ]
671
+
672
+ [[package]]
673
+ name = "enum-as-inner"
674
+ version = "0.5.1"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "c9720bba047d567ffc8a3cba48bf19126600e249ab7f128e9233e6376976a116"
677
+ dependencies = [
678
+ "heck 0.4.1",
679
+ "proc-macro2",
680
+ "quote",
681
+ "syn 1.0.109",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "env_logger"
686
+ version = "0.7.1"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
689
+ dependencies = [
690
+ "atty",
691
+ "humantime",
692
+ "log",
693
+ "regex",
694
+ "termcolor",
695
+ ]
696
+
697
+ [[package]]
698
+ name = "equivalent"
699
+ version = "1.0.1"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
702
+
703
+ [[package]]
704
+ name = "erased-serde"
705
+ version = "0.3.31"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c"
708
+ dependencies = [
709
+ "serde",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "errno"
714
+ version = "0.3.8"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
717
+ dependencies = [
718
+ "libc",
719
+ "windows-sys 0.52.0",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "fastrand"
724
+ version = "2.0.1"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
727
+
728
+ [[package]]
729
+ name = "fixedbitset"
730
+ version = "0.4.2"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
733
+
734
+ [[package]]
735
+ name = "float-cmp"
736
+ version = "0.9.0"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
739
+ dependencies = [
740
+ "num-traits",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "fnv"
745
+ version = "1.0.7"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
748
+
749
+ [[package]]
750
+ name = "form_urlencoded"
751
+ version = "1.2.1"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
754
+ dependencies = [
755
+ "percent-encoding",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "futures"
760
+ version = "0.3.30"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
763
+ dependencies = [
764
+ "futures-channel",
765
+ "futures-core",
766
+ "futures-executor",
767
+ "futures-io",
768
+ "futures-sink",
769
+ "futures-task",
770
+ "futures-util",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "futures-channel"
775
+ version = "0.3.30"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
778
+ dependencies = [
779
+ "futures-core",
780
+ "futures-sink",
781
+ ]
782
+
783
+ [[package]]
784
+ name = "futures-core"
785
+ version = "0.3.30"
786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
787
+ checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
788
+
789
+ [[package]]
790
+ name = "futures-executor"
791
+ version = "0.3.30"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
794
+ dependencies = [
795
+ "futures-core",
796
+ "futures-task",
797
+ "futures-util",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "futures-io"
802
+ version = "0.3.30"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
805
+
806
+ [[package]]
807
+ name = "futures-macro"
808
+ version = "0.3.30"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
811
+ dependencies = [
812
+ "proc-macro2",
813
+ "quote",
814
+ "syn 2.0.53",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "futures-sink"
819
+ version = "0.3.30"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
822
+
823
+ [[package]]
824
+ name = "futures-task"
825
+ version = "0.3.30"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
828
+
829
+ [[package]]
830
+ name = "futures-timer"
831
+ version = "3.0.3"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
834
+
835
+ [[package]]
836
+ name = "futures-util"
837
+ version = "0.3.30"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
840
+ dependencies = [
841
+ "futures-channel",
842
+ "futures-core",
843
+ "futures-io",
844
+ "futures-macro",
845
+ "futures-sink",
846
+ "futures-task",
847
+ "memchr",
848
+ "pin-project-lite",
849
+ "pin-utils",
850
+ "slab",
851
+ ]
852
+
853
+ [[package]]
854
+ name = "generic-array"
855
+ version = "0.14.7"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
858
+ dependencies = [
859
+ "typenum",
860
+ "version_check",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "getrandom"
865
+ version = "0.2.12"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
868
+ dependencies = [
869
+ "cfg-if 1.0.0",
870
+ "js-sys",
871
+ "libc",
872
+ "wasi",
873
+ "wasm-bindgen",
874
+ ]
875
+
876
+ [[package]]
877
+ name = "gimli"
878
+ version = "0.28.1"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
881
+
882
+ [[package]]
883
+ name = "glob"
884
+ version = "0.3.1"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
887
+
888
+ [[package]]
889
+ name = "h2"
890
+ version = "0.3.26"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
893
+ dependencies = [
894
+ "bytes",
895
+ "fnv",
896
+ "futures-core",
897
+ "futures-sink",
898
+ "futures-util",
899
+ "http",
900
+ "indexmap 2.2.5",
901
+ "slab",
902
+ "tokio",
903
+ "tokio-util",
904
+ "tracing",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "hashbrown"
909
+ version = "0.12.3"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
912
+
913
+ [[package]]
914
+ name = "hashbrown"
915
+ version = "0.13.2"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
918
+
919
+ [[package]]
920
+ name = "hashbrown"
921
+ version = "0.14.3"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
924
+
925
+ [[package]]
926
+ name = "headers"
927
+ version = "0.3.9"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270"
930
+ dependencies = [
931
+ "base64",
932
+ "bytes",
933
+ "headers-core",
934
+ "http",
935
+ "httpdate",
936
+ "mime",
937
+ "sha1",
938
+ ]
939
+
940
+ [[package]]
941
+ name = "headers-core"
942
+ version = "0.2.0"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429"
945
+ dependencies = [
946
+ "http",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "heck"
951
+ version = "0.4.1"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
954
+
955
+ [[package]]
956
+ name = "heck"
957
+ version = "0.5.0"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
960
+
961
+ [[package]]
962
+ name = "hermit-abi"
963
+ version = "0.1.19"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
966
+ dependencies = [
967
+ "libc",
968
+ ]
969
+
970
+ [[package]]
971
+ name = "hermit-abi"
972
+ version = "0.3.9"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
975
+
976
+ [[package]]
977
+ name = "hex"
978
+ version = "0.4.3"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
981
+
982
+ [[package]]
983
+ name = "home"
984
+ version = "0.5.9"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
987
+ dependencies = [
988
+ "windows-sys 0.52.0",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "http"
993
+ version = "0.2.12"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
996
+ dependencies = [
997
+ "bytes",
998
+ "fnv",
999
+ "itoa",
1000
+ ]
1001
+
1002
+ [[package]]
1003
+ name = "http-body"
1004
+ version = "0.4.6"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
1007
+ dependencies = [
1008
+ "bytes",
1009
+ "http",
1010
+ "pin-project-lite",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "http-range-header"
1015
+ version = "0.3.1"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f"
1018
+
1019
+ [[package]]
1020
+ name = "httparse"
1021
+ version = "1.8.0"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
1024
+
1025
+ [[package]]
1026
+ name = "httpdate"
1027
+ version = "1.0.3"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1030
+
1031
+ [[package]]
1032
+ name = "humantime"
1033
+ version = "1.3.0"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
1036
+ dependencies = [
1037
+ "quick-error",
1038
+ ]
1039
+
1040
+ [[package]]
1041
+ name = "hyper"
1042
+ version = "0.14.28"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
1045
+ dependencies = [
1046
+ "bytes",
1047
+ "futures-channel",
1048
+ "futures-core",
1049
+ "futures-util",
1050
+ "h2",
1051
+ "http",
1052
+ "http-body",
1053
+ "httparse",
1054
+ "httpdate",
1055
+ "itoa",
1056
+ "pin-project-lite",
1057
+ "socket2",
1058
+ "tokio",
1059
+ "tower-service",
1060
+ "tracing",
1061
+ "want",
1062
+ ]
1063
+
1064
+ [[package]]
1065
+ name = "hyper-proxy"
1066
+ version = "0.9.1"
1067
+ source = "git+https://github.com/rigetti/hyper-proxy#e08329b56787326d6ec8d0bbcc1f96913af105c8"
1068
+ dependencies = [
1069
+ "bytes",
1070
+ "futures-util",
1071
+ "headers",
1072
+ "http",
1073
+ "hyper",
1074
+ "hyper-rustls",
1075
+ "rustls-native-certs 0.6.3",
1076
+ "tokio",
1077
+ "tokio-rustls 0.24.1",
1078
+ "tower-service",
1079
+ "webpki",
1080
+ ]
1081
+
1082
+ [[package]]
1083
+ name = "hyper-rustls"
1084
+ version = "0.24.2"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
1087
+ dependencies = [
1088
+ "futures-util",
1089
+ "http",
1090
+ "hyper",
1091
+ "log",
1092
+ "rustls 0.21.10",
1093
+ "rustls-native-certs 0.6.3",
1094
+ "tokio",
1095
+ "tokio-rustls 0.24.1",
1096
+ ]
1097
+
1098
+ [[package]]
1099
+ name = "hyper-socks2"
1100
+ version = "0.8.0"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "cc38166fc2732d450e9372388d269eb38ff0b75a3cfb4c542e65b2f6893629c4"
1103
+ dependencies = [
1104
+ "async-socks5",
1105
+ "futures",
1106
+ "http",
1107
+ "hyper",
1108
+ "thiserror",
1109
+ "tokio",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "hyper-timeout"
1114
+ version = "0.4.1"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
1117
+ dependencies = [
1118
+ "hyper",
1119
+ "pin-project-lite",
1120
+ "tokio",
1121
+ "tokio-io-timeout",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "ident_case"
1126
+ version = "1.0.1"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1129
+
1130
+ [[package]]
1131
+ name = "idna"
1132
+ version = "0.5.0"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
1135
+ dependencies = [
1136
+ "unicode-bidi",
1137
+ "unicode-normalization",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "indexmap"
1142
+ version = "1.9.3"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1145
+ dependencies = [
1146
+ "autocfg",
1147
+ "hashbrown 0.12.3",
1148
+ ]
1149
+
1150
+ [[package]]
1151
+ name = "indexmap"
1152
+ version = "2.2.5"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "7b0b929d511467233429c45a44ac1dcaa21ba0f5ba11e4879e6ed28ddb4f9df4"
1155
+ dependencies = [
1156
+ "equivalent",
1157
+ "hashbrown 0.14.3",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "indoc"
1162
+ version = "2.0.4"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8"
1165
+
1166
+ [[package]]
1167
+ name = "insta"
1168
+ version = "1.36.1"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "0a7c22c4d34ef4788c351e971c52bfdfe7ea2766f8c5466bc175dd46e52ac22e"
1171
+ dependencies = [
1172
+ "console",
1173
+ "lazy_static",
1174
+ "linked-hash-map",
1175
+ "similar",
1176
+ "yaml-rust",
1177
+ ]
1178
+
1179
+ [[package]]
1180
+ name = "instant"
1181
+ version = "0.1.12"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
1184
+ dependencies = [
1185
+ "cfg-if 1.0.0",
1186
+ ]
1187
+
1188
+ [[package]]
1189
+ name = "inventory"
1190
+ version = "0.3.15"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "f958d3d68f4167080a18141e10381e7634563984a537f2a49a30fd8e53ac5767"
1193
+
1194
+ [[package]]
1195
+ name = "ipnet"
1196
+ version = "2.9.0"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
1199
+
1200
+ [[package]]
1201
+ name = "is-terminal"
1202
+ version = "0.4.12"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
1205
+ dependencies = [
1206
+ "hermit-abi 0.3.9",
1207
+ "libc",
1208
+ "windows-sys 0.52.0",
1209
+ ]
1210
+
1211
+ [[package]]
1212
+ name = "itertools"
1213
+ version = "0.11.0"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
1216
+ dependencies = [
1217
+ "either",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "itertools"
1222
+ version = "0.12.1"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
1225
+ dependencies = [
1226
+ "either",
1227
+ ]
1228
+
1229
+ [[package]]
1230
+ name = "itoa"
1231
+ version = "1.0.10"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
1234
+
1235
+ [[package]]
1236
+ name = "jobserver"
1237
+ version = "0.1.28"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "ab46a6e9526ddef3ae7f787c06f0f2600639ba80ea3eade3d8e670a2230f51d6"
1240
+ dependencies = [
1241
+ "libc",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "js-sys"
1246
+ version = "0.3.69"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
1249
+ dependencies = [
1250
+ "wasm-bindgen",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "jsonwebtoken"
1255
+ version = "9.2.0"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "5c7ea04a7c5c055c175f189b6dc6ba036fd62306b58c66c9f6389036c503a3f4"
1258
+ dependencies = [
1259
+ "base64",
1260
+ "js-sys",
1261
+ "pem",
1262
+ "ring",
1263
+ "serde",
1264
+ "serde_json",
1265
+ "simple_asn1",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "jwalk"
1270
+ version = "0.8.1"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "2735847566356cd2179a2a38264839308f7079fa96e6bd5a42d740460e003c56"
1273
+ dependencies = [
1274
+ "crossbeam",
1275
+ "rayon",
1276
+ ]
1277
+
1278
+ [[package]]
1279
+ name = "lazy_static"
1280
+ version = "1.4.0"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
1283
+
1284
+ [[package]]
1285
+ name = "lazycell"
1286
+ version = "1.3.0"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1289
+
1290
+ [[package]]
1291
+ name = "lexical"
1292
+ version = "6.1.1"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "c7aefb36fd43fef7003334742cbf77b243fcd36418a1d1bdd480d613a67968f6"
1295
+ dependencies = [
1296
+ "lexical-core",
1297
+ ]
1298
+
1299
+ [[package]]
1300
+ name = "lexical-core"
1301
+ version = "0.8.5"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46"
1304
+ dependencies = [
1305
+ "lexical-parse-float",
1306
+ "lexical-parse-integer",
1307
+ "lexical-util",
1308
+ "lexical-write-float",
1309
+ "lexical-write-integer",
1310
+ ]
1311
+
1312
+ [[package]]
1313
+ name = "lexical-parse-float"
1314
+ version = "0.8.5"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f"
1317
+ dependencies = [
1318
+ "lexical-parse-integer",
1319
+ "lexical-util",
1320
+ "static_assertions",
1321
+ ]
1322
+
1323
+ [[package]]
1324
+ name = "lexical-parse-integer"
1325
+ version = "0.8.6"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
1328
+ dependencies = [
1329
+ "lexical-util",
1330
+ "static_assertions",
1331
+ ]
1332
+
1333
+ [[package]]
1334
+ name = "lexical-util"
1335
+ version = "0.8.5"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
1338
+ dependencies = [
1339
+ "static_assertions",
1340
+ ]
1341
+
1342
+ [[package]]
1343
+ name = "lexical-write-float"
1344
+ version = "0.8.5"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
1347
+ dependencies = [
1348
+ "lexical-util",
1349
+ "lexical-write-integer",
1350
+ "static_assertions",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "lexical-write-integer"
1355
+ version = "0.8.5"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
1358
+ dependencies = [
1359
+ "lexical-util",
1360
+ "static_assertions",
1361
+ ]
1362
+
1363
+ [[package]]
1364
+ name = "libc"
1365
+ version = "0.2.153"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
1368
+
1369
+ [[package]]
1370
+ name = "libloading"
1371
+ version = "0.5.2"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753"
1374
+ dependencies = [
1375
+ "cc",
1376
+ "winapi",
1377
+ ]
1378
+
1379
+ [[package]]
1380
+ name = "libloading"
1381
+ version = "0.8.3"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
1384
+ dependencies = [
1385
+ "cfg-if 1.0.0",
1386
+ "windows-targets 0.52.4",
1387
+ ]
1388
+
1389
+ [[package]]
1390
+ name = "libquil-sys"
1391
+ version = "0.4.0"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "d1c6dd6ae79389c6811ea65beac8ce9b43cccc61ebc457a13ef16c500a65ab47"
1394
+ dependencies = [
1395
+ "bindgen",
1396
+ "cc",
1397
+ "libc",
1398
+ "libloading 0.8.3",
1399
+ "num-complex",
1400
+ "paste",
1401
+ "pkg-config",
1402
+ "serde_json",
1403
+ "thiserror",
1404
+ ]
1405
+
1406
+ [[package]]
1407
+ name = "linked-hash-map"
1408
+ version = "0.5.6"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
1411
+
1412
+ [[package]]
1413
+ name = "linux-raw-sys"
1414
+ version = "0.4.13"
1415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1416
+ checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
1417
+
1418
+ [[package]]
1419
+ name = "lock_api"
1420
+ version = "0.4.11"
1421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1422
+ checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
1423
+ dependencies = [
1424
+ "autocfg",
1425
+ "scopeguard",
1426
+ ]
1427
+
1428
+ [[package]]
1429
+ name = "log"
1430
+ version = "0.4.21"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
1433
+
1434
+ [[package]]
1435
+ name = "maplit"
1436
+ version = "1.0.2"
1437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1438
+ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
1439
+
1440
+ [[package]]
1441
+ name = "matchit"
1442
+ version = "0.7.3"
1443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1444
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1445
+
1446
+ [[package]]
1447
+ name = "matrixmultiply"
1448
+ version = "0.3.8"
1449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1450
+ checksum = "7574c1cf36da4798ab73da5b215bbf444f50718207754cb522201d78d1cd0ff2"
1451
+ dependencies = [
1452
+ "autocfg",
1453
+ "rawpointer",
1454
+ ]
1455
+
1456
+ [[package]]
1457
+ name = "memchr"
1458
+ version = "2.7.1"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
1461
+
1462
+ [[package]]
1463
+ name = "memoffset"
1464
+ version = "0.9.0"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
1467
+ dependencies = [
1468
+ "autocfg",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "mime"
1473
+ version = "0.3.17"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1476
+
1477
+ [[package]]
1478
+ name = "mime_guess"
1479
+ version = "2.0.4"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
1482
+ dependencies = [
1483
+ "mime",
1484
+ "unicase",
1485
+ ]
1486
+
1487
+ [[package]]
1488
+ name = "minimal-lexical"
1489
+ version = "0.2.1"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1492
+
1493
+ [[package]]
1494
+ name = "miniz_oxide"
1495
+ version = "0.7.2"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
1498
+ dependencies = [
1499
+ "adler",
1500
+ ]
1501
+
1502
+ [[package]]
1503
+ name = "mio"
1504
+ version = "0.8.11"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
1507
+ dependencies = [
1508
+ "libc",
1509
+ "wasi",
1510
+ "windows-sys 0.48.0",
1511
+ ]
1512
+
1513
+ [[package]]
1514
+ name = "multimap"
1515
+ version = "0.8.3"
1516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1517
+ checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"
1518
+
1519
+ [[package]]
1520
+ name = "ndarray"
1521
+ version = "0.15.6"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32"
1524
+ dependencies = [
1525
+ "approx",
1526
+ "matrixmultiply",
1527
+ "num-complex",
1528
+ "num-integer",
1529
+ "num-traits",
1530
+ "rawpointer",
1531
+ "serde",
1532
+ ]
1533
+
1534
+ [[package]]
1535
+ name = "nom"
1536
+ version = "5.1.3"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "08959a387a676302eebf4ddbcbc611da04285579f76f88ee0506c63b1a61dd4b"
1539
+ dependencies = [
1540
+ "memchr",
1541
+ "version_check",
1542
+ ]
1543
+
1544
+ [[package]]
1545
+ name = "nom"
1546
+ version = "7.1.3"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1549
+ dependencies = [
1550
+ "memchr",
1551
+ "minimal-lexical",
1552
+ ]
1553
+
1554
+ [[package]]
1555
+ name = "nom_locate"
1556
+ version = "4.2.0"
1557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1558
+ checksum = "1e3c83c053b0713da60c5b8de47fe8e494fe3ece5267b2f23090a07a053ba8f3"
1559
+ dependencies = [
1560
+ "bytecount",
1561
+ "memchr",
1562
+ "nom 7.1.3",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "nu-ansi-term"
1567
+ version = "0.46.0"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
1570
+ dependencies = [
1571
+ "overload",
1572
+ "winapi",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "num"
1577
+ version = "0.4.1"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "b05180d69e3da0e530ba2a1dae5110317e49e3b7f3d41be227dc5f92e49ee7af"
1580
+ dependencies = [
1581
+ "num-bigint",
1582
+ "num-complex",
1583
+ "num-integer",
1584
+ "num-iter",
1585
+ "num-rational",
1586
+ "num-traits",
1587
+ ]
1588
+
1589
+ [[package]]
1590
+ name = "num-bigint"
1591
+ version = "0.4.4"
1592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1593
+ checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
1594
+ dependencies = [
1595
+ "autocfg",
1596
+ "num-integer",
1597
+ "num-traits",
1598
+ "serde",
1599
+ ]
1600
+
1601
+ [[package]]
1602
+ name = "num-complex"
1603
+ version = "0.4.5"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "23c6602fda94a57c990fe0df199a035d83576b496aa29f4e634a8ac6004e68a6"
1606
+ dependencies = [
1607
+ "num-traits",
1608
+ "serde",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "num-conv"
1613
+ version = "0.1.0"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1616
+
1617
+ [[package]]
1618
+ name = "num-integer"
1619
+ version = "0.1.46"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1622
+ dependencies = [
1623
+ "num-traits",
1624
+ ]
1625
+
1626
+ [[package]]
1627
+ name = "num-iter"
1628
+ version = "0.1.44"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "d869c01cc0c455284163fd0092f1f93835385ccab5a98a0dcc497b2f8bf055a9"
1631
+ dependencies = [
1632
+ "autocfg",
1633
+ "num-integer",
1634
+ "num-traits",
1635
+ ]
1636
+
1637
+ [[package]]
1638
+ name = "num-rational"
1639
+ version = "0.4.1"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
1642
+ dependencies = [
1643
+ "autocfg",
1644
+ "num-bigint",
1645
+ "num-integer",
1646
+ "num-traits",
1647
+ "serde",
1648
+ ]
1649
+
1650
+ [[package]]
1651
+ name = "num-traits"
1652
+ version = "0.2.18"
1653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1654
+ checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
1655
+ dependencies = [
1656
+ "autocfg",
1657
+ ]
1658
+
1659
+ [[package]]
1660
+ name = "num_cpus"
1661
+ version = "1.16.0"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
1664
+ dependencies = [
1665
+ "hermit-abi 0.3.9",
1666
+ "libc",
1667
+ ]
1668
+
1669
+ [[package]]
1670
+ name = "numpy"
1671
+ version = "0.20.0"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "bef41cbb417ea83b30525259e30ccef6af39b31c240bda578889494c5392d331"
1674
+ dependencies = [
1675
+ "libc",
1676
+ "ndarray",
1677
+ "num-complex",
1678
+ "num-integer",
1679
+ "num-traits",
1680
+ "pyo3",
1681
+ "rustc-hash",
1682
+ ]
1683
+
1684
+ [[package]]
1685
+ name = "object"
1686
+ version = "0.32.2"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
1689
+ dependencies = [
1690
+ "memchr",
1691
+ ]
1692
+
1693
+ [[package]]
1694
+ name = "once_cell"
1695
+ version = "1.19.0"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
1698
+
1699
+ [[package]]
1700
+ name = "openssl-probe"
1701
+ version = "0.1.5"
1702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1703
+ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1704
+
1705
+ [[package]]
1706
+ name = "opentelemetry"
1707
+ version = "0.20.0"
1708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1709
+ checksum = "9591d937bc0e6d2feb6f71a559540ab300ea49955229c347a517a28d27784c54"
1710
+ dependencies = [
1711
+ "opentelemetry_api",
1712
+ "opentelemetry_sdk",
1713
+ ]
1714
+
1715
+ [[package]]
1716
+ name = "opentelemetry-http"
1717
+ version = "0.9.0"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "c7594ec0e11d8e33faf03530a4c49af7064ebba81c1480e01be67d90b356508b"
1720
+ dependencies = [
1721
+ "async-trait",
1722
+ "bytes",
1723
+ "http",
1724
+ "opentelemetry_api",
1725
+ ]
1726
+
1727
+ [[package]]
1728
+ name = "opentelemetry_api"
1729
+ version = "0.20.0"
1730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1731
+ checksum = "8a81f725323db1b1206ca3da8bb19874bbd3f57c3bcd59471bfb04525b265b9b"
1732
+ dependencies = [
1733
+ "futures-channel",
1734
+ "futures-util",
1735
+ "indexmap 1.9.3",
1736
+ "js-sys",
1737
+ "once_cell",
1738
+ "pin-project-lite",
1739
+ "thiserror",
1740
+ "urlencoding",
1741
+ ]
1742
+
1743
+ [[package]]
1744
+ name = "opentelemetry_sdk"
1745
+ version = "0.20.0"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "fa8e705a0612d48139799fcbaba0d4a90f06277153e43dd2bdc16c6f0edd8026"
1748
+ dependencies = [
1749
+ "async-trait",
1750
+ "crossbeam-channel",
1751
+ "futures-channel",
1752
+ "futures-executor",
1753
+ "futures-util",
1754
+ "once_cell",
1755
+ "opentelemetry_api",
1756
+ "ordered-float",
1757
+ "percent-encoding",
1758
+ "rand",
1759
+ "regex",
1760
+ "thiserror",
1761
+ ]
1762
+
1763
+ [[package]]
1764
+ name = "ordered-float"
1765
+ version = "3.9.2"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "f1e1c390732d15f1d48471625cd92d154e66db2c56645e29a9cd26f4699f72dc"
1768
+ dependencies = [
1769
+ "num-traits",
1770
+ ]
1771
+
1772
+ [[package]]
1773
+ name = "overload"
1774
+ version = "0.1.1"
1775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1776
+ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1777
+
1778
+ [[package]]
1779
+ name = "parking_lot"
1780
+ version = "0.12.1"
1781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1782
+ checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
1783
+ dependencies = [
1784
+ "lock_api",
1785
+ "parking_lot_core",
1786
+ ]
1787
+
1788
+ [[package]]
1789
+ name = "parking_lot_core"
1790
+ version = "0.9.9"
1791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1792
+ checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
1793
+ dependencies = [
1794
+ "cfg-if 1.0.0",
1795
+ "libc",
1796
+ "redox_syscall",
1797
+ "smallvec",
1798
+ "windows-targets 0.48.5",
1799
+ ]
1800
+
1801
+ [[package]]
1802
+ name = "paste"
1803
+ version = "1.0.14"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
1806
+
1807
+ [[package]]
1808
+ name = "pbjson"
1809
+ version = "0.6.0"
1810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1811
+ checksum = "1030c719b0ec2a2d25a5df729d6cff1acf3cc230bf766f4f97833591f7577b90"
1812
+ dependencies = [
1813
+ "base64",
1814
+ "serde",
1815
+ ]
1816
+
1817
+ [[package]]
1818
+ name = "pbjson-build"
1819
+ version = "0.6.2"
1820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1821
+ checksum = "2580e33f2292d34be285c5bc3dba5259542b083cfad6037b6d70345f24dcb735"
1822
+ dependencies = [
1823
+ "heck 0.4.1",
1824
+ "itertools 0.11.0",
1825
+ "prost",
1826
+ "prost-types",
1827
+ ]
1828
+
1829
+ [[package]]
1830
+ name = "pbjson-types"
1831
+ version = "0.6.0"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "18f596653ba4ac51bdecbb4ef6773bc7f56042dc13927910de1684ad3d32aa12"
1834
+ dependencies = [
1835
+ "bytes",
1836
+ "chrono",
1837
+ "pbjson",
1838
+ "pbjson-build",
1839
+ "prost",
1840
+ "prost-build",
1841
+ "serde",
1842
+ ]
1843
+
1844
+ [[package]]
1845
+ name = "peeking_take_while"
1846
+ version = "0.1.2"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
1849
+
1850
+ [[package]]
1851
+ name = "pem"
1852
+ version = "3.0.3"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310"
1855
+ dependencies = [
1856
+ "base64",
1857
+ "serde",
1858
+ ]
1859
+
1860
+ [[package]]
1861
+ name = "percent-encoding"
1862
+ version = "2.3.1"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1865
+
1866
+ [[package]]
1867
+ name = "petgraph"
1868
+ version = "0.6.4"
1869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1870
+ checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9"
1871
+ dependencies = [
1872
+ "fixedbitset",
1873
+ "indexmap 2.2.5",
1874
+ ]
1875
+
1876
+ [[package]]
1877
+ name = "pin-project"
1878
+ version = "1.1.5"
1879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1880
+ checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
1881
+ dependencies = [
1882
+ "pin-project-internal",
1883
+ ]
1884
+
1885
+ [[package]]
1886
+ name = "pin-project-internal"
1887
+ version = "1.1.5"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
1890
+ dependencies = [
1891
+ "proc-macro2",
1892
+ "quote",
1893
+ "syn 2.0.53",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "pin-project-lite"
1898
+ version = "0.2.13"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
1901
+
1902
+ [[package]]
1903
+ name = "pin-utils"
1904
+ version = "0.1.0"
1905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1907
+
1908
+ [[package]]
1909
+ name = "pkg-config"
1910
+ version = "0.3.30"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
1913
+
1914
+ [[package]]
1915
+ name = "portable-atomic"
1916
+ version = "1.6.0"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
1919
+
1920
+ [[package]]
1921
+ name = "powerfmt"
1922
+ version = "0.2.0"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1925
+
1926
+ [[package]]
1927
+ name = "ppv-lite86"
1928
+ version = "0.2.17"
1929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1930
+ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
1931
+
1932
+ [[package]]
1933
+ name = "prettyplease"
1934
+ version = "0.2.16"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "a41cf62165e97c7f814d2221421dbb9afcbcdb0a88068e5ea206e19951c2cbb5"
1937
+ dependencies = [
1938
+ "proc-macro2",
1939
+ "syn 2.0.53",
1940
+ ]
1941
+
1942
+ [[package]]
1943
+ name = "proc-macro2"
1944
+ version = "1.0.79"
1945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1946
+ checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e"
1947
+ dependencies = [
1948
+ "unicode-ident",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "prost"
1953
+ version = "0.12.3"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "146c289cda302b98a28d40c8b3b90498d6e526dd24ac2ecea73e4e491685b94a"
1956
+ dependencies = [
1957
+ "bytes",
1958
+ "prost-derive",
1959
+ ]
1960
+
1961
+ [[package]]
1962
+ name = "prost-build"
1963
+ version = "0.12.3"
1964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1965
+ checksum = "c55e02e35260070b6f716a2423c2ff1c3bb1642ddca6f99e1f26d06268a0e2d2"
1966
+ dependencies = [
1967
+ "bytes",
1968
+ "heck 0.4.1",
1969
+ "itertools 0.11.0",
1970
+ "log",
1971
+ "multimap",
1972
+ "once_cell",
1973
+ "petgraph",
1974
+ "prettyplease",
1975
+ "prost",
1976
+ "prost-types",
1977
+ "regex",
1978
+ "syn 2.0.53",
1979
+ "tempfile",
1980
+ "which 4.4.2",
1981
+ ]
1982
+
1983
+ [[package]]
1984
+ name = "prost-derive"
1985
+ version = "0.12.3"
1986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1987
+ checksum = "efb6c9a1dd1def8e2124d17e83a20af56f1570d6c2d2bd9e266ccb768df3840e"
1988
+ dependencies = [
1989
+ "anyhow",
1990
+ "itertools 0.11.0",
1991
+ "proc-macro2",
1992
+ "quote",
1993
+ "syn 2.0.53",
1994
+ ]
1995
+
1996
+ [[package]]
1997
+ name = "prost-types"
1998
+ version = "0.12.3"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "193898f59edcf43c26227dcd4c8427f00d99d61e95dcde58dabd49fa291d470e"
2001
+ dependencies = [
2002
+ "prost",
2003
+ ]
2004
+
2005
+ [[package]]
2006
+ name = "pyo3"
2007
+ version = "0.20.3"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233"
2010
+ dependencies = [
2011
+ "cfg-if 1.0.0",
2012
+ "indoc",
2013
+ "inventory",
2014
+ "libc",
2015
+ "memoffset",
2016
+ "num-complex",
2017
+ "parking_lot",
2018
+ "portable-atomic",
2019
+ "pyo3-build-config",
2020
+ "pyo3-ffi",
2021
+ "pyo3-macros",
2022
+ "unindent",
2023
+ ]
2024
+
2025
+ [[package]]
2026
+ name = "pyo3-asyncio"
2027
+ version = "0.20.0"
2028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2029
+ checksum = "6ea6b68e93db3622f3bb3bf363246cf948ed5375afe7abff98ccbdd50b184995"
2030
+ dependencies = [
2031
+ "futures",
2032
+ "once_cell",
2033
+ "pin-project-lite",
2034
+ "pyo3",
2035
+ "tokio",
2036
+ ]
2037
+
2038
+ [[package]]
2039
+ name = "pyo3-build-config"
2040
+ version = "0.20.3"
2041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2042
+ checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
2043
+ dependencies = [
2044
+ "once_cell",
2045
+ "target-lexicon",
2046
+ ]
2047
+
2048
+ [[package]]
2049
+ name = "pyo3-ffi"
2050
+ version = "0.20.3"
2051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2052
+ checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa"
2053
+ dependencies = [
2054
+ "libc",
2055
+ "pyo3-build-config",
2056
+ ]
2057
+
2058
+ [[package]]
2059
+ name = "pyo3-log"
2060
+ version = "0.8.4"
2061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2062
+ checksum = "c09c2b349b6538d8a73d436ca606dab6ce0aaab4dad9e6b7bdd57a4f556c3bc3"
2063
+ dependencies = [
2064
+ "arc-swap",
2065
+ "log",
2066
+ "pyo3",
2067
+ ]
2068
+
2069
+ [[package]]
2070
+ name = "pyo3-macros"
2071
+ version = "0.20.3"
2072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2073
+ checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158"
2074
+ dependencies = [
2075
+ "proc-macro2",
2076
+ "pyo3-macros-backend",
2077
+ "quote",
2078
+ "syn 2.0.53",
2079
+ ]
2080
+
2081
+ [[package]]
2082
+ name = "pyo3-macros-backend"
2083
+ version = "0.20.3"
2084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2085
+ checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185"
2086
+ dependencies = [
2087
+ "heck 0.4.1",
2088
+ "proc-macro2",
2089
+ "pyo3-build-config",
2090
+ "quote",
2091
+ "syn 2.0.53",
2092
+ ]
2093
+
2094
+ [[package]]
2095
+ name = "qcs"
2096
+ version = "0.21.4"
2097
+ dependencies = [
2098
+ "assert2",
2099
+ "async-trait",
2100
+ "built",
2101
+ "cached",
2102
+ "derive_builder",
2103
+ "enum-as-inner",
2104
+ "erased-serde",
2105
+ "float-cmp",
2106
+ "futures",
2107
+ "hex",
2108
+ "indexmap 1.9.3",
2109
+ "insta",
2110
+ "itertools 0.11.0",
2111
+ "lazy_static",
2112
+ "libquil-sys",
2113
+ "maplit",
2114
+ "ndarray",
2115
+ "num",
2116
+ "qcs-api",
2117
+ "qcs-api-client-common",
2118
+ "qcs-api-client-grpc",
2119
+ "qcs-api-client-openapi",
2120
+ "quil-rs",
2121
+ "regex",
2122
+ "reqwest",
2123
+ "rmp-serde",
2124
+ "rstest",
2125
+ "serde",
2126
+ "serde_json",
2127
+ "simple_logger",
2128
+ "tempfile",
2129
+ "test-case",
2130
+ "thiserror",
2131
+ "tokio",
2132
+ "toml 0.7.8",
2133
+ "tonic",
2134
+ "tracing",
2135
+ "tracing-subscriber",
2136
+ "uuid",
2137
+ "warp",
2138
+ "zmq",
2139
+ ]
2140
+
2141
+ [[package]]
2142
+ name = "qcs-api"
2143
+ version = "0.2.1"
2144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2145
+ checksum = "7b2f3479fd26e3d5b41f89fe422ab2289cb16fa871498545828a1abcc6f1f267"
2146
+ dependencies = [
2147
+ "reqwest",
2148
+ "serde",
2149
+ "serde_derive",
2150
+ "serde_json",
2151
+ "url",
2152
+ ]
2153
+
2154
+ [[package]]
2155
+ name = "qcs-api-client-common"
2156
+ version = "0.7.12"
2157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2158
+ checksum = "e96a94ca1f4ac3e094d51d90deb5d158dddfd0723cca1b50d302acfd2e4e78ef"
2159
+ dependencies = [
2160
+ "async-trait",
2161
+ "backoff",
2162
+ "futures",
2163
+ "home",
2164
+ "http",
2165
+ "jsonwebtoken",
2166
+ "reqwest",
2167
+ "serde",
2168
+ "thiserror",
2169
+ "time",
2170
+ "tokio",
2171
+ "toml 0.7.8",
2172
+ "tracing",
2173
+ "url",
2174
+ "urlpattern",
2175
+ ]
2176
+
2177
+ [[package]]
2178
+ name = "qcs-api-client-grpc"
2179
+ version = "0.7.14"
2180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2181
+ checksum = "b82196be0676c8dc24749a830e886ffda6e34b3130c6a7078354c24dec07933a"
2182
+ dependencies = [
2183
+ "backoff",
2184
+ "http",
2185
+ "http-body",
2186
+ "hyper",
2187
+ "hyper-proxy",
2188
+ "hyper-socks2",
2189
+ "opentelemetry",
2190
+ "opentelemetry-http",
2191
+ "opentelemetry_api",
2192
+ "pbjson",
2193
+ "pbjson-build",
2194
+ "pbjson-types",
2195
+ "prost",
2196
+ "prost-build",
2197
+ "qcs-api-client-common",
2198
+ "serde",
2199
+ "thiserror",
2200
+ "tokio",
2201
+ "tonic",
2202
+ "tonic-build",
2203
+ "tonic-web",
2204
+ "tower",
2205
+ "tracing",
2206
+ "url",
2207
+ "urlpattern",
2208
+ ]
2209
+
2210
+ [[package]]
2211
+ name = "qcs-api-client-openapi"
2212
+ version = "0.8.13"
2213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2214
+ checksum = "0e318c4bffb689688d4f95afb2b5a52a70e12a191da402e0dded093102fcb1e9"
2215
+ dependencies = [
2216
+ "anyhow",
2217
+ "qcs-api-client-common",
2218
+ "reqwest",
2219
+ "reqwest-middleware",
2220
+ "reqwest-tracing",
2221
+ "serde",
2222
+ "serde_json",
2223
+ "task-local-extensions",
2224
+ "tokio",
2225
+ "tracing",
2226
+ "url",
2227
+ "urlpattern",
2228
+ ]
2229
+
2230
+ [[package]]
2231
+ name = "qcs-sdk-python-grpc-web"
2232
+ version = "0.17.4"
2233
+ dependencies = [
2234
+ "async-trait",
2235
+ "numpy",
2236
+ "once_cell",
2237
+ "paste",
2238
+ "pyo3",
2239
+ "pyo3-asyncio",
2240
+ "pyo3-build-config",
2241
+ "pyo3-log",
2242
+ "qcs",
2243
+ "qcs-api",
2244
+ "qcs-api-client-common",
2245
+ "qcs-api-client-grpc",
2246
+ "qcs-api-client-openapi",
2247
+ "quil-rs",
2248
+ "rigetti-pyo3",
2249
+ "serde_json",
2250
+ "thiserror",
2251
+ "tokio",
2252
+ ]
2253
+
2254
+ [[package]]
2255
+ name = "quick-error"
2256
+ version = "1.2.3"
2257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2258
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2259
+
2260
+ [[package]]
2261
+ name = "quil-rs"
2262
+ version = "0.23.0"
2263
+ source = "git+https://github.com/rigetti/quil-rs?tag=quil-py/v0.7.0#3bb618124c2165b7329c58c0f217d8ee9d816e67"
2264
+ dependencies = [
2265
+ "approx",
2266
+ "indexmap 2.2.5",
2267
+ "itertools 0.12.1",
2268
+ "lexical",
2269
+ "ndarray",
2270
+ "nom 7.1.3",
2271
+ "nom_locate",
2272
+ "num-complex",
2273
+ "once_cell",
2274
+ "petgraph",
2275
+ "regex",
2276
+ "serde",
2277
+ "strum",
2278
+ "thiserror",
2279
+ ]
2280
+
2281
+ [[package]]
2282
+ name = "quote"
2283
+ version = "1.0.35"
2284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2285
+ checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
2286
+ dependencies = [
2287
+ "proc-macro2",
2288
+ ]
2289
+
2290
+ [[package]]
2291
+ name = "rand"
2292
+ version = "0.8.5"
2293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2294
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2295
+ dependencies = [
2296
+ "libc",
2297
+ "rand_chacha",
2298
+ "rand_core",
2299
+ ]
2300
+
2301
+ [[package]]
2302
+ name = "rand_chacha"
2303
+ version = "0.3.1"
2304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2305
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2306
+ dependencies = [
2307
+ "ppv-lite86",
2308
+ "rand_core",
2309
+ ]
2310
+
2311
+ [[package]]
2312
+ name = "rand_core"
2313
+ version = "0.6.4"
2314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2315
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2316
+ dependencies = [
2317
+ "getrandom",
2318
+ ]
2319
+
2320
+ [[package]]
2321
+ name = "rawpointer"
2322
+ version = "0.2.1"
2323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2324
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
2325
+
2326
+ [[package]]
2327
+ name = "rayon"
2328
+ version = "1.9.0"
2329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2330
+ checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd"
2331
+ dependencies = [
2332
+ "either",
2333
+ "rayon-core",
2334
+ ]
2335
+
2336
+ [[package]]
2337
+ name = "rayon-core"
2338
+ version = "1.12.1"
2339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2340
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
2341
+ dependencies = [
2342
+ "crossbeam-deque",
2343
+ "crossbeam-utils",
2344
+ ]
2345
+
2346
+ [[package]]
2347
+ name = "redox_syscall"
2348
+ version = "0.4.1"
2349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2350
+ checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
2351
+ dependencies = [
2352
+ "bitflags 1.3.2",
2353
+ ]
2354
+
2355
+ [[package]]
2356
+ name = "regex"
2357
+ version = "1.10.3"
2358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2359
+ checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15"
2360
+ dependencies = [
2361
+ "aho-corasick",
2362
+ "memchr",
2363
+ "regex-automata",
2364
+ "regex-syntax",
2365
+ ]
2366
+
2367
+ [[package]]
2368
+ name = "regex-automata"
2369
+ version = "0.4.6"
2370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2371
+ checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
2372
+ dependencies = [
2373
+ "aho-corasick",
2374
+ "memchr",
2375
+ "regex-syntax",
2376
+ ]
2377
+
2378
+ [[package]]
2379
+ name = "regex-syntax"
2380
+ version = "0.8.2"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
2383
+
2384
+ [[package]]
2385
+ name = "reqwest"
2386
+ version = "0.11.27"
2387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2388
+ checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
2389
+ dependencies = [
2390
+ "base64",
2391
+ "bytes",
2392
+ "encoding_rs",
2393
+ "futures-core",
2394
+ "futures-util",
2395
+ "h2",
2396
+ "http",
2397
+ "http-body",
2398
+ "hyper",
2399
+ "hyper-rustls",
2400
+ "ipnet",
2401
+ "js-sys",
2402
+ "log",
2403
+ "mime",
2404
+ "mime_guess",
2405
+ "once_cell",
2406
+ "percent-encoding",
2407
+ "pin-project-lite",
2408
+ "rustls 0.21.10",
2409
+ "rustls-native-certs 0.6.3",
2410
+ "rustls-pemfile 1.0.4",
2411
+ "serde",
2412
+ "serde_json",
2413
+ "serde_urlencoded",
2414
+ "sync_wrapper",
2415
+ "system-configuration",
2416
+ "tokio",
2417
+ "tokio-rustls 0.24.1",
2418
+ "tokio-socks",
2419
+ "tower-service",
2420
+ "url",
2421
+ "wasm-bindgen",
2422
+ "wasm-bindgen-futures",
2423
+ "web-sys",
2424
+ "webpki-roots",
2425
+ "winreg",
2426
+ ]
2427
+
2428
+ [[package]]
2429
+ name = "reqwest-middleware"
2430
+ version = "0.2.5"
2431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2432
+ checksum = "5a735987236a8e238bf0296c7e351b999c188ccc11477f311b82b55c93984216"
2433
+ dependencies = [
2434
+ "anyhow",
2435
+ "async-trait",
2436
+ "http",
2437
+ "reqwest",
2438
+ "serde",
2439
+ "task-local-extensions",
2440
+ "thiserror",
2441
+ ]
2442
+
2443
+ [[package]]
2444
+ name = "reqwest-tracing"
2445
+ version = "0.4.8"
2446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2447
+ checksum = "190838e54153d7a7e2ea98851304b3ce92daeabf14c54d32b01b84a3e636f683"
2448
+ dependencies = [
2449
+ "anyhow",
2450
+ "async-trait",
2451
+ "getrandom",
2452
+ "matchit",
2453
+ "opentelemetry",
2454
+ "reqwest",
2455
+ "reqwest-middleware",
2456
+ "task-local-extensions",
2457
+ "tracing",
2458
+ "tracing-opentelemetry",
2459
+ ]
2460
+
2461
+ [[package]]
2462
+ name = "rigetti-pyo3"
2463
+ version = "0.3.1"
2464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2465
+ checksum = "ff977cba40f2cadf214226cf51c9729a4f5730a5413f901246eed78cb6e795c9"
2466
+ dependencies = [
2467
+ "num-complex",
2468
+ "num-traits",
2469
+ "paste",
2470
+ "pyo3",
2471
+ ]
2472
+
2473
+ [[package]]
2474
+ name = "ring"
2475
+ version = "0.17.8"
2476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2477
+ checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
2478
+ dependencies = [
2479
+ "cc",
2480
+ "cfg-if 1.0.0",
2481
+ "getrandom",
2482
+ "libc",
2483
+ "spin",
2484
+ "untrusted",
2485
+ "windows-sys 0.52.0",
2486
+ ]
2487
+
2488
+ [[package]]
2489
+ name = "rmp"
2490
+ version = "0.8.12"
2491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2492
+ checksum = "7f9860a6cc38ed1da53456442089b4dfa35e7cedaa326df63017af88385e6b20"
2493
+ dependencies = [
2494
+ "byteorder",
2495
+ "num-traits",
2496
+ "paste",
2497
+ ]
2498
+
2499
+ [[package]]
2500
+ name = "rmp-serde"
2501
+ version = "1.1.2"
2502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2503
+ checksum = "bffea85eea980d8a74453e5d02a8d93028f3c34725de143085a844ebe953258a"
2504
+ dependencies = [
2505
+ "byteorder",
2506
+ "rmp",
2507
+ "serde",
2508
+ ]
2509
+
2510
+ [[package]]
2511
+ name = "rstest"
2512
+ version = "0.17.0"
2513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2514
+ checksum = "de1bb486a691878cd320c2f0d319ba91eeaa2e894066d8b5f8f117c000e9d962"
2515
+ dependencies = [
2516
+ "futures",
2517
+ "futures-timer",
2518
+ "rstest_macros",
2519
+ "rustc_version",
2520
+ ]
2521
+
2522
+ [[package]]
2523
+ name = "rstest_macros"
2524
+ version = "0.17.0"
2525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2526
+ checksum = "290ca1a1c8ca7edb7c3283bd44dc35dd54fdec6253a3912e201ba1072018fca8"
2527
+ dependencies = [
2528
+ "cfg-if 1.0.0",
2529
+ "proc-macro2",
2530
+ "quote",
2531
+ "rustc_version",
2532
+ "syn 1.0.109",
2533
+ "unicode-ident",
2534
+ ]
2535
+
2536
+ [[package]]
2537
+ name = "rustc-demangle"
2538
+ version = "0.1.23"
2539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2540
+ checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
2541
+
2542
+ [[package]]
2543
+ name = "rustc-hash"
2544
+ version = "1.1.0"
2545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2546
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2547
+
2548
+ [[package]]
2549
+ name = "rustc_version"
2550
+ version = "0.4.0"
2551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2552
+ checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
2553
+ dependencies = [
2554
+ "semver",
2555
+ ]
2556
+
2557
+ [[package]]
2558
+ name = "rustix"
2559
+ version = "0.38.31"
2560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2561
+ checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949"
2562
+ dependencies = [
2563
+ "bitflags 2.5.0",
2564
+ "errno",
2565
+ "libc",
2566
+ "linux-raw-sys",
2567
+ "windows-sys 0.52.0",
2568
+ ]
2569
+
2570
+ [[package]]
2571
+ name = "rustls"
2572
+ version = "0.21.10"
2573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2574
+ checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba"
2575
+ dependencies = [
2576
+ "log",
2577
+ "ring",
2578
+ "rustls-webpki 0.101.7",
2579
+ "sct",
2580
+ ]
2581
+
2582
+ [[package]]
2583
+ name = "rustls"
2584
+ version = "0.22.2"
2585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2586
+ checksum = "e87c9956bd9807afa1f77e0f7594af32566e830e088a5576d27c5b6f30f49d41"
2587
+ dependencies = [
2588
+ "log",
2589
+ "ring",
2590
+ "rustls-pki-types",
2591
+ "rustls-webpki 0.102.2",
2592
+ "subtle",
2593
+ "zeroize",
2594
+ ]
2595
+
2596
+ [[package]]
2597
+ name = "rustls-native-certs"
2598
+ version = "0.6.3"
2599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2600
+ checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
2601
+ dependencies = [
2602
+ "openssl-probe",
2603
+ "rustls-pemfile 1.0.4",
2604
+ "schannel",
2605
+ "security-framework",
2606
+ ]
2607
+
2608
+ [[package]]
2609
+ name = "rustls-native-certs"
2610
+ version = "0.7.0"
2611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2612
+ checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792"
2613
+ dependencies = [
2614
+ "openssl-probe",
2615
+ "rustls-pemfile 2.1.1",
2616
+ "rustls-pki-types",
2617
+ "schannel",
2618
+ "security-framework",
2619
+ ]
2620
+
2621
+ [[package]]
2622
+ name = "rustls-pemfile"
2623
+ version = "1.0.4"
2624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2625
+ checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
2626
+ dependencies = [
2627
+ "base64",
2628
+ ]
2629
+
2630
+ [[package]]
2631
+ name = "rustls-pemfile"
2632
+ version = "2.1.1"
2633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2634
+ checksum = "f48172685e6ff52a556baa527774f61fcaa884f59daf3375c62a3f1cd2549dab"
2635
+ dependencies = [
2636
+ "base64",
2637
+ "rustls-pki-types",
2638
+ ]
2639
+
2640
+ [[package]]
2641
+ name = "rustls-pki-types"
2642
+ version = "1.3.1"
2643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2644
+ checksum = "5ede67b28608b4c60685c7d54122d4400d90f62b40caee7700e700380a390fa8"
2645
+
2646
+ [[package]]
2647
+ name = "rustls-webpki"
2648
+ version = "0.101.7"
2649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2650
+ checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
2651
+ dependencies = [
2652
+ "ring",
2653
+ "untrusted",
2654
+ ]
2655
+
2656
+ [[package]]
2657
+ name = "rustls-webpki"
2658
+ version = "0.102.2"
2659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2660
+ checksum = "faaa0a62740bedb9b2ef5afa303da42764c012f743917351dc9a237ea1663610"
2661
+ dependencies = [
2662
+ "ring",
2663
+ "rustls-pki-types",
2664
+ "untrusted",
2665
+ ]
2666
+
2667
+ [[package]]
2668
+ name = "rustversion"
2669
+ version = "1.0.14"
2670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2671
+ checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
2672
+
2673
+ [[package]]
2674
+ name = "ryu"
2675
+ version = "1.0.17"
2676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2677
+ checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
2678
+
2679
+ [[package]]
2680
+ name = "same-file"
2681
+ version = "1.0.6"
2682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2683
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2684
+ dependencies = [
2685
+ "winapi-util",
2686
+ ]
2687
+
2688
+ [[package]]
2689
+ name = "schannel"
2690
+ version = "0.1.23"
2691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2692
+ checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
2693
+ dependencies = [
2694
+ "windows-sys 0.52.0",
2695
+ ]
2696
+
2697
+ [[package]]
2698
+ name = "scoped-tls"
2699
+ version = "1.0.1"
2700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2701
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
2702
+
2703
+ [[package]]
2704
+ name = "scopeguard"
2705
+ version = "1.2.0"
2706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2707
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2708
+
2709
+ [[package]]
2710
+ name = "sct"
2711
+ version = "0.7.1"
2712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2713
+ checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
2714
+ dependencies = [
2715
+ "ring",
2716
+ "untrusted",
2717
+ ]
2718
+
2719
+ [[package]]
2720
+ name = "security-framework"
2721
+ version = "2.9.2"
2722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2723
+ checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
2724
+ dependencies = [
2725
+ "bitflags 1.3.2",
2726
+ "core-foundation",
2727
+ "core-foundation-sys",
2728
+ "libc",
2729
+ "security-framework-sys",
2730
+ ]
2731
+
2732
+ [[package]]
2733
+ name = "security-framework-sys"
2734
+ version = "2.9.1"
2735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2736
+ checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
2737
+ dependencies = [
2738
+ "core-foundation-sys",
2739
+ "libc",
2740
+ ]
2741
+
2742
+ [[package]]
2743
+ name = "semver"
2744
+ version = "1.0.22"
2745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2746
+ checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca"
2747
+ dependencies = [
2748
+ "serde",
2749
+ ]
2750
+
2751
+ [[package]]
2752
+ name = "serde"
2753
+ version = "1.0.197"
2754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2755
+ checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2"
2756
+ dependencies = [
2757
+ "serde_derive",
2758
+ ]
2759
+
2760
+ [[package]]
2761
+ name = "serde_derive"
2762
+ version = "1.0.197"
2763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2764
+ checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b"
2765
+ dependencies = [
2766
+ "proc-macro2",
2767
+ "quote",
2768
+ "syn 2.0.53",
2769
+ ]
2770
+
2771
+ [[package]]
2772
+ name = "serde_json"
2773
+ version = "1.0.114"
2774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2775
+ checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0"
2776
+ dependencies = [
2777
+ "itoa",
2778
+ "ryu",
2779
+ "serde",
2780
+ ]
2781
+
2782
+ [[package]]
2783
+ name = "serde_spanned"
2784
+ version = "0.6.5"
2785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2786
+ checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1"
2787
+ dependencies = [
2788
+ "serde",
2789
+ ]
2790
+
2791
+ [[package]]
2792
+ name = "serde_urlencoded"
2793
+ version = "0.7.1"
2794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2795
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2796
+ dependencies = [
2797
+ "form_urlencoded",
2798
+ "itoa",
2799
+ "ryu",
2800
+ "serde",
2801
+ ]
2802
+
2803
+ [[package]]
2804
+ name = "sha1"
2805
+ version = "0.10.6"
2806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2807
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2808
+ dependencies = [
2809
+ "cfg-if 1.0.0",
2810
+ "cpufeatures",
2811
+ "digest",
2812
+ ]
2813
+
2814
+ [[package]]
2815
+ name = "sharded-slab"
2816
+ version = "0.1.7"
2817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2818
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2819
+ dependencies = [
2820
+ "lazy_static",
2821
+ ]
2822
+
2823
+ [[package]]
2824
+ name = "shlex"
2825
+ version = "0.1.1"
2826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2827
+ checksum = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2"
2828
+
2829
+ [[package]]
2830
+ name = "similar"
2831
+ version = "2.4.0"
2832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2833
+ checksum = "32fea41aca09ee824cc9724996433064c89f7777e60762749a4170a14abbfa21"
2834
+
2835
+ [[package]]
2836
+ name = "simple_asn1"
2837
+ version = "0.6.2"
2838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2839
+ checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085"
2840
+ dependencies = [
2841
+ "num-bigint",
2842
+ "num-traits",
2843
+ "thiserror",
2844
+ "time",
2845
+ ]
2846
+
2847
+ [[package]]
2848
+ name = "simple_logger"
2849
+ version = "4.3.3"
2850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2851
+ checksum = "8e7e46c8c90251d47d08b28b8a419ffb4aede0f87c2eea95e17d1d5bacbf3ef1"
2852
+ dependencies = [
2853
+ "log",
2854
+ "windows-sys 0.48.0",
2855
+ ]
2856
+
2857
+ [[package]]
2858
+ name = "slab"
2859
+ version = "0.4.9"
2860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2861
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2862
+ dependencies = [
2863
+ "autocfg",
2864
+ ]
2865
+
2866
+ [[package]]
2867
+ name = "smallvec"
2868
+ version = "1.13.1"
2869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2870
+ checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7"
2871
+
2872
+ [[package]]
2873
+ name = "socket2"
2874
+ version = "0.5.6"
2875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2876
+ checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871"
2877
+ dependencies = [
2878
+ "libc",
2879
+ "windows-sys 0.52.0",
2880
+ ]
2881
+
2882
+ [[package]]
2883
+ name = "spin"
2884
+ version = "0.9.8"
2885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2886
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2887
+
2888
+ [[package]]
2889
+ name = "static_assertions"
2890
+ version = "1.1.0"
2891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2892
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2893
+
2894
+ [[package]]
2895
+ name = "strsim"
2896
+ version = "0.8.0"
2897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2898
+ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
2899
+
2900
+ [[package]]
2901
+ name = "strsim"
2902
+ version = "0.10.0"
2903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2904
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2905
+
2906
+ [[package]]
2907
+ name = "strum"
2908
+ version = "0.26.2"
2909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2910
+ checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29"
2911
+ dependencies = [
2912
+ "strum_macros",
2913
+ ]
2914
+
2915
+ [[package]]
2916
+ name = "strum_macros"
2917
+ version = "0.26.2"
2918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2919
+ checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946"
2920
+ dependencies = [
2921
+ "heck 0.4.1",
2922
+ "proc-macro2",
2923
+ "quote",
2924
+ "rustversion",
2925
+ "syn 2.0.53",
2926
+ ]
2927
+
2928
+ [[package]]
2929
+ name = "subtle"
2930
+ version = "2.5.0"
2931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2932
+ checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
2933
+
2934
+ [[package]]
2935
+ name = "syn"
2936
+ version = "1.0.109"
2937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2938
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2939
+ dependencies = [
2940
+ "proc-macro2",
2941
+ "quote",
2942
+ "unicode-ident",
2943
+ ]
2944
+
2945
+ [[package]]
2946
+ name = "syn"
2947
+ version = "2.0.53"
2948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2949
+ checksum = "7383cd0e49fff4b6b90ca5670bfd3e9d6a733b3f90c686605aa7eec8c4996032"
2950
+ dependencies = [
2951
+ "proc-macro2",
2952
+ "quote",
2953
+ "unicode-ident",
2954
+ ]
2955
+
2956
+ [[package]]
2957
+ name = "sync_wrapper"
2958
+ version = "0.1.2"
2959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2960
+ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
2961
+
2962
+ [[package]]
2963
+ name = "system-configuration"
2964
+ version = "0.5.1"
2965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2966
+ checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
2967
+ dependencies = [
2968
+ "bitflags 1.3.2",
2969
+ "core-foundation",
2970
+ "system-configuration-sys",
2971
+ ]
2972
+
2973
+ [[package]]
2974
+ name = "system-configuration-sys"
2975
+ version = "0.5.0"
2976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2977
+ checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
2978
+ dependencies = [
2979
+ "core-foundation-sys",
2980
+ "libc",
2981
+ ]
2982
+
2983
+ [[package]]
2984
+ name = "system-deps"
2985
+ version = "6.2.2"
2986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2987
+ checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
2988
+ dependencies = [
2989
+ "cfg-expr",
2990
+ "heck 0.5.0",
2991
+ "pkg-config",
2992
+ "toml 0.8.12",
2993
+ "version-compare",
2994
+ ]
2995
+
2996
+ [[package]]
2997
+ name = "target-lexicon"
2998
+ version = "0.12.14"
2999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3000
+ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
3001
+
3002
+ [[package]]
3003
+ name = "task-local-extensions"
3004
+ version = "0.1.4"
3005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3006
+ checksum = "ba323866e5d033818e3240feeb9f7db2c4296674e4d9e16b97b7bf8f490434e8"
3007
+ dependencies = [
3008
+ "pin-utils",
3009
+ ]
3010
+
3011
+ [[package]]
3012
+ name = "tempfile"
3013
+ version = "3.10.1"
3014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3015
+ checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
3016
+ dependencies = [
3017
+ "cfg-if 1.0.0",
3018
+ "fastrand",
3019
+ "rustix",
3020
+ "windows-sys 0.52.0",
3021
+ ]
3022
+
3023
+ [[package]]
3024
+ name = "termcolor"
3025
+ version = "1.4.1"
3026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3027
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
3028
+ dependencies = [
3029
+ "winapi-util",
3030
+ ]
3031
+
3032
+ [[package]]
3033
+ name = "test-case"
3034
+ version = "3.3.1"
3035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3036
+ checksum = "eb2550dd13afcd286853192af8601920d959b14c401fcece38071d53bf0768a8"
3037
+ dependencies = [
3038
+ "test-case-macros",
3039
+ ]
3040
+
3041
+ [[package]]
3042
+ name = "test-case-core"
3043
+ version = "3.3.1"
3044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3045
+ checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f"
3046
+ dependencies = [
3047
+ "cfg-if 1.0.0",
3048
+ "proc-macro2",
3049
+ "quote",
3050
+ "syn 2.0.53",
3051
+ ]
3052
+
3053
+ [[package]]
3054
+ name = "test-case-macros"
3055
+ version = "3.3.1"
3056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3057
+ checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb"
3058
+ dependencies = [
3059
+ "proc-macro2",
3060
+ "quote",
3061
+ "syn 2.0.53",
3062
+ "test-case-core",
3063
+ ]
3064
+
3065
+ [[package]]
3066
+ name = "textwrap"
3067
+ version = "0.11.0"
3068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3069
+ checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
3070
+ dependencies = [
3071
+ "unicode-width",
3072
+ ]
3073
+
3074
+ [[package]]
3075
+ name = "thiserror"
3076
+ version = "1.0.58"
3077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3078
+ checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297"
3079
+ dependencies = [
3080
+ "thiserror-impl",
3081
+ ]
3082
+
3083
+ [[package]]
3084
+ name = "thiserror-impl"
3085
+ version = "1.0.58"
3086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3087
+ checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7"
3088
+ dependencies = [
3089
+ "proc-macro2",
3090
+ "quote",
3091
+ "syn 2.0.53",
3092
+ ]
3093
+
3094
+ [[package]]
3095
+ name = "thread_local"
3096
+ version = "1.1.8"
3097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3098
+ checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
3099
+ dependencies = [
3100
+ "cfg-if 1.0.0",
3101
+ "once_cell",
3102
+ ]
3103
+
3104
+ [[package]]
3105
+ name = "time"
3106
+ version = "0.3.34"
3107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3108
+ checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749"
3109
+ dependencies = [
3110
+ "deranged",
3111
+ "itoa",
3112
+ "num-conv",
3113
+ "powerfmt",
3114
+ "serde",
3115
+ "time-core",
3116
+ "time-macros",
3117
+ ]
3118
+
3119
+ [[package]]
3120
+ name = "time-core"
3121
+ version = "0.1.2"
3122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3123
+ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
3124
+
3125
+ [[package]]
3126
+ name = "time-macros"
3127
+ version = "0.2.17"
3128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3129
+ checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774"
3130
+ dependencies = [
3131
+ "num-conv",
3132
+ "time-core",
3133
+ ]
3134
+
3135
+ [[package]]
3136
+ name = "tinyvec"
3137
+ version = "1.6.0"
3138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3139
+ checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
3140
+ dependencies = [
3141
+ "tinyvec_macros",
3142
+ ]
3143
+
3144
+ [[package]]
3145
+ name = "tinyvec_macros"
3146
+ version = "0.1.1"
3147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3148
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3149
+
3150
+ [[package]]
3151
+ name = "tokio"
3152
+ version = "1.36.0"
3153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3154
+ checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931"
3155
+ dependencies = [
3156
+ "backtrace",
3157
+ "bytes",
3158
+ "libc",
3159
+ "mio",
3160
+ "num_cpus",
3161
+ "parking_lot",
3162
+ "pin-project-lite",
3163
+ "socket2",
3164
+ "tokio-macros",
3165
+ "windows-sys 0.48.0",
3166
+ ]
3167
+
3168
+ [[package]]
3169
+ name = "tokio-io-timeout"
3170
+ version = "1.2.0"
3171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3172
+ checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
3173
+ dependencies = [
3174
+ "pin-project-lite",
3175
+ "tokio",
3176
+ ]
3177
+
3178
+ [[package]]
3179
+ name = "tokio-macros"
3180
+ version = "2.2.0"
3181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3182
+ checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
3183
+ dependencies = [
3184
+ "proc-macro2",
3185
+ "quote",
3186
+ "syn 2.0.53",
3187
+ ]
3188
+
3189
+ [[package]]
3190
+ name = "tokio-rustls"
3191
+ version = "0.24.1"
3192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3193
+ checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
3194
+ dependencies = [
3195
+ "rustls 0.21.10",
3196
+ "tokio",
3197
+ ]
3198
+
3199
+ [[package]]
3200
+ name = "tokio-rustls"
3201
+ version = "0.25.0"
3202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3203
+ checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
3204
+ dependencies = [
3205
+ "rustls 0.22.2",
3206
+ "rustls-pki-types",
3207
+ "tokio",
3208
+ ]
3209
+
3210
+ [[package]]
3211
+ name = "tokio-socks"
3212
+ version = "0.5.1"
3213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3214
+ checksum = "51165dfa029d2a65969413a6cc96f354b86b464498702f174a4efa13608fd8c0"
3215
+ dependencies = [
3216
+ "either",
3217
+ "futures-util",
3218
+ "thiserror",
3219
+ "tokio",
3220
+ ]
3221
+
3222
+ [[package]]
3223
+ name = "tokio-stream"
3224
+ version = "0.1.15"
3225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3226
+ checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af"
3227
+ dependencies = [
3228
+ "futures-core",
3229
+ "pin-project-lite",
3230
+ "tokio",
3231
+ ]
3232
+
3233
+ [[package]]
3234
+ name = "tokio-util"
3235
+ version = "0.7.10"
3236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3237
+ checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
3238
+ dependencies = [
3239
+ "bytes",
3240
+ "futures-core",
3241
+ "futures-sink",
3242
+ "pin-project-lite",
3243
+ "tokio",
3244
+ "tracing",
3245
+ ]
3246
+
3247
+ [[package]]
3248
+ name = "toml"
3249
+ version = "0.7.8"
3250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3251
+ checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257"
3252
+ dependencies = [
3253
+ "serde",
3254
+ "serde_spanned",
3255
+ "toml_datetime",
3256
+ "toml_edit 0.19.15",
3257
+ ]
3258
+
3259
+ [[package]]
3260
+ name = "toml"
3261
+ version = "0.8.12"
3262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3263
+ checksum = "e9dd1545e8208b4a5af1aa9bbd0b4cf7e9ea08fabc5d0a5c67fcaafa17433aa3"
3264
+ dependencies = [
3265
+ "serde",
3266
+ "serde_spanned",
3267
+ "toml_datetime",
3268
+ "toml_edit 0.22.8",
3269
+ ]
3270
+
3271
+ [[package]]
3272
+ name = "toml_datetime"
3273
+ version = "0.6.5"
3274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3275
+ checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
3276
+ dependencies = [
3277
+ "serde",
3278
+ ]
3279
+
3280
+ [[package]]
3281
+ name = "toml_edit"
3282
+ version = "0.19.15"
3283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3284
+ checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
3285
+ dependencies = [
3286
+ "indexmap 2.2.5",
3287
+ "serde",
3288
+ "serde_spanned",
3289
+ "toml_datetime",
3290
+ "winnow 0.5.40",
3291
+ ]
3292
+
3293
+ [[package]]
3294
+ name = "toml_edit"
3295
+ version = "0.22.8"
3296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3297
+ checksum = "c12219811e0c1ba077867254e5ad62ee2c9c190b0d957110750ac0cda1ae96cd"
3298
+ dependencies = [
3299
+ "indexmap 2.2.5",
3300
+ "serde",
3301
+ "serde_spanned",
3302
+ "toml_datetime",
3303
+ "winnow 0.6.5",
3304
+ ]
3305
+
3306
+ [[package]]
3307
+ name = "tonic"
3308
+ version = "0.11.0"
3309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3310
+ checksum = "76c4eb7a4e9ef9d4763600161f12f5070b92a578e1b634db88a6887844c91a13"
3311
+ dependencies = [
3312
+ "async-stream",
3313
+ "async-trait",
3314
+ "axum",
3315
+ "base64",
3316
+ "bytes",
3317
+ "h2",
3318
+ "http",
3319
+ "http-body",
3320
+ "hyper",
3321
+ "hyper-timeout",
3322
+ "percent-encoding",
3323
+ "pin-project",
3324
+ "prost",
3325
+ "rustls-native-certs 0.7.0",
3326
+ "rustls-pemfile 2.1.1",
3327
+ "rustls-pki-types",
3328
+ "tokio",
3329
+ "tokio-rustls 0.25.0",
3330
+ "tokio-stream",
3331
+ "tower",
3332
+ "tower-layer",
3333
+ "tower-service",
3334
+ "tracing",
3335
+ ]
3336
+
3337
+ [[package]]
3338
+ name = "tonic-build"
3339
+ version = "0.11.0"
3340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3341
+ checksum = "be4ef6dd70a610078cb4e338a0f79d06bc759ff1b22d2120c2ff02ae264ba9c2"
3342
+ dependencies = [
3343
+ "prettyplease",
3344
+ "proc-macro2",
3345
+ "prost-build",
3346
+ "quote",
3347
+ "syn 2.0.53",
3348
+ ]
3349
+
3350
+ [[package]]
3351
+ name = "tonic-web"
3352
+ version = "0.11.0"
3353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3354
+ checksum = "dc3b0e1cedbf19fdfb78ef3d672cb9928e0a91a9cb4629cc0c916e8cff8aaaa1"
3355
+ dependencies = [
3356
+ "base64",
3357
+ "bytes",
3358
+ "http",
3359
+ "http-body",
3360
+ "hyper",
3361
+ "pin-project",
3362
+ "tokio-stream",
3363
+ "tonic",
3364
+ "tower-http",
3365
+ "tower-layer",
3366
+ "tower-service",
3367
+ "tracing",
3368
+ ]
3369
+
3370
+ [[package]]
3371
+ name = "tower"
3372
+ version = "0.4.13"
3373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3374
+ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
3375
+ dependencies = [
3376
+ "futures-core",
3377
+ "futures-util",
3378
+ "indexmap 1.9.3",
3379
+ "pin-project",
3380
+ "pin-project-lite",
3381
+ "rand",
3382
+ "slab",
3383
+ "tokio",
3384
+ "tokio-util",
3385
+ "tower-layer",
3386
+ "tower-service",
3387
+ "tracing",
3388
+ ]
3389
+
3390
+ [[package]]
3391
+ name = "tower-http"
3392
+ version = "0.4.4"
3393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3394
+ checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140"
3395
+ dependencies = [
3396
+ "bitflags 2.5.0",
3397
+ "bytes",
3398
+ "futures-core",
3399
+ "futures-util",
3400
+ "http",
3401
+ "http-body",
3402
+ "http-range-header",
3403
+ "pin-project-lite",
3404
+ "tower-layer",
3405
+ "tower-service",
3406
+ ]
3407
+
3408
+ [[package]]
3409
+ name = "tower-layer"
3410
+ version = "0.3.2"
3411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3412
+ checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
3413
+
3414
+ [[package]]
3415
+ name = "tower-service"
3416
+ version = "0.3.2"
3417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3418
+ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
3419
+
3420
+ [[package]]
3421
+ name = "tracing"
3422
+ version = "0.1.40"
3423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3424
+ checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
3425
+ dependencies = [
3426
+ "log",
3427
+ "pin-project-lite",
3428
+ "tracing-attributes",
3429
+ "tracing-core",
3430
+ ]
3431
+
3432
+ [[package]]
3433
+ name = "tracing-attributes"
3434
+ version = "0.1.27"
3435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3436
+ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
3437
+ dependencies = [
3438
+ "proc-macro2",
3439
+ "quote",
3440
+ "syn 2.0.53",
3441
+ ]
3442
+
3443
+ [[package]]
3444
+ name = "tracing-core"
3445
+ version = "0.1.32"
3446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3447
+ checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
3448
+ dependencies = [
3449
+ "once_cell",
3450
+ "valuable",
3451
+ ]
3452
+
3453
+ [[package]]
3454
+ name = "tracing-log"
3455
+ version = "0.1.4"
3456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3457
+ checksum = "f751112709b4e791d8ce53e32c4ed2d353565a795ce84da2285393f41557bdf2"
3458
+ dependencies = [
3459
+ "log",
3460
+ "once_cell",
3461
+ "tracing-core",
3462
+ ]
3463
+
3464
+ [[package]]
3465
+ name = "tracing-log"
3466
+ version = "0.2.0"
3467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3468
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3469
+ dependencies = [
3470
+ "log",
3471
+ "once_cell",
3472
+ "tracing-core",
3473
+ ]
3474
+
3475
+ [[package]]
3476
+ name = "tracing-opentelemetry"
3477
+ version = "0.20.0"
3478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3479
+ checksum = "fc09e402904a5261e42cf27aea09ccb7d5318c6717a9eec3d8e2e65c56b18f19"
3480
+ dependencies = [
3481
+ "once_cell",
3482
+ "opentelemetry",
3483
+ "tracing",
3484
+ "tracing-core",
3485
+ "tracing-log 0.1.4",
3486
+ "tracing-subscriber",
3487
+ ]
3488
+
3489
+ [[package]]
3490
+ name = "tracing-subscriber"
3491
+ version = "0.3.18"
3492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3493
+ checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
3494
+ dependencies = [
3495
+ "nu-ansi-term",
3496
+ "sharded-slab",
3497
+ "smallvec",
3498
+ "thread_local",
3499
+ "tracing-core",
3500
+ "tracing-log 0.2.0",
3501
+ ]
3502
+
3503
+ [[package]]
3504
+ name = "try-lock"
3505
+ version = "0.2.5"
3506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3507
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3508
+
3509
+ [[package]]
3510
+ name = "typenum"
3511
+ version = "1.17.0"
3512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3513
+ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
3514
+
3515
+ [[package]]
3516
+ name = "unic-char-property"
3517
+ version = "0.9.0"
3518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3519
+ checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
3520
+ dependencies = [
3521
+ "unic-char-range",
3522
+ ]
3523
+
3524
+ [[package]]
3525
+ name = "unic-char-range"
3526
+ version = "0.9.0"
3527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3528
+ checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
3529
+
3530
+ [[package]]
3531
+ name = "unic-common"
3532
+ version = "0.9.0"
3533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3534
+ checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
3535
+
3536
+ [[package]]
3537
+ name = "unic-ucd-ident"
3538
+ version = "0.9.0"
3539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3540
+ checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
3541
+ dependencies = [
3542
+ "unic-char-property",
3543
+ "unic-char-range",
3544
+ "unic-ucd-version",
3545
+ ]
3546
+
3547
+ [[package]]
3548
+ name = "unic-ucd-version"
3549
+ version = "0.9.0"
3550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3551
+ checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
3552
+ dependencies = [
3553
+ "unic-common",
3554
+ ]
3555
+
3556
+ [[package]]
3557
+ name = "unicase"
3558
+ version = "2.7.0"
3559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3560
+ checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
3561
+ dependencies = [
3562
+ "version_check",
3563
+ ]
3564
+
3565
+ [[package]]
3566
+ name = "unicode-bidi"
3567
+ version = "0.3.15"
3568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3569
+ checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
3570
+
3571
+ [[package]]
3572
+ name = "unicode-ident"
3573
+ version = "1.0.12"
3574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3575
+ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
3576
+
3577
+ [[package]]
3578
+ name = "unicode-normalization"
3579
+ version = "0.1.23"
3580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3581
+ checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
3582
+ dependencies = [
3583
+ "tinyvec",
3584
+ ]
3585
+
3586
+ [[package]]
3587
+ name = "unicode-width"
3588
+ version = "0.1.11"
3589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3590
+ checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
3591
+
3592
+ [[package]]
3593
+ name = "unindent"
3594
+ version = "0.2.3"
3595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3596
+ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
3597
+
3598
+ [[package]]
3599
+ name = "untrusted"
3600
+ version = "0.9.0"
3601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3602
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3603
+
3604
+ [[package]]
3605
+ name = "url"
3606
+ version = "2.5.0"
3607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3608
+ checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
3609
+ dependencies = [
3610
+ "form_urlencoded",
3611
+ "idna",
3612
+ "percent-encoding",
3613
+ ]
3614
+
3615
+ [[package]]
3616
+ name = "urlencoding"
3617
+ version = "2.1.3"
3618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3619
+ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
3620
+
3621
+ [[package]]
3622
+ name = "urlpattern"
3623
+ version = "0.2.0"
3624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3625
+ checksum = "f9bd5ff03aea02fa45b13a7980151fe45009af1980ba69f651ec367121a31609"
3626
+ dependencies = [
3627
+ "derive_more",
3628
+ "regex",
3629
+ "serde",
3630
+ "unic-ucd-ident",
3631
+ "url",
3632
+ ]
3633
+
3634
+ [[package]]
3635
+ name = "uuid"
3636
+ version = "1.8.0"
3637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3638
+ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
3639
+ dependencies = [
3640
+ "getrandom",
3641
+ ]
3642
+
3643
+ [[package]]
3644
+ name = "valuable"
3645
+ version = "0.1.0"
3646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3647
+ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
3648
+
3649
+ [[package]]
3650
+ name = "vec_map"
3651
+ version = "0.8.2"
3652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3653
+ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
3654
+
3655
+ [[package]]
3656
+ name = "version-compare"
3657
+ version = "0.2.0"
3658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3659
+ checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b"
3660
+
3661
+ [[package]]
3662
+ name = "version_check"
3663
+ version = "0.9.4"
3664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3665
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
3666
+
3667
+ [[package]]
3668
+ name = "walkdir"
3669
+ version = "2.5.0"
3670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3671
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3672
+ dependencies = [
3673
+ "same-file",
3674
+ "winapi-util",
3675
+ ]
3676
+
3677
+ [[package]]
3678
+ name = "want"
3679
+ version = "0.3.1"
3680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3681
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3682
+ dependencies = [
3683
+ "try-lock",
3684
+ ]
3685
+
3686
+ [[package]]
3687
+ name = "warp"
3688
+ version = "0.3.6"
3689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3690
+ checksum = "c1e92e22e03ff1230c03a1a8ee37d2f89cd489e2e541b7550d6afad96faed169"
3691
+ dependencies = [
3692
+ "bytes",
3693
+ "futures-channel",
3694
+ "futures-util",
3695
+ "headers",
3696
+ "http",
3697
+ "hyper",
3698
+ "log",
3699
+ "mime",
3700
+ "mime_guess",
3701
+ "percent-encoding",
3702
+ "pin-project",
3703
+ "rustls-pemfile 1.0.4",
3704
+ "scoped-tls",
3705
+ "serde",
3706
+ "serde_json",
3707
+ "serde_urlencoded",
3708
+ "tokio",
3709
+ "tokio-stream",
3710
+ "tokio-util",
3711
+ "tower-service",
3712
+ "tracing",
3713
+ ]
3714
+
3715
+ [[package]]
3716
+ name = "wasi"
3717
+ version = "0.11.0+wasi-snapshot-preview1"
3718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3719
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3720
+
3721
+ [[package]]
3722
+ name = "wasm-bindgen"
3723
+ version = "0.2.92"
3724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3725
+ checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
3726
+ dependencies = [
3727
+ "cfg-if 1.0.0",
3728
+ "wasm-bindgen-macro",
3729
+ ]
3730
+
3731
+ [[package]]
3732
+ name = "wasm-bindgen-backend"
3733
+ version = "0.2.92"
3734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3735
+ checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
3736
+ dependencies = [
3737
+ "bumpalo",
3738
+ "log",
3739
+ "once_cell",
3740
+ "proc-macro2",
3741
+ "quote",
3742
+ "syn 2.0.53",
3743
+ "wasm-bindgen-shared",
3744
+ ]
3745
+
3746
+ [[package]]
3747
+ name = "wasm-bindgen-futures"
3748
+ version = "0.4.42"
3749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3750
+ checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
3751
+ dependencies = [
3752
+ "cfg-if 1.0.0",
3753
+ "js-sys",
3754
+ "wasm-bindgen",
3755
+ "web-sys",
3756
+ ]
3757
+
3758
+ [[package]]
3759
+ name = "wasm-bindgen-macro"
3760
+ version = "0.2.92"
3761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3762
+ checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
3763
+ dependencies = [
3764
+ "quote",
3765
+ "wasm-bindgen-macro-support",
3766
+ ]
3767
+
3768
+ [[package]]
3769
+ name = "wasm-bindgen-macro-support"
3770
+ version = "0.2.92"
3771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3772
+ checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
3773
+ dependencies = [
3774
+ "proc-macro2",
3775
+ "quote",
3776
+ "syn 2.0.53",
3777
+ "wasm-bindgen-backend",
3778
+ "wasm-bindgen-shared",
3779
+ ]
3780
+
3781
+ [[package]]
3782
+ name = "wasm-bindgen-shared"
3783
+ version = "0.2.92"
3784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3785
+ checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
3786
+
3787
+ [[package]]
3788
+ name = "web-sys"
3789
+ version = "0.3.69"
3790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3791
+ checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
3792
+ dependencies = [
3793
+ "js-sys",
3794
+ "wasm-bindgen",
3795
+ ]
3796
+
3797
+ [[package]]
3798
+ name = "webpki"
3799
+ version = "0.22.4"
3800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3801
+ checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53"
3802
+ dependencies = [
3803
+ "ring",
3804
+ "untrusted",
3805
+ ]
3806
+
3807
+ [[package]]
3808
+ name = "webpki-roots"
3809
+ version = "0.25.4"
3810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3811
+ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
3812
+
3813
+ [[package]]
3814
+ name = "which"
3815
+ version = "3.1.1"
3816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3817
+ checksum = "d011071ae14a2f6671d0b74080ae0cd8ebf3a6f8c9589a2cd45f23126fe29724"
3818
+ dependencies = [
3819
+ "libc",
3820
+ ]
3821
+
3822
+ [[package]]
3823
+ name = "which"
3824
+ version = "4.4.2"
3825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3826
+ checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
3827
+ dependencies = [
3828
+ "either",
3829
+ "home",
3830
+ "once_cell",
3831
+ "rustix",
3832
+ ]
3833
+
3834
+ [[package]]
3835
+ name = "winapi"
3836
+ version = "0.3.9"
3837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3838
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3839
+ dependencies = [
3840
+ "winapi-i686-pc-windows-gnu",
3841
+ "winapi-x86_64-pc-windows-gnu",
3842
+ ]
3843
+
3844
+ [[package]]
3845
+ name = "winapi-i686-pc-windows-gnu"
3846
+ version = "0.4.0"
3847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3848
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3849
+
3850
+ [[package]]
3851
+ name = "winapi-util"
3852
+ version = "0.1.6"
3853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3854
+ checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
3855
+ dependencies = [
3856
+ "winapi",
3857
+ ]
3858
+
3859
+ [[package]]
3860
+ name = "winapi-x86_64-pc-windows-gnu"
3861
+ version = "0.4.0"
3862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3863
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3864
+
3865
+ [[package]]
3866
+ name = "windows-sys"
3867
+ version = "0.48.0"
3868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3869
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3870
+ dependencies = [
3871
+ "windows-targets 0.48.5",
3872
+ ]
3873
+
3874
+ [[package]]
3875
+ name = "windows-sys"
3876
+ version = "0.52.0"
3877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3878
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3879
+ dependencies = [
3880
+ "windows-targets 0.52.4",
3881
+ ]
3882
+
3883
+ [[package]]
3884
+ name = "windows-targets"
3885
+ version = "0.48.5"
3886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3887
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
3888
+ dependencies = [
3889
+ "windows_aarch64_gnullvm 0.48.5",
3890
+ "windows_aarch64_msvc 0.48.5",
3891
+ "windows_i686_gnu 0.48.5",
3892
+ "windows_i686_msvc 0.48.5",
3893
+ "windows_x86_64_gnu 0.48.5",
3894
+ "windows_x86_64_gnullvm 0.48.5",
3895
+ "windows_x86_64_msvc 0.48.5",
3896
+ ]
3897
+
3898
+ [[package]]
3899
+ name = "windows-targets"
3900
+ version = "0.52.4"
3901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3902
+ checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b"
3903
+ dependencies = [
3904
+ "windows_aarch64_gnullvm 0.52.4",
3905
+ "windows_aarch64_msvc 0.52.4",
3906
+ "windows_i686_gnu 0.52.4",
3907
+ "windows_i686_msvc 0.52.4",
3908
+ "windows_x86_64_gnu 0.52.4",
3909
+ "windows_x86_64_gnullvm 0.52.4",
3910
+ "windows_x86_64_msvc 0.52.4",
3911
+ ]
3912
+
3913
+ [[package]]
3914
+ name = "windows_aarch64_gnullvm"
3915
+ version = "0.48.5"
3916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3917
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3918
+
3919
+ [[package]]
3920
+ name = "windows_aarch64_gnullvm"
3921
+ version = "0.52.4"
3922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3923
+ checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9"
3924
+
3925
+ [[package]]
3926
+ name = "windows_aarch64_msvc"
3927
+ version = "0.48.5"
3928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3929
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3930
+
3931
+ [[package]]
3932
+ name = "windows_aarch64_msvc"
3933
+ version = "0.52.4"
3934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3935
+ checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675"
3936
+
3937
+ [[package]]
3938
+ name = "windows_i686_gnu"
3939
+ version = "0.48.5"
3940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3941
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3942
+
3943
+ [[package]]
3944
+ name = "windows_i686_gnu"
3945
+ version = "0.52.4"
3946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3947
+ checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3"
3948
+
3949
+ [[package]]
3950
+ name = "windows_i686_msvc"
3951
+ version = "0.48.5"
3952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3953
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3954
+
3955
+ [[package]]
3956
+ name = "windows_i686_msvc"
3957
+ version = "0.52.4"
3958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3959
+ checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02"
3960
+
3961
+ [[package]]
3962
+ name = "windows_x86_64_gnu"
3963
+ version = "0.48.5"
3964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3965
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3966
+
3967
+ [[package]]
3968
+ name = "windows_x86_64_gnu"
3969
+ version = "0.52.4"
3970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3971
+ checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03"
3972
+
3973
+ [[package]]
3974
+ name = "windows_x86_64_gnullvm"
3975
+ version = "0.48.5"
3976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3977
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3978
+
3979
+ [[package]]
3980
+ name = "windows_x86_64_gnullvm"
3981
+ version = "0.52.4"
3982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3983
+ checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177"
3984
+
3985
+ [[package]]
3986
+ name = "windows_x86_64_msvc"
3987
+ version = "0.48.5"
3988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3989
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3990
+
3991
+ [[package]]
3992
+ name = "windows_x86_64_msvc"
3993
+ version = "0.52.4"
3994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3995
+ checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8"
3996
+
3997
+ [[package]]
3998
+ name = "winnow"
3999
+ version = "0.5.40"
4000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4001
+ checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
4002
+ dependencies = [
4003
+ "memchr",
4004
+ ]
4005
+
4006
+ [[package]]
4007
+ name = "winnow"
4008
+ version = "0.6.5"
4009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4010
+ checksum = "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8"
4011
+ dependencies = [
4012
+ "memchr",
4013
+ ]
4014
+
4015
+ [[package]]
4016
+ name = "winreg"
4017
+ version = "0.50.0"
4018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4019
+ checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
4020
+ dependencies = [
4021
+ "cfg-if 1.0.0",
4022
+ "windows-sys 0.48.0",
4023
+ ]
4024
+
4025
+ [[package]]
4026
+ name = "yaml-rust"
4027
+ version = "0.4.5"
4028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4029
+ checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
4030
+ dependencies = [
4031
+ "linked-hash-map",
4032
+ ]
4033
+
4034
+ [[package]]
4035
+ name = "yansi"
4036
+ version = "0.5.1"
4037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4038
+ checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
4039
+
4040
+ [[package]]
4041
+ name = "zeroize"
4042
+ version = "1.7.0"
4043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4044
+ checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
4045
+
4046
+ [[package]]
4047
+ name = "zeromq-src"
4048
+ version = "0.2.6+4.3.4"
4049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4050
+ checksum = "fc120b771270365d5ed0dfb4baf1005f2243ae1ae83703265cb3504070f4160b"
4051
+ dependencies = [
4052
+ "cc",
4053
+ "dircpy",
4054
+ ]
4055
+
4056
+ [[package]]
4057
+ name = "zmq"
4058
+ version = "0.10.0"
4059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4060
+ checksum = "dd3091dd571fb84a9b3e5e5c6a807d186c411c812c8618786c3c30e5349234e7"
4061
+ dependencies = [
4062
+ "bitflags 1.3.2",
4063
+ "libc",
4064
+ "zmq-sys",
4065
+ ]
4066
+
4067
+ [[package]]
4068
+ name = "zmq-sys"
4069
+ version = "0.12.0"
4070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4071
+ checksum = "8e8351dc72494b4d7f5652a681c33634063bbad58046c1689e75270908fdc864"
4072
+ dependencies = [
4073
+ "libc",
4074
+ "system-deps",
4075
+ "zeromq-src",
4076
+ ]