act-cli 0.13.2__tar.gz → 0.14.0__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.
- {act_cli-0.13.2 → act_cli-0.14.0}/Cargo.lock +170 -540
- {act_cli-0.13.2 → act_cli-0.14.0}/Cargo.toml +11 -12
- {act_cli-0.13.2 → act_cli-0.14.0}/PKG-INFO +1 -1
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/Cargo.toml +5 -5
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/src/oauth/mod.rs +0 -1
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-mcp/Cargo.toml +1 -1
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/Cargo.toml +6 -6
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/http_client.rs +0 -2
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-store/Cargo.toml +6 -3
- act_cli-0.14.0/crates/act-store/examples/probe_manifest.rs +24 -0
- act_cli-0.14.0/crates/act-store/examples/probe_pull.rs +25 -0
- act_cli-0.14.0/crates/act-store/examples/probe_push.rs +76 -0
- act_cli-0.14.0/crates/act-store/examples/probe_referrers.rs +41 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-store/src/fetch.rs +91 -169
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-store/src/lib.rs +1 -0
- act_cli-0.14.0/crates/act-store/src/registry/auth.rs +271 -0
- act_cli-0.14.0/crates/act-store/src/registry/client.rs +234 -0
- act_cli-0.14.0/crates/act-store/src/registry/mod.rs +18 -0
- act_cli-0.14.0/crates/act-store/src/registry/push.rs +225 -0
- act_cli-0.14.0/crates/act-store/src/registry/reference.rs +199 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/README.md +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/README.md +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/build.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/src/config.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/src/format.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/src/login_cmd.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/src/main.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/src/oauth/discovery.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/src/oauth/issuer.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/src/oauth/listener.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/src/oauth/pkce.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/src/oauth/refresh.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/src/oauth/refresher.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/src/oauth/registration.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/src/oauth/run.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/src/oauth/state.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/src/rmcp_bridge.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/src/secret_cmd.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/src/snapshots/act__format__tests__golden__info_json.snap +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/src/snapshots/act__format__tests__golden__info_text.snap +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/src/snapshots/act__format__tests__golden__info_toon.snap +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/act-cli/src/tty.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-credentials/Cargo.toml +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-credentials/src/backend/file.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-credentials/src/backend/mod.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-credentials/src/expiry.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-credentials/src/field.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-credentials/src/index.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-credentials/src/lib.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-credentials/src/record.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-credentials/src/store.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-credentials/tests/backend_selection.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-credentials/tests/store_roundtrip.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-mcp/README.md +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-mcp/src/lib.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-policy/Cargo.toml +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-policy/src/ceilings.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-policy/src/consent.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-policy/src/decision.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-policy/src/effective.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-policy/src/fs_matcher.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-policy/src/grant.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-policy/src/lib.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-policy/src/net.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-policy/src/provider.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-policy/src/providers/credentials.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-policy/src/providers/fs.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-policy/src/providers/generic.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-policy/src/providers/http.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-policy/src/providers/mod.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-policy/src/providers/sockets.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-policy/tests/policy_properties.proptest-regressions +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-policy/tests/policy_properties.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/README.md +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/actor.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/audit/emit.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/audit/layer.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/audit/mod.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/audit/record.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/audit/render.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/audit/snapshots/act_runtime__audit__render__tests__golden__credential_issue.snap +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/audit/snapshots/act_runtime__audit__render__tests__golden__declared_ask_blocked_warning.snap +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/audit/snapshots/act_runtime__audit__render__tests__golden__declared_ungranted_warning.snap +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/audit/snapshots/act_runtime__audit__render__tests__golden__exception_ask_denied_by_user.snap +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/audit/snapshots/act_runtime__audit__render__tests__golden__exception_static_deny.snap +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/audit/snapshots/act_runtime__audit__render__tests__golden__exception_with_an_attributed_rule.snap +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/audit/snapshots/act_runtime__audit__render__tests__golden__header.snap +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/audit/snapshots/act_runtime__audit__render__tests__golden__rollup_escapes_untrusted_text.snap +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/audit/snapshots/act_runtime__audit__render__tests__golden__rollup_with_full_args.snap +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/audit/snapshots/act_runtime__audit__render__tests__golden__rollup_with_grouped_allows.snap +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/audit/snapshots/act_runtime__audit__render__tests__golden__rollup_with_no_allows.snap +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/audit/snapshots/act_runtime__audit__render__tests__golden__rollup_with_session_and_overflow.snap +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/bindings.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/consent/channel.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/consent/gate.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/consent/mod.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/credentials.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/engine.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/fs_policy.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/http_policy.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/info.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/lib.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/resolve.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/runtime.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/sessions.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/store.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/tests.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/src/validate.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/wit/deps/act-consent-0.1.0/package.wit +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/wit/deps/act-core-0.4.0/package.wit +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/wit/deps/act-credentials-0.1.0/package.wit +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/wit/deps/act-sessions-0.2.0/package.wit +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/wit/deps/act-tools-0.2.0/package.wit +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-runtime/wit/world.wit +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-store/README.md +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-store/src/index.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-store/src/layout.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-store/src/lock.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-store/src/provenance.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-store/src/reference.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-store/src/referrer.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/crates/act-store/src/store.rs +0 -0
- {act_cli-0.13.2 → act_cli-0.14.0}/pyproject.toml +0 -0
|
@@ -4,14 +4,15 @@ version = 4
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "act-build"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.14.0"
|
|
8
8
|
dependencies = [
|
|
9
|
+
"act-store",
|
|
9
10
|
"act-types",
|
|
10
11
|
"anyhow",
|
|
11
|
-
"base64 0.
|
|
12
|
+
"base64 0.23.1",
|
|
12
13
|
"ciborium",
|
|
13
14
|
"clap",
|
|
14
|
-
"dirs",
|
|
15
|
+
"dirs 7.0.0",
|
|
15
16
|
"flate2",
|
|
16
17
|
"globset",
|
|
17
18
|
"hclient",
|
|
@@ -23,7 +24,7 @@ dependencies = [
|
|
|
23
24
|
"include_dir",
|
|
24
25
|
"json-patch",
|
|
25
26
|
"minijinja",
|
|
26
|
-
"oci-
|
|
27
|
+
"oci-spec",
|
|
27
28
|
"olpc-cjson",
|
|
28
29
|
"serde",
|
|
29
30
|
"serde_json",
|
|
@@ -31,17 +32,17 @@ dependencies = [
|
|
|
31
32
|
"tar",
|
|
32
33
|
"tempfile",
|
|
33
34
|
"tokio",
|
|
34
|
-
"toml
|
|
35
|
+
"toml",
|
|
35
36
|
"tracing",
|
|
36
37
|
"tracing-subscriber",
|
|
37
38
|
"walkdir",
|
|
38
|
-
"wasm-encoder 0.
|
|
39
|
-
"wasmparser 0.
|
|
39
|
+
"wasm-encoder 0.259.0",
|
|
40
|
+
"wasmparser 0.259.0",
|
|
40
41
|
]
|
|
41
42
|
|
|
42
43
|
[[package]]
|
|
43
44
|
name = "act-cli"
|
|
44
|
-
version = "0.
|
|
45
|
+
version = "0.14.0"
|
|
45
46
|
dependencies = [
|
|
46
47
|
"act-credentials",
|
|
47
48
|
"act-mcp",
|
|
@@ -53,15 +54,15 @@ dependencies = [
|
|
|
53
54
|
"assert_cmd",
|
|
54
55
|
"async-trait",
|
|
55
56
|
"axum",
|
|
56
|
-
"base64 0.
|
|
57
|
+
"base64 0.23.1",
|
|
57
58
|
"bytesize",
|
|
58
59
|
"ciborium",
|
|
59
60
|
"clap",
|
|
60
61
|
"clap_complete",
|
|
61
62
|
"clap_mangen",
|
|
62
|
-
"dirs",
|
|
63
|
+
"dirs 7.0.0",
|
|
63
64
|
"embed-manifest",
|
|
64
|
-
"getrandom 0.3
|
|
65
|
+
"getrandom 0.4.3",
|
|
65
66
|
"hclient",
|
|
66
67
|
"hclient-dns-system",
|
|
67
68
|
"hclient-native",
|
|
@@ -80,42 +81,42 @@ dependencies = [
|
|
|
80
81
|
"tar",
|
|
81
82
|
"tempfile",
|
|
82
83
|
"tokio",
|
|
83
|
-
"toml
|
|
84
|
+
"toml",
|
|
84
85
|
"toon-format",
|
|
85
86
|
"tracing",
|
|
86
87
|
"tracing-subscriber",
|
|
87
88
|
"url",
|
|
88
|
-
"wasmparser 0.
|
|
89
|
+
"wasmparser 0.259.0",
|
|
89
90
|
"webbrowser",
|
|
90
91
|
"windows-sys 0.61.2",
|
|
91
92
|
]
|
|
92
93
|
|
|
93
94
|
[[package]]
|
|
94
95
|
name = "act-credentials"
|
|
95
|
-
version = "0.
|
|
96
|
+
version = "0.14.0"
|
|
96
97
|
dependencies = [
|
|
97
98
|
"fs4",
|
|
98
99
|
"serde",
|
|
99
100
|
"serde_json",
|
|
100
101
|
"tempfile",
|
|
101
102
|
"thiserror 2.0.20",
|
|
102
|
-
"toml
|
|
103
|
+
"toml",
|
|
103
104
|
]
|
|
104
105
|
|
|
105
106
|
[[package]]
|
|
106
107
|
name = "act-mcp"
|
|
107
|
-
version = "0.
|
|
108
|
+
version = "0.14.0"
|
|
108
109
|
dependencies = [
|
|
109
110
|
"act-runtime",
|
|
110
111
|
"act-types",
|
|
111
|
-
"base64 0.
|
|
112
|
+
"base64 0.23.1",
|
|
112
113
|
"rmcp",
|
|
113
114
|
"serde_json",
|
|
114
115
|
]
|
|
115
116
|
|
|
116
117
|
[[package]]
|
|
117
118
|
name = "act-policy"
|
|
118
|
-
version = "0.
|
|
119
|
+
version = "0.14.0"
|
|
119
120
|
dependencies = [
|
|
120
121
|
"act-types",
|
|
121
122
|
"async-trait",
|
|
@@ -132,7 +133,7 @@ dependencies = [
|
|
|
132
133
|
|
|
133
134
|
[[package]]
|
|
134
135
|
name = "act-policy-wasm"
|
|
135
|
-
version = "0.
|
|
136
|
+
version = "0.14.0"
|
|
136
137
|
dependencies = [
|
|
137
138
|
"act-policy",
|
|
138
139
|
"futures",
|
|
@@ -143,7 +144,7 @@ dependencies = [
|
|
|
143
144
|
|
|
144
145
|
[[package]]
|
|
145
146
|
name = "act-runtime"
|
|
146
|
-
version = "0.
|
|
147
|
+
version = "0.14.0"
|
|
147
148
|
dependencies = [
|
|
148
149
|
"act-credentials",
|
|
149
150
|
"act-policy",
|
|
@@ -154,7 +155,7 @@ dependencies = [
|
|
|
154
155
|
"boon",
|
|
155
156
|
"bytes",
|
|
156
157
|
"ciborium",
|
|
157
|
-
"dirs",
|
|
158
|
+
"dirs 7.0.0",
|
|
158
159
|
"futures-util",
|
|
159
160
|
"hclient",
|
|
160
161
|
"hclient-dns",
|
|
@@ -173,10 +174,10 @@ dependencies = [
|
|
|
173
174
|
"shellexpand",
|
|
174
175
|
"tempfile",
|
|
175
176
|
"tokio",
|
|
176
|
-
"toml
|
|
177
|
+
"toml",
|
|
177
178
|
"tracing",
|
|
178
179
|
"tracing-subscriber",
|
|
179
|
-
"wasmparser 0.
|
|
180
|
+
"wasmparser 0.259.0",
|
|
180
181
|
"wasmtime",
|
|
181
182
|
"wasmtime-wasi",
|
|
182
183
|
"wasmtime-wasi-http",
|
|
@@ -184,10 +185,11 @@ dependencies = [
|
|
|
184
185
|
|
|
185
186
|
[[package]]
|
|
186
187
|
name = "act-store"
|
|
187
|
-
version = "0.
|
|
188
|
+
version = "0.14.0"
|
|
188
189
|
dependencies = [
|
|
190
|
+
"base64 0.23.1",
|
|
189
191
|
"chrono",
|
|
190
|
-
"dirs",
|
|
192
|
+
"dirs 7.0.0",
|
|
191
193
|
"flate2",
|
|
192
194
|
"fs4",
|
|
193
195
|
"futures",
|
|
@@ -196,10 +198,8 @@ dependencies = [
|
|
|
196
198
|
"hclient-native",
|
|
197
199
|
"hclient-rt-tokio",
|
|
198
200
|
"hclient-tls-rustls",
|
|
199
|
-
"oci-client",
|
|
200
201
|
"oci-spec",
|
|
201
202
|
"regex",
|
|
202
|
-
"rustls",
|
|
203
203
|
"serde_json",
|
|
204
204
|
"sha2 0.11.0",
|
|
205
205
|
"tempfile",
|
|
@@ -412,30 +412,6 @@ version = "1.5.1"
|
|
|
412
412
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
413
|
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
414
414
|
|
|
415
|
-
[[package]]
|
|
416
|
-
name = "aws-lc-rs"
|
|
417
|
-
version = "1.18.1"
|
|
418
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
-
checksum = "b281d307588d634de920874890732659e2e7672f72b5e10e81badc1a8a83621e"
|
|
420
|
-
dependencies = [
|
|
421
|
-
"aws-lc-sys",
|
|
422
|
-
"untrusted 0.7.1",
|
|
423
|
-
"zeroize",
|
|
424
|
-
]
|
|
425
|
-
|
|
426
|
-
[[package]]
|
|
427
|
-
name = "aws-lc-sys"
|
|
428
|
-
version = "0.45.0"
|
|
429
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
-
checksum = "9bff6c3b54fad79a2e60b8102caf565819711497c1f5f092f49508e2f5c31b27"
|
|
431
|
-
dependencies = [
|
|
432
|
-
"cc",
|
|
433
|
-
"cmake",
|
|
434
|
-
"dunce",
|
|
435
|
-
"fs_extra",
|
|
436
|
-
"pkg-config",
|
|
437
|
-
]
|
|
438
|
-
|
|
439
415
|
[[package]]
|
|
440
416
|
name = "axum"
|
|
441
417
|
version = "0.8.9"
|
|
@@ -642,9 +618,9 @@ dependencies = [
|
|
|
642
618
|
|
|
643
619
|
[[package]]
|
|
644
620
|
name = "cc"
|
|
645
|
-
version = "1.4.
|
|
621
|
+
version = "1.4.7"
|
|
646
622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
-
checksum = "
|
|
623
|
+
checksum = "54413ede23c2daf518f35156dfde027feb2374004d63bd497f983c8db9c0e313"
|
|
648
624
|
dependencies = [
|
|
649
625
|
"find-msvc-tools",
|
|
650
626
|
"jobserver",
|
|
@@ -682,10 +658,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
682
658
|
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
683
659
|
dependencies = [
|
|
684
660
|
"iana-time-zone",
|
|
685
|
-
"js-sys",
|
|
686
661
|
"num-traits",
|
|
687
662
|
"serde",
|
|
688
|
-
"wasm-bindgen",
|
|
689
663
|
"windows-link 0.2.1",
|
|
690
664
|
]
|
|
691
665
|
|
|
@@ -781,15 +755,6 @@ dependencies = [
|
|
|
781
755
|
"roff",
|
|
782
756
|
]
|
|
783
757
|
|
|
784
|
-
[[package]]
|
|
785
|
-
name = "cmake"
|
|
786
|
-
version = "0.1.58"
|
|
787
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
-
checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
|
|
789
|
-
dependencies = [
|
|
790
|
-
"cc",
|
|
791
|
-
]
|
|
792
|
-
|
|
793
758
|
[[package]]
|
|
794
759
|
name = "cobs"
|
|
795
760
|
version = "0.3.0"
|
|
@@ -916,27 +881,27 @@ dependencies = [
|
|
|
916
881
|
|
|
917
882
|
[[package]]
|
|
918
883
|
name = "cranelift-assembler-x64"
|
|
919
|
-
version = "0.
|
|
884
|
+
version = "0.136.0"
|
|
920
885
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
-
checksum = "
|
|
886
|
+
checksum = "d7082265252e5f49045853f3b4380bae42542215b04955c49e5dccb4724a4f33"
|
|
922
887
|
dependencies = [
|
|
923
888
|
"cranelift-assembler-x64-meta",
|
|
924
889
|
]
|
|
925
890
|
|
|
926
891
|
[[package]]
|
|
927
892
|
name = "cranelift-assembler-x64-meta"
|
|
928
|
-
version = "0.
|
|
893
|
+
version = "0.136.0"
|
|
929
894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
-
checksum = "
|
|
895
|
+
checksum = "b83da86919677adc47e456975e276b9132279a43cab3202a6183de1d62ed3e4c"
|
|
931
896
|
dependencies = [
|
|
932
897
|
"cranelift-srcgen",
|
|
933
898
|
]
|
|
934
899
|
|
|
935
900
|
[[package]]
|
|
936
901
|
name = "cranelift-bforest"
|
|
937
|
-
version = "0.
|
|
902
|
+
version = "0.136.0"
|
|
938
903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
939
|
-
checksum = "
|
|
904
|
+
checksum = "06c9b7896b744283c68051c6fa53dff5919bdca5f3ad30f2502cbe03346fc27c"
|
|
940
905
|
dependencies = [
|
|
941
906
|
"cranelift-entity",
|
|
942
907
|
"wasmtime-internal-core",
|
|
@@ -944,9 +909,9 @@ dependencies = [
|
|
|
944
909
|
|
|
945
910
|
[[package]]
|
|
946
911
|
name = "cranelift-bitset"
|
|
947
|
-
version = "0.
|
|
912
|
+
version = "0.136.0"
|
|
948
913
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
-
checksum = "
|
|
914
|
+
checksum = "2d44fd93e9b7d5d76846a5d7e96f4f31c84e7c84079bf69e2bf17e5d08f8d607"
|
|
950
915
|
dependencies = [
|
|
951
916
|
"serde",
|
|
952
917
|
"serde_derive",
|
|
@@ -955,9 +920,9 @@ dependencies = [
|
|
|
955
920
|
|
|
956
921
|
[[package]]
|
|
957
922
|
name = "cranelift-codegen"
|
|
958
|
-
version = "0.
|
|
923
|
+
version = "0.136.0"
|
|
959
924
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
-
checksum = "
|
|
925
|
+
checksum = "24cca39a8327756e489ee65c7f2ff79a6f7c8f2837f83fef046d1899c781c59d"
|
|
961
926
|
dependencies = [
|
|
962
927
|
"bumpalo",
|
|
963
928
|
"cranelift-assembler-x64",
|
|
@@ -986,9 +951,9 @@ dependencies = [
|
|
|
986
951
|
|
|
987
952
|
[[package]]
|
|
988
953
|
name = "cranelift-codegen-meta"
|
|
989
|
-
version = "0.
|
|
954
|
+
version = "0.136.0"
|
|
990
955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
-
checksum = "
|
|
956
|
+
checksum = "efc14dc232222671dc863495e6c406e8e4d34ffbc32968223e5d4ad20ea78647"
|
|
992
957
|
dependencies = [
|
|
993
958
|
"cranelift-assembler-x64-meta",
|
|
994
959
|
"cranelift-codegen-shared",
|
|
@@ -999,24 +964,24 @@ dependencies = [
|
|
|
999
964
|
|
|
1000
965
|
[[package]]
|
|
1001
966
|
name = "cranelift-codegen-shared"
|
|
1002
|
-
version = "0.
|
|
967
|
+
version = "0.136.0"
|
|
1003
968
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
-
checksum = "
|
|
969
|
+
checksum = "fc16302fa0eba1466003cb1d399521ea0a1808d6408fb5cf2f19068bd4418304"
|
|
1005
970
|
|
|
1006
971
|
[[package]]
|
|
1007
972
|
name = "cranelift-control"
|
|
1008
|
-
version = "0.
|
|
973
|
+
version = "0.136.0"
|
|
1009
974
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
-
checksum = "
|
|
975
|
+
checksum = "0f022ad1cd5356967b4baeba81dc7077a917ed2045a29552d61fecc8dbe4e113"
|
|
1011
976
|
dependencies = [
|
|
1012
977
|
"arbitrary",
|
|
1013
978
|
]
|
|
1014
979
|
|
|
1015
980
|
[[package]]
|
|
1016
981
|
name = "cranelift-entity"
|
|
1017
|
-
version = "0.
|
|
982
|
+
version = "0.136.0"
|
|
1018
983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
-
checksum = "
|
|
984
|
+
checksum = "589be6584f586f8b21fe17e68cb10505d1cb9a3aa42af1173b8024a12f3ec96d"
|
|
1020
985
|
dependencies = [
|
|
1021
986
|
"cranelift-bitset",
|
|
1022
987
|
"serde",
|
|
@@ -1026,9 +991,9 @@ dependencies = [
|
|
|
1026
991
|
|
|
1027
992
|
[[package]]
|
|
1028
993
|
name = "cranelift-frontend"
|
|
1029
|
-
version = "0.
|
|
994
|
+
version = "0.136.0"
|
|
1030
995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
|
-
checksum = "
|
|
996
|
+
checksum = "413f3f1d97d6157bd2c4e2edf1f22966a849b8d524834558e563c5a4a3bc5791"
|
|
1032
997
|
dependencies = [
|
|
1033
998
|
"cranelift-codegen",
|
|
1034
999
|
"hashbrown 0.17.1",
|
|
@@ -1039,15 +1004,15 @@ dependencies = [
|
|
|
1039
1004
|
|
|
1040
1005
|
[[package]]
|
|
1041
1006
|
name = "cranelift-isle"
|
|
1042
|
-
version = "0.
|
|
1007
|
+
version = "0.136.0"
|
|
1043
1008
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
-
checksum = "
|
|
1009
|
+
checksum = "2b46ea04636aa506eb49e5a61c54270314912de7f1c33ad7f7c2c57cb0784e23"
|
|
1045
1010
|
|
|
1046
1011
|
[[package]]
|
|
1047
1012
|
name = "cranelift-native"
|
|
1048
|
-
version = "0.
|
|
1013
|
+
version = "0.136.0"
|
|
1049
1014
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
-
checksum = "
|
|
1015
|
+
checksum = "6286df9a36f4563b1f191809a05efd6b5fb457a2e6cb727588f483ebbf8e0516"
|
|
1051
1016
|
dependencies = [
|
|
1052
1017
|
"cranelift-codegen",
|
|
1053
1018
|
"libc",
|
|
@@ -1056,9 +1021,9 @@ dependencies = [
|
|
|
1056
1021
|
|
|
1057
1022
|
[[package]]
|
|
1058
1023
|
name = "cranelift-srcgen"
|
|
1059
|
-
version = "0.
|
|
1024
|
+
version = "0.136.0"
|
|
1060
1025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
|
-
checksum = "
|
|
1026
|
+
checksum = "16e5ba65f5a4d86ffe4a65fc8f263935b1cd8710922e3ad690bff83e72a20100"
|
|
1062
1027
|
|
|
1063
1028
|
[[package]]
|
|
1064
1029
|
name = "crc32fast"
|
|
@@ -1332,6 +1297,15 @@ dependencies = [
|
|
|
1332
1297
|
"dirs-sys",
|
|
1333
1298
|
]
|
|
1334
1299
|
|
|
1300
|
+
[[package]]
|
|
1301
|
+
name = "dirs"
|
|
1302
|
+
version = "7.0.0"
|
|
1303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1304
|
+
checksum = "8d57d423b3c82e89b9a24ca3091fee61f456a26edbd28d26c65906f4bc1dcd8f"
|
|
1305
|
+
dependencies = [
|
|
1306
|
+
"dirs-sys",
|
|
1307
|
+
]
|
|
1308
|
+
|
|
1335
1309
|
[[package]]
|
|
1336
1310
|
name = "dirs-sys"
|
|
1337
1311
|
version = "0.5.0"
|
|
@@ -1398,12 +1372,6 @@ dependencies = [
|
|
|
1398
1372
|
"syn 2.0.119",
|
|
1399
1373
|
]
|
|
1400
1374
|
|
|
1401
|
-
[[package]]
|
|
1402
|
-
name = "dunce"
|
|
1403
|
-
version = "1.0.5"
|
|
1404
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1405
|
-
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
1406
|
-
|
|
1407
1375
|
[[package]]
|
|
1408
1376
|
name = "dyn-clone"
|
|
1409
1377
|
version = "1.0.20"
|
|
@@ -1489,9 +1457,9 @@ dependencies = [
|
|
|
1489
1457
|
|
|
1490
1458
|
[[package]]
|
|
1491
1459
|
name = "find-msvc-tools"
|
|
1492
|
-
version = "0.1.
|
|
1460
|
+
version = "0.1.13"
|
|
1493
1461
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1494
|
-
checksum = "
|
|
1462
|
+
checksum = "ef25905e51abafe4dcea6c15fec58c57b601cdbd0ee53d22ea1d3016c587d39b"
|
|
1495
1463
|
|
|
1496
1464
|
[[package]]
|
|
1497
1465
|
name = "fixedbitset"
|
|
@@ -1571,12 +1539,6 @@ dependencies = [
|
|
|
1571
1539
|
"windows-sys 0.61.2",
|
|
1572
1540
|
]
|
|
1573
1541
|
|
|
1574
|
-
[[package]]
|
|
1575
|
-
name = "fs_extra"
|
|
1576
|
-
version = "1.3.0"
|
|
1577
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1578
|
-
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
1579
|
-
|
|
1580
1542
|
[[package]]
|
|
1581
1543
|
name = "futures"
|
|
1582
1544
|
version = "0.3.34"
|
|
@@ -1696,10 +1658,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1696
1658
|
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
1697
1659
|
dependencies = [
|
|
1698
1660
|
"cfg-if",
|
|
1699
|
-
"js-sys",
|
|
1700
1661
|
"libc",
|
|
1701
1662
|
"wasi",
|
|
1702
|
-
"wasm-bindgen",
|
|
1703
1663
|
]
|
|
1704
1664
|
|
|
1705
1665
|
[[package]]
|
|
@@ -1819,9 +1779,9 @@ dependencies = [
|
|
|
1819
1779
|
|
|
1820
1780
|
[[package]]
|
|
1821
1781
|
name = "hclient"
|
|
1822
|
-
version = "0.1.0-alpha.
|
|
1782
|
+
version = "0.1.0-alpha.14"
|
|
1823
1783
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1824
|
-
checksum = "
|
|
1784
|
+
checksum = "370a930764aed9a4c116b044be67af8997beef3a38d0c54371ef056fb5f6178e"
|
|
1825
1785
|
dependencies = [
|
|
1826
1786
|
"brotli-decompressor",
|
|
1827
1787
|
"bytes",
|
|
@@ -1861,9 +1821,9 @@ dependencies = [
|
|
|
1861
1821
|
|
|
1862
1822
|
[[package]]
|
|
1863
1823
|
name = "hclient-dns"
|
|
1864
|
-
version = "0.1.0
|
|
1824
|
+
version = "0.1.0"
|
|
1865
1825
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1866
|
-
checksum = "
|
|
1826
|
+
checksum = "4a24ea14863d0366c49de7a986cd45ceb39898eaf832ddf1a2a6ff24198be2d9"
|
|
1867
1827
|
dependencies = [
|
|
1868
1828
|
"bytes",
|
|
1869
1829
|
"futures-core",
|
|
@@ -1873,9 +1833,9 @@ dependencies = [
|
|
|
1873
1833
|
|
|
1874
1834
|
[[package]]
|
|
1875
1835
|
name = "hclient-dns-system"
|
|
1876
|
-
version = "0.1.0-alpha.
|
|
1836
|
+
version = "0.1.0-alpha.13"
|
|
1877
1837
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1878
|
-
checksum = "
|
|
1838
|
+
checksum = "87377d0af503b950ed16c7dcfa123626dfdca3c6cd7b7db34b9d54f8716f3464"
|
|
1879
1839
|
dependencies = [
|
|
1880
1840
|
"domain",
|
|
1881
1841
|
"futures-core",
|
|
@@ -1890,9 +1850,9 @@ dependencies = [
|
|
|
1890
1850
|
|
|
1891
1851
|
[[package]]
|
|
1892
1852
|
name = "hclient-fetch"
|
|
1893
|
-
version = "0.1.0-alpha.
|
|
1853
|
+
version = "0.1.0-alpha.12"
|
|
1894
1854
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1895
|
-
checksum = "
|
|
1855
|
+
checksum = "68c7299724f4ed799f4df1c903ddb81ff3c1e9db99e3ddbc6c7ae9f0b85ee996"
|
|
1896
1856
|
dependencies = [
|
|
1897
1857
|
"bytes",
|
|
1898
1858
|
"futures-channel",
|
|
@@ -1906,15 +1866,15 @@ dependencies = [
|
|
|
1906
1866
|
"thiserror 2.0.20",
|
|
1907
1867
|
"wasm-bindgen",
|
|
1908
1868
|
"wasm-bindgen-futures",
|
|
1909
|
-
"wasm-streams
|
|
1869
|
+
"wasm-streams",
|
|
1910
1870
|
"web-sys",
|
|
1911
1871
|
]
|
|
1912
1872
|
|
|
1913
1873
|
[[package]]
|
|
1914
1874
|
name = "hclient-native"
|
|
1915
|
-
version = "0.1.0-alpha.
|
|
1875
|
+
version = "0.1.0-alpha.14"
|
|
1916
1876
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1917
|
-
checksum = "
|
|
1877
|
+
checksum = "395bbf72a296b70d33be812dcf141b9c6eb601706c33d01862bff16f0e76e807"
|
|
1918
1878
|
dependencies = [
|
|
1919
1879
|
"bytes",
|
|
1920
1880
|
"futures-core",
|
|
@@ -1936,7 +1896,7 @@ dependencies = [
|
|
|
1936
1896
|
"tokio",
|
|
1937
1897
|
"tracing",
|
|
1938
1898
|
"web-time",
|
|
1939
|
-
"winnow
|
|
1899
|
+
"winnow",
|
|
1940
1900
|
]
|
|
1941
1901
|
|
|
1942
1902
|
[[package]]
|
|
@@ -1951,14 +1911,14 @@ dependencies = [
|
|
|
1951
1911
|
"http",
|
|
1952
1912
|
"percent-encoding",
|
|
1953
1913
|
"thiserror 2.0.20",
|
|
1954
|
-
"winnow
|
|
1914
|
+
"winnow",
|
|
1955
1915
|
]
|
|
1956
1916
|
|
|
1957
1917
|
[[package]]
|
|
1958
1918
|
name = "hclient-proxy"
|
|
1959
|
-
version = "0.1.0-alpha.
|
|
1919
|
+
version = "0.1.0-alpha.12"
|
|
1960
1920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1961
|
-
checksum = "
|
|
1921
|
+
checksum = "46ca890064942f362653ca5a3753f752a6e227eae509bbf4ebbf3f7873c94e92"
|
|
1962
1922
|
dependencies = [
|
|
1963
1923
|
"bytes",
|
|
1964
1924
|
"hclient-core",
|
|
@@ -1983,9 +1943,9 @@ dependencies = [
|
|
|
1983
1943
|
|
|
1984
1944
|
[[package]]
|
|
1985
1945
|
name = "hclient-rt-tokio"
|
|
1986
|
-
version = "0.1.0-alpha.
|
|
1946
|
+
version = "0.1.0-alpha.12"
|
|
1987
1947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1988
|
-
checksum = "
|
|
1948
|
+
checksum = "7b527f2125f610e5540368a9addf07bc86f3e4071646e92de99a2352c8f9f9fa"
|
|
1989
1949
|
dependencies = [
|
|
1990
1950
|
"futures-core",
|
|
1991
1951
|
"hclient-rt",
|
|
@@ -2049,15 +2009,6 @@ dependencies = [
|
|
|
2049
2009
|
"itoa",
|
|
2050
2010
|
]
|
|
2051
2011
|
|
|
2052
|
-
[[package]]
|
|
2053
|
-
name = "http-auth"
|
|
2054
|
-
version = "0.1.10"
|
|
2055
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2056
|
-
checksum = "150fa4a9462ef926824cf4519c84ed652ca8f4fbae34cb8af045b5cbcaf98822"
|
|
2057
|
-
dependencies = [
|
|
2058
|
-
"memchr",
|
|
2059
|
-
]
|
|
2060
|
-
|
|
2061
2012
|
[[package]]
|
|
2062
2013
|
name = "http-body"
|
|
2063
2014
|
version = "1.1.0"
|
|
@@ -2124,42 +2075,19 @@ dependencies = [
|
|
|
2124
2075
|
"want",
|
|
2125
2076
|
]
|
|
2126
2077
|
|
|
2127
|
-
[[package]]
|
|
2128
|
-
name = "hyper-rustls"
|
|
2129
|
-
version = "0.27.9"
|
|
2130
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2131
|
-
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
2132
|
-
dependencies = [
|
|
2133
|
-
"http",
|
|
2134
|
-
"hyper",
|
|
2135
|
-
"hyper-util",
|
|
2136
|
-
"rustls",
|
|
2137
|
-
"tokio",
|
|
2138
|
-
"tokio-rustls",
|
|
2139
|
-
"tower-service",
|
|
2140
|
-
]
|
|
2141
|
-
|
|
2142
2078
|
[[package]]
|
|
2143
2079
|
name = "hyper-util"
|
|
2144
2080
|
version = "0.1.20"
|
|
2145
2081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2146
2082
|
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
2147
2083
|
dependencies = [
|
|
2148
|
-
"base64 0.22.1",
|
|
2149
2084
|
"bytes",
|
|
2150
|
-
"futures-channel",
|
|
2151
|
-
"futures-util",
|
|
2152
2085
|
"http",
|
|
2153
2086
|
"http-body",
|
|
2154
2087
|
"hyper",
|
|
2155
|
-
"ipnet",
|
|
2156
|
-
"libc",
|
|
2157
|
-
"percent-encoding",
|
|
2158
2088
|
"pin-project-lite",
|
|
2159
|
-
"socket2",
|
|
2160
2089
|
"tokio",
|
|
2161
2090
|
"tower-service",
|
|
2162
|
-
"tracing",
|
|
2163
2091
|
]
|
|
2164
2092
|
|
|
2165
2093
|
[[package]]
|
|
@@ -2588,22 +2516,6 @@ dependencies = [
|
|
|
2588
2516
|
"serde_json",
|
|
2589
2517
|
]
|
|
2590
2518
|
|
|
2591
|
-
[[package]]
|
|
2592
|
-
name = "jsonwebtoken"
|
|
2593
|
-
version = "10.4.0"
|
|
2594
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2595
|
-
checksum = "eba32bfb4ffdeaca3e34431072faf01745c9b26d25504aa7a6cf5684334fc4fc"
|
|
2596
|
-
dependencies = [
|
|
2597
|
-
"aws-lc-rs",
|
|
2598
|
-
"base64 0.22.1",
|
|
2599
|
-
"getrandom 0.2.17",
|
|
2600
|
-
"js-sys",
|
|
2601
|
-
"serde",
|
|
2602
|
-
"serde_json",
|
|
2603
|
-
"signature",
|
|
2604
|
-
"zeroize",
|
|
2605
|
-
]
|
|
2606
|
-
|
|
2607
2519
|
[[package]]
|
|
2608
2520
|
name = "konst"
|
|
2609
2521
|
version = "0.2.20"
|
|
@@ -2645,9 +2557,9 @@ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
|
2645
2557
|
|
|
2646
2558
|
[[package]]
|
|
2647
2559
|
name = "libredox"
|
|
2648
|
-
version = "0.1.
|
|
2560
|
+
version = "0.1.25"
|
|
2649
2561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2650
|
-
checksum = "
|
|
2562
|
+
checksum = "61ff90caf6077a803a240f62fdbe88645a890bbca49ef8174c3cb0404362171d"
|
|
2651
2563
|
dependencies = [
|
|
2652
2564
|
"libc",
|
|
2653
2565
|
]
|
|
@@ -2679,12 +2591,6 @@ version = "0.4.34"
|
|
|
2679
2591
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2680
2592
|
checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
|
|
2681
2593
|
|
|
2682
|
-
[[package]]
|
|
2683
|
-
name = "lru-slab"
|
|
2684
|
-
version = "0.1.3"
|
|
2685
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2686
|
-
checksum = "4050469837a6ff301cd14c1f8f24f88549e6d548f24f64e2148eb0f72cebc51f"
|
|
2687
|
-
|
|
2688
2594
|
[[package]]
|
|
2689
2595
|
name = "mach2"
|
|
2690
2596
|
version = "0.6.0"
|
|
@@ -2905,9 +2811,9 @@ dependencies = [
|
|
|
2905
2811
|
|
|
2906
2812
|
[[package]]
|
|
2907
2813
|
name = "object"
|
|
2908
|
-
version = "0.
|
|
2814
|
+
version = "0.40.0"
|
|
2909
2815
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2910
|
-
checksum = "
|
|
2816
|
+
checksum = "dd229a0361b9d0d4396176e02d65897f487eebeab7caa6d443855ee152ca0b9c"
|
|
2911
2817
|
dependencies = [
|
|
2912
2818
|
"crc32fast",
|
|
2913
2819
|
"hashbrown 0.17.1",
|
|
@@ -2915,38 +2821,11 @@ dependencies = [
|
|
|
2915
2821
|
"memchr",
|
|
2916
2822
|
]
|
|
2917
2823
|
|
|
2918
|
-
[[package]]
|
|
2919
|
-
name = "oci-client"
|
|
2920
|
-
version = "0.17.0"
|
|
2921
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2922
|
-
checksum = "5261a7fb43d9c53b8e63e6d5e86860719dad253d015d022066c72d585125aed8"
|
|
2923
|
-
dependencies = [
|
|
2924
|
-
"bytes",
|
|
2925
|
-
"chrono",
|
|
2926
|
-
"futures-util",
|
|
2927
|
-
"hex",
|
|
2928
|
-
"http",
|
|
2929
|
-
"http-auth",
|
|
2930
|
-
"jsonwebtoken",
|
|
2931
|
-
"lazy_static",
|
|
2932
|
-
"oci-spec",
|
|
2933
|
-
"olpc-cjson",
|
|
2934
|
-
"regex",
|
|
2935
|
-
"reqwest",
|
|
2936
|
-
"serde",
|
|
2937
|
-
"serde_json",
|
|
2938
|
-
"sha2 0.11.0",
|
|
2939
|
-
"thiserror 2.0.20",
|
|
2940
|
-
"tokio",
|
|
2941
|
-
"tracing",
|
|
2942
|
-
"unicase",
|
|
2943
|
-
]
|
|
2944
|
-
|
|
2945
2824
|
[[package]]
|
|
2946
2825
|
name = "oci-spec"
|
|
2947
|
-
version = "0.
|
|
2826
|
+
version = "0.10.0"
|
|
2948
2827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2949
|
-
checksum = "
|
|
2828
|
+
checksum = "3df6f876ad774d6a676f7e968f5c3edacc32f90e65fe680a8b686235396556fb"
|
|
2950
2829
|
dependencies = [
|
|
2951
2830
|
"const_format",
|
|
2952
2831
|
"derive_builder",
|
|
@@ -3198,9 +3077,9 @@ dependencies = [
|
|
|
3198
3077
|
|
|
3199
3078
|
[[package]]
|
|
3200
3079
|
name = "pulley-interpreter"
|
|
3201
|
-
version = "
|
|
3080
|
+
version = "49.0.0"
|
|
3202
3081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3203
|
-
checksum = "
|
|
3082
|
+
checksum = "21c6285a6d0e71302c567546cb1e4c39dd8477a2a0910e098f4d30cdb7da907f"
|
|
3204
3083
|
dependencies = [
|
|
3205
3084
|
"cranelift-bitset",
|
|
3206
3085
|
"log",
|
|
@@ -3210,9 +3089,9 @@ dependencies = [
|
|
|
3210
3089
|
|
|
3211
3090
|
[[package]]
|
|
3212
3091
|
name = "pulley-macros"
|
|
3213
|
-
version = "
|
|
3092
|
+
version = "49.0.0"
|
|
3214
3093
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3215
|
-
checksum = "
|
|
3094
|
+
checksum = "292caa820c675e563d62b2cfb3fbe78908bcf7603096b5487272860db3e5d9ef"
|
|
3216
3095
|
dependencies = [
|
|
3217
3096
|
"proc-macro2",
|
|
3218
3097
|
"quote",
|
|
@@ -3225,63 +3104,6 @@ version = "1.2.3"
|
|
|
3225
3104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3226
3105
|
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
3227
3106
|
|
|
3228
|
-
[[package]]
|
|
3229
|
-
name = "quinn"
|
|
3230
|
-
version = "0.11.12"
|
|
3231
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3232
|
-
checksum = "4051e23e9185c255a7e33ef59cdbca87a22d359052eecd22fc6b901fb37d9d11"
|
|
3233
|
-
dependencies = [
|
|
3234
|
-
"bytes",
|
|
3235
|
-
"cfg_aliases",
|
|
3236
|
-
"pin-project-lite",
|
|
3237
|
-
"quinn-proto",
|
|
3238
|
-
"quinn-udp",
|
|
3239
|
-
"rustc-hash",
|
|
3240
|
-
"rustls",
|
|
3241
|
-
"socket2",
|
|
3242
|
-
"thiserror 2.0.20",
|
|
3243
|
-
"tokio",
|
|
3244
|
-
"tracing",
|
|
3245
|
-
"web-time",
|
|
3246
|
-
]
|
|
3247
|
-
|
|
3248
|
-
[[package]]
|
|
3249
|
-
name = "quinn-proto"
|
|
3250
|
-
version = "0.11.18"
|
|
3251
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3252
|
-
checksum = "a9746dbde176634f4f2f1faf2404e30a31b2bc1e9cafb5329c95d8177a18c9fc"
|
|
3253
|
-
dependencies = [
|
|
3254
|
-
"aws-lc-rs",
|
|
3255
|
-
"bytes",
|
|
3256
|
-
"getrandom 0.4.3",
|
|
3257
|
-
"lru-slab",
|
|
3258
|
-
"rand 0.10.2",
|
|
3259
|
-
"rand_pcg",
|
|
3260
|
-
"ring",
|
|
3261
|
-
"rustc-hash",
|
|
3262
|
-
"rustls",
|
|
3263
|
-
"rustls-pki-types",
|
|
3264
|
-
"slab",
|
|
3265
|
-
"thiserror 2.0.20",
|
|
3266
|
-
"tinyvec",
|
|
3267
|
-
"tracing",
|
|
3268
|
-
"web-time",
|
|
3269
|
-
]
|
|
3270
|
-
|
|
3271
|
-
[[package]]
|
|
3272
|
-
name = "quinn-udp"
|
|
3273
|
-
version = "0.5.15"
|
|
3274
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3275
|
-
checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
|
|
3276
|
-
dependencies = [
|
|
3277
|
-
"cfg_aliases",
|
|
3278
|
-
"libc",
|
|
3279
|
-
"once_cell",
|
|
3280
|
-
"socket2",
|
|
3281
|
-
"tracing",
|
|
3282
|
-
"windows-sys 0.61.2",
|
|
3283
|
-
]
|
|
3284
|
-
|
|
3285
3107
|
[[package]]
|
|
3286
3108
|
name = "quote"
|
|
3287
3109
|
version = "1.0.47"
|
|
@@ -3315,9 +3137,9 @@ dependencies = [
|
|
|
3315
3137
|
|
|
3316
3138
|
[[package]]
|
|
3317
3139
|
name = "rand"
|
|
3318
|
-
version = "0.10.
|
|
3140
|
+
version = "0.10.3"
|
|
3319
3141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3320
|
-
checksum = "
|
|
3142
|
+
checksum = "65c9fb96cbc91e3478eaae79a69fcd3f1ae4ad052e471fe6732fff548984b4af"
|
|
3321
3143
|
dependencies = [
|
|
3322
3144
|
"chacha20",
|
|
3323
3145
|
"getrandom 0.4.3",
|
|
@@ -3334,15 +3156,6 @@ dependencies = [
|
|
|
3334
3156
|
"rand_core 0.9.5",
|
|
3335
3157
|
]
|
|
3336
3158
|
|
|
3337
|
-
[[package]]
|
|
3338
|
-
name = "rand_core"
|
|
3339
|
-
version = "0.6.4"
|
|
3340
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3341
|
-
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
3342
|
-
dependencies = [
|
|
3343
|
-
"getrandom 0.2.17",
|
|
3344
|
-
]
|
|
3345
|
-
|
|
3346
3159
|
[[package]]
|
|
3347
3160
|
name = "rand_core"
|
|
3348
3161
|
version = "0.9.5"
|
|
@@ -3358,15 +3171,6 @@ version = "0.10.1"
|
|
|
3358
3171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3359
3172
|
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
3360
3173
|
|
|
3361
|
-
[[package]]
|
|
3362
|
-
name = "rand_pcg"
|
|
3363
|
-
version = "0.10.2"
|
|
3364
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3365
|
-
checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
|
|
3366
|
-
dependencies = [
|
|
3367
|
-
"rand_core 0.10.1",
|
|
3368
|
-
]
|
|
3369
|
-
|
|
3370
3174
|
[[package]]
|
|
3371
3175
|
name = "rand_xorshift"
|
|
3372
3176
|
version = "0.4.0"
|
|
@@ -3490,47 +3294,6 @@ version = "0.8.11"
|
|
|
3490
3294
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3491
3295
|
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
3492
3296
|
|
|
3493
|
-
[[package]]
|
|
3494
|
-
name = "reqwest"
|
|
3495
|
-
version = "0.13.5"
|
|
3496
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3497
|
-
checksum = "16a1cfa75cc186dd73d5818e510e042e40927bccc9c236b061cea97e1eb08029"
|
|
3498
|
-
dependencies = [
|
|
3499
|
-
"base64 0.23.1",
|
|
3500
|
-
"bytes",
|
|
3501
|
-
"futures-core",
|
|
3502
|
-
"futures-util",
|
|
3503
|
-
"http",
|
|
3504
|
-
"http-body",
|
|
3505
|
-
"http-body-util",
|
|
3506
|
-
"hyper",
|
|
3507
|
-
"hyper-rustls",
|
|
3508
|
-
"hyper-util",
|
|
3509
|
-
"js-sys",
|
|
3510
|
-
"log",
|
|
3511
|
-
"percent-encoding",
|
|
3512
|
-
"pin-project-lite",
|
|
3513
|
-
"quinn",
|
|
3514
|
-
"rustls",
|
|
3515
|
-
"rustls-pki-types",
|
|
3516
|
-
"rustls-platform-verifier",
|
|
3517
|
-
"serde",
|
|
3518
|
-
"serde_json",
|
|
3519
|
-
"serde_urlencoded",
|
|
3520
|
-
"sync_wrapper",
|
|
3521
|
-
"tokio",
|
|
3522
|
-
"tokio-rustls",
|
|
3523
|
-
"tokio-util",
|
|
3524
|
-
"tower",
|
|
3525
|
-
"tower-http",
|
|
3526
|
-
"tower-service",
|
|
3527
|
-
"url",
|
|
3528
|
-
"wasm-bindgen",
|
|
3529
|
-
"wasm-bindgen-futures",
|
|
3530
|
-
"wasm-streams 0.5.0",
|
|
3531
|
-
"web-sys",
|
|
3532
|
-
]
|
|
3533
|
-
|
|
3534
3297
|
[[package]]
|
|
3535
3298
|
name = "ring"
|
|
3536
3299
|
version = "0.17.14"
|
|
@@ -3541,7 +3304,7 @@ dependencies = [
|
|
|
3541
3304
|
"cfg-if",
|
|
3542
3305
|
"getrandom 0.2.17",
|
|
3543
3306
|
"libc",
|
|
3544
|
-
"untrusted
|
|
3307
|
+
"untrusted",
|
|
3545
3308
|
"windows-sys 0.52.0",
|
|
3546
3309
|
]
|
|
3547
3310
|
|
|
@@ -3563,7 +3326,7 @@ dependencies = [
|
|
|
3563
3326
|
"pastey",
|
|
3564
3327
|
"pin-project-lite",
|
|
3565
3328
|
"process-wrap",
|
|
3566
|
-
"rand 0.10.
|
|
3329
|
+
"rand 0.10.3",
|
|
3567
3330
|
"rmcp-macros",
|
|
3568
3331
|
"schemars 1.2.2",
|
|
3569
3332
|
"serde",
|
|
@@ -3648,7 +3411,6 @@ version = "0.23.45"
|
|
|
3648
3411
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3649
3412
|
checksum = "0d41d731c7d2f962d1ccc364cec258de3c0e93b38c2fb3ba97ac74513048d634"
|
|
3650
3413
|
dependencies = [
|
|
3651
|
-
"aws-lc-rs",
|
|
3652
3414
|
"once_cell",
|
|
3653
3415
|
"ring",
|
|
3654
3416
|
"rustls-pki-types",
|
|
@@ -3675,7 +3437,6 @@ version = "1.15.1"
|
|
|
3675
3437
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3676
3438
|
checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
|
|
3677
3439
|
dependencies = [
|
|
3678
|
-
"web-time",
|
|
3679
3440
|
"zeroize",
|
|
3680
3441
|
]
|
|
3681
3442
|
|
|
@@ -3712,10 +3473,9 @@ version = "0.103.15"
|
|
|
3712
3473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3713
3474
|
checksum = "f3c3cf1d8b1e7d4927e2d154c3fcb02979afb9939629c62cd9048d4f07b60ac2"
|
|
3714
3475
|
dependencies = [
|
|
3715
|
-
"aws-lc-rs",
|
|
3716
3476
|
"ring",
|
|
3717
3477
|
"rustls-pki-types",
|
|
3718
|
-
"untrusted
|
|
3478
|
+
"untrusted",
|
|
3719
3479
|
]
|
|
3720
3480
|
|
|
3721
3481
|
[[package]]
|
|
@@ -4003,7 +3763,7 @@ version = "3.1.2"
|
|
|
4003
3763
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4004
3764
|
checksum = "32824fab5e16e6c4d86dc1ba84489390419a39f97699852b66480bb87d297ed8"
|
|
4005
3765
|
dependencies = [
|
|
4006
|
-
"dirs",
|
|
3766
|
+
"dirs 6.0.0",
|
|
4007
3767
|
]
|
|
4008
3768
|
|
|
4009
3769
|
[[package]]
|
|
@@ -4022,15 +3782,6 @@ dependencies = [
|
|
|
4022
3782
|
"libc",
|
|
4023
3783
|
]
|
|
4024
3784
|
|
|
4025
|
-
[[package]]
|
|
4026
|
-
name = "signature"
|
|
4027
|
-
version = "2.2.0"
|
|
4028
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4029
|
-
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
4030
|
-
dependencies = [
|
|
4031
|
-
"rand_core 0.6.4",
|
|
4032
|
-
]
|
|
4033
|
-
|
|
4034
3785
|
[[package]]
|
|
4035
3786
|
name = "simd-adler32"
|
|
4036
3787
|
version = "0.3.10"
|
|
@@ -4179,9 +3930,6 @@ name = "sync_wrapper"
|
|
|
4179
3930
|
version = "1.0.2"
|
|
4180
3931
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4181
3932
|
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
4182
|
-
dependencies = [
|
|
4183
|
-
"futures-core",
|
|
4184
|
-
]
|
|
4185
3933
|
|
|
4186
3934
|
[[package]]
|
|
4187
3935
|
name = "synstructure"
|
|
@@ -4373,16 +4121,6 @@ dependencies = [
|
|
|
4373
4121
|
"syn 3.0.6",
|
|
4374
4122
|
]
|
|
4375
4123
|
|
|
4376
|
-
[[package]]
|
|
4377
|
-
name = "tokio-rustls"
|
|
4378
|
-
version = "0.26.5"
|
|
4379
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4380
|
-
checksum = "b0c85f2c3ef0b1cd58b36682f4b17aaa995f0e5db534d85692b4903abce21f67"
|
|
4381
|
-
dependencies = [
|
|
4382
|
-
"rustls",
|
|
4383
|
-
"tokio",
|
|
4384
|
-
]
|
|
4385
|
-
|
|
4386
4124
|
[[package]]
|
|
4387
4125
|
name = "tokio-stream"
|
|
4388
4126
|
version = "0.1.19"
|
|
@@ -4408,21 +4146,6 @@ dependencies = [
|
|
|
4408
4146
|
"tokio",
|
|
4409
4147
|
]
|
|
4410
4148
|
|
|
4411
|
-
[[package]]
|
|
4412
|
-
name = "toml"
|
|
4413
|
-
version = "0.9.12+spec-1.1.0"
|
|
4414
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4415
|
-
checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
|
|
4416
|
-
dependencies = [
|
|
4417
|
-
"indexmap 2.14.2",
|
|
4418
|
-
"serde_core",
|
|
4419
|
-
"serde_spanned",
|
|
4420
|
-
"toml_datetime 0.7.5+spec-1.1.0",
|
|
4421
|
-
"toml_parser",
|
|
4422
|
-
"toml_writer",
|
|
4423
|
-
"winnow 0.7.15",
|
|
4424
|
-
]
|
|
4425
|
-
|
|
4426
4149
|
[[package]]
|
|
4427
4150
|
name = "toml"
|
|
4428
4151
|
version = "1.1.6+spec-1.1.0"
|
|
@@ -4432,19 +4155,10 @@ dependencies = [
|
|
|
4432
4155
|
"indexmap 2.14.2",
|
|
4433
4156
|
"serde_core",
|
|
4434
4157
|
"serde_spanned",
|
|
4435
|
-
"toml_datetime
|
|
4158
|
+
"toml_datetime",
|
|
4436
4159
|
"toml_parser",
|
|
4437
4160
|
"toml_writer",
|
|
4438
|
-
"winnow
|
|
4439
|
-
]
|
|
4440
|
-
|
|
4441
|
-
[[package]]
|
|
4442
|
-
name = "toml_datetime"
|
|
4443
|
-
version = "0.7.5+spec-1.1.0"
|
|
4444
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4445
|
-
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
4446
|
-
dependencies = [
|
|
4447
|
-
"serde_core",
|
|
4161
|
+
"winnow",
|
|
4448
4162
|
]
|
|
4449
4163
|
|
|
4450
4164
|
[[package]]
|
|
@@ -4462,7 +4176,7 @@ version = "1.1.3+spec-1.1.0"
|
|
|
4462
4176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4463
4177
|
checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
|
|
4464
4178
|
dependencies = [
|
|
4465
|
-
"winnow
|
|
4179
|
+
"winnow",
|
|
4466
4180
|
]
|
|
4467
4181
|
|
|
4468
4182
|
[[package]]
|
|
@@ -4499,24 +4213,6 @@ dependencies = [
|
|
|
4499
4213
|
"tracing",
|
|
4500
4214
|
]
|
|
4501
4215
|
|
|
4502
|
-
[[package]]
|
|
4503
|
-
name = "tower-http"
|
|
4504
|
-
version = "0.6.11"
|
|
4505
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4506
|
-
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
4507
|
-
dependencies = [
|
|
4508
|
-
"bitflags 2.13.2",
|
|
4509
|
-
"bytes",
|
|
4510
|
-
"futures-util",
|
|
4511
|
-
"http",
|
|
4512
|
-
"http-body",
|
|
4513
|
-
"pin-project-lite",
|
|
4514
|
-
"tower",
|
|
4515
|
-
"tower-layer",
|
|
4516
|
-
"tower-service",
|
|
4517
|
-
"url",
|
|
4518
|
-
]
|
|
4519
|
-
|
|
4520
4216
|
[[package]]
|
|
4521
4217
|
name = "tower-layer"
|
|
4522
4218
|
version = "0.3.3"
|
|
@@ -4615,17 +4311,11 @@ version = "0.1.4"
|
|
|
4615
4311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4616
4312
|
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
4617
4313
|
|
|
4618
|
-
[[package]]
|
|
4619
|
-
name = "unicase"
|
|
4620
|
-
version = "2.9.0"
|
|
4621
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4622
|
-
checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
|
|
4623
|
-
|
|
4624
4314
|
[[package]]
|
|
4625
4315
|
name = "unicode-ident"
|
|
4626
|
-
version = "1.0.
|
|
4316
|
+
version = "1.0.26"
|
|
4627
4317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4628
|
-
checksum = "
|
|
4318
|
+
checksum = "d245f478577f809a851594d02313b640fb437e0bb33866753cff937863096954"
|
|
4629
4319
|
|
|
4630
4320
|
[[package]]
|
|
4631
4321
|
name = "unicode-normalization"
|
|
@@ -4648,12 +4338,6 @@ version = "0.2.6"
|
|
|
4648
4338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4649
4339
|
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
4650
4340
|
|
|
4651
|
-
[[package]]
|
|
4652
|
-
name = "untrusted"
|
|
4653
|
-
version = "0.7.1"
|
|
4654
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4655
|
-
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
|
|
4656
|
-
|
|
4657
4341
|
[[package]]
|
|
4658
4342
|
name = "untrusted"
|
|
4659
4343
|
version = "0.9.0"
|
|
@@ -4807,9 +4491,9 @@ dependencies = [
|
|
|
4807
4491
|
|
|
4808
4492
|
[[package]]
|
|
4809
4493
|
name = "wasm-compose"
|
|
4810
|
-
version = "0.
|
|
4494
|
+
version = "0.258.0"
|
|
4811
4495
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4812
|
-
checksum = "
|
|
4496
|
+
checksum = "7dd08e5283f98238f2f16f5f978188a33af9901b81186bb549faad306a7b5388"
|
|
4813
4497
|
dependencies = [
|
|
4814
4498
|
"anyhow",
|
|
4815
4499
|
"heck",
|
|
@@ -4817,29 +4501,19 @@ dependencies = [
|
|
|
4817
4501
|
"log",
|
|
4818
4502
|
"petgraph",
|
|
4819
4503
|
"smallvec",
|
|
4820
|
-
"wasm-encoder 0.
|
|
4821
|
-
"wasmparser 0.
|
|
4504
|
+
"wasm-encoder 0.258.0",
|
|
4505
|
+
"wasmparser 0.258.0",
|
|
4822
4506
|
"wat",
|
|
4823
4507
|
]
|
|
4824
4508
|
|
|
4825
4509
|
[[package]]
|
|
4826
4510
|
name = "wasm-encoder"
|
|
4827
|
-
version = "0.
|
|
4828
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4829
|
-
checksum = "8185ae345fa5687c054626ff9a50e7089797a343d9904d1dc9820eb4c4d3196f"
|
|
4830
|
-
dependencies = [
|
|
4831
|
-
"leb128fmt",
|
|
4832
|
-
"wasmparser 0.252.0",
|
|
4833
|
-
]
|
|
4834
|
-
|
|
4835
|
-
[[package]]
|
|
4836
|
-
name = "wasm-encoder"
|
|
4837
|
-
version = "0.254.0"
|
|
4511
|
+
version = "0.258.0"
|
|
4838
4512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4839
|
-
checksum = "
|
|
4513
|
+
checksum = "e974fe6821a8cf64575d51ea2194e2c8f77e7b66e9afe7419ce8a97f9ee0d251"
|
|
4840
4514
|
dependencies = [
|
|
4841
4515
|
"leb128fmt",
|
|
4842
|
-
"wasmparser 0.
|
|
4516
|
+
"wasmparser 0.258.0",
|
|
4843
4517
|
]
|
|
4844
4518
|
|
|
4845
4519
|
[[package]]
|
|
@@ -4854,34 +4528,21 @@ dependencies = [
|
|
|
4854
4528
|
|
|
4855
4529
|
[[package]]
|
|
4856
4530
|
name = "wasm-metadata"
|
|
4857
|
-
version = "0.
|
|
4531
|
+
version = "0.258.0"
|
|
4858
4532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4859
|
-
checksum = "
|
|
4533
|
+
checksum = "18a11585adb92fe9b55ad1d760e8d8fb5d87e0d2e303cb8eed57f078d54293a2"
|
|
4860
4534
|
dependencies = [
|
|
4861
4535
|
"anyhow",
|
|
4862
4536
|
"indexmap 2.14.2",
|
|
4863
|
-
"wasm-encoder 0.
|
|
4864
|
-
"wasmparser 0.
|
|
4537
|
+
"wasm-encoder 0.258.0",
|
|
4538
|
+
"wasmparser 0.258.0",
|
|
4865
4539
|
]
|
|
4866
4540
|
|
|
4867
4541
|
[[package]]
|
|
4868
4542
|
name = "wasm-streams"
|
|
4869
|
-
version = "0.
|
|
4870
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4871
|
-
checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
|
|
4872
|
-
dependencies = [
|
|
4873
|
-
"futures-util",
|
|
4874
|
-
"js-sys",
|
|
4875
|
-
"wasm-bindgen",
|
|
4876
|
-
"wasm-bindgen-futures",
|
|
4877
|
-
"web-sys",
|
|
4878
|
-
]
|
|
4879
|
-
|
|
4880
|
-
[[package]]
|
|
4881
|
-
name = "wasm-streams"
|
|
4882
|
-
version = "0.6.0"
|
|
4543
|
+
version = "0.7.0"
|
|
4883
4544
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4884
|
-
checksum = "
|
|
4545
|
+
checksum = "94ce9bdac782bbca70d6ac48a3ba18b873c848a706d6dc3bd9a03c1b96f04693"
|
|
4885
4546
|
dependencies = [
|
|
4886
4547
|
"futures-util",
|
|
4887
4548
|
"js-sys",
|
|
@@ -4892,22 +4553,9 @@ dependencies = [
|
|
|
4892
4553
|
|
|
4893
4554
|
[[package]]
|
|
4894
4555
|
name = "wasmparser"
|
|
4895
|
-
version = "0.
|
|
4556
|
+
version = "0.258.0"
|
|
4896
4557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4897
|
-
checksum = "
|
|
4898
|
-
dependencies = [
|
|
4899
|
-
"bitflags 2.13.2",
|
|
4900
|
-
"hashbrown 0.17.1",
|
|
4901
|
-
"indexmap 2.14.2",
|
|
4902
|
-
"semver",
|
|
4903
|
-
"serde",
|
|
4904
|
-
]
|
|
4905
|
-
|
|
4906
|
-
[[package]]
|
|
4907
|
-
name = "wasmparser"
|
|
4908
|
-
version = "0.254.0"
|
|
4909
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4910
|
-
checksum = "d5769a29f799fbab136aaf65b4fe5384cd7d93fe6fc9ba0dcb6c8382a1f16e27"
|
|
4558
|
+
checksum = "d9a61719f93a87b16d325921e251800c4833f8fab50fa21c7de73aed50086313"
|
|
4911
4559
|
dependencies = [
|
|
4912
4560
|
"bitflags 2.13.2",
|
|
4913
4561
|
"hashbrown 0.17.1",
|
|
@@ -4923,26 +4571,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4923
4571
|
checksum = "0f7c12eac7bb587801590f6a67ff0bc84d0748513864b71108e4b311cc3df694"
|
|
4924
4572
|
dependencies = [
|
|
4925
4573
|
"bitflags 2.13.2",
|
|
4574
|
+
"hashbrown 0.17.1",
|
|
4926
4575
|
"indexmap 2.14.2",
|
|
4927
4576
|
"semver",
|
|
4577
|
+
"serde",
|
|
4928
4578
|
]
|
|
4929
4579
|
|
|
4930
4580
|
[[package]]
|
|
4931
4581
|
name = "wasmprinter"
|
|
4932
|
-
version = "0.
|
|
4582
|
+
version = "0.258.0"
|
|
4933
4583
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4934
|
-
checksum = "
|
|
4584
|
+
checksum = "3a65e30fb2cd3cc5cb7761a6064787b2abf017e6566d8d0dedf2bb7f55ad5383"
|
|
4935
4585
|
dependencies = [
|
|
4936
4586
|
"anyhow",
|
|
4937
4587
|
"termcolor",
|
|
4938
|
-
"wasmparser 0.
|
|
4588
|
+
"wasmparser 0.258.0",
|
|
4939
4589
|
]
|
|
4940
4590
|
|
|
4941
4591
|
[[package]]
|
|
4942
4592
|
name = "wasmtime"
|
|
4943
|
-
version = "
|
|
4593
|
+
version = "49.0.0"
|
|
4944
4594
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4945
|
-
checksum = "
|
|
4595
|
+
checksum = "c28a746e47c5683ec1233967948c729c18e978a59fda2b964ac6d8fae9f8f3f8"
|
|
4946
4596
|
dependencies = [
|
|
4947
4597
|
"addr2line",
|
|
4948
4598
|
"async-trait",
|
|
@@ -4973,8 +4623,8 @@ dependencies = [
|
|
|
4973
4623
|
"target-lexicon",
|
|
4974
4624
|
"tempfile",
|
|
4975
4625
|
"wasm-compose",
|
|
4976
|
-
"wasm-encoder 0.
|
|
4977
|
-
"wasmparser 0.
|
|
4626
|
+
"wasm-encoder 0.258.0",
|
|
4627
|
+
"wasmparser 0.258.0",
|
|
4978
4628
|
"wasmtime-environ",
|
|
4979
4629
|
"wasmtime-internal-cache",
|
|
4980
4630
|
"wasmtime-internal-component-macro",
|
|
@@ -4993,9 +4643,9 @@ dependencies = [
|
|
|
4993
4643
|
|
|
4994
4644
|
[[package]]
|
|
4995
4645
|
name = "wasmtime-environ"
|
|
4996
|
-
version = "
|
|
4646
|
+
version = "49.0.0"
|
|
4997
4647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4998
|
-
checksum = "
|
|
4648
|
+
checksum = "bad97c3c8f3d80de1aa1e6995b6fcf66673b7e388bca0c80bde63e4051210434"
|
|
4999
4649
|
dependencies = [
|
|
5000
4650
|
"anyhow",
|
|
5001
4651
|
"cpp_demangle",
|
|
@@ -5015,8 +4665,8 @@ dependencies = [
|
|
|
5015
4665
|
"sha2 0.10.9",
|
|
5016
4666
|
"smallvec",
|
|
5017
4667
|
"target-lexicon",
|
|
5018
|
-
"wasm-encoder 0.
|
|
5019
|
-
"wasmparser 0.
|
|
4668
|
+
"wasm-encoder 0.258.0",
|
|
4669
|
+
"wasmparser 0.258.0",
|
|
5020
4670
|
"wasmprinter",
|
|
5021
4671
|
"wasmtime-internal-component-util",
|
|
5022
4672
|
"wasmtime-internal-core",
|
|
@@ -5024,9 +4674,9 @@ dependencies = [
|
|
|
5024
4674
|
|
|
5025
4675
|
[[package]]
|
|
5026
4676
|
name = "wasmtime-internal-cache"
|
|
5027
|
-
version = "
|
|
4677
|
+
version = "49.0.0"
|
|
5028
4678
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5029
|
-
checksum = "
|
|
4679
|
+
checksum = "7143fd46e68b732a6fdb32dc3711e5a801dd2751488720f255ab7f1ef7439626"
|
|
5030
4680
|
dependencies = [
|
|
5031
4681
|
"base64 0.22.1",
|
|
5032
4682
|
"directories-next",
|
|
@@ -5036,7 +4686,7 @@ dependencies = [
|
|
|
5036
4686
|
"serde",
|
|
5037
4687
|
"serde_derive",
|
|
5038
4688
|
"sha2 0.10.9",
|
|
5039
|
-
"toml
|
|
4689
|
+
"toml",
|
|
5040
4690
|
"wasmtime-environ",
|
|
5041
4691
|
"windows-sys 0.61.2",
|
|
5042
4692
|
"zstd",
|
|
@@ -5044,9 +4694,9 @@ dependencies = [
|
|
|
5044
4694
|
|
|
5045
4695
|
[[package]]
|
|
5046
4696
|
name = "wasmtime-internal-component-macro"
|
|
5047
|
-
version = "
|
|
4697
|
+
version = "49.0.0"
|
|
5048
4698
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5049
|
-
checksum = "
|
|
4699
|
+
checksum = "0b4fe1448aafbdd529edd61ebde04660e99fc402ce379e078ff07bc079682da4"
|
|
5050
4700
|
dependencies = [
|
|
5051
4701
|
"anyhow",
|
|
5052
4702
|
"proc-macro2",
|
|
@@ -5059,15 +4709,15 @@ dependencies = [
|
|
|
5059
4709
|
|
|
5060
4710
|
[[package]]
|
|
5061
4711
|
name = "wasmtime-internal-component-util"
|
|
5062
|
-
version = "
|
|
4712
|
+
version = "49.0.0"
|
|
5063
4713
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5064
|
-
checksum = "
|
|
4714
|
+
checksum = "c42ffe2ad5d7990853601aaeb51af97ca2f6dd54f5f55345b7d036834af3fe9d"
|
|
5065
4715
|
|
|
5066
4716
|
[[package]]
|
|
5067
4717
|
name = "wasmtime-internal-core"
|
|
5068
|
-
version = "
|
|
4718
|
+
version = "49.0.0"
|
|
5069
4719
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5070
|
-
checksum = "
|
|
4720
|
+
checksum = "9f24a558f82f07e4e76a8b848288901d9f663e4e95c25f6d73627daca5f4ce93"
|
|
5071
4721
|
dependencies = [
|
|
5072
4722
|
"anyhow",
|
|
5073
4723
|
"hashbrown 0.17.1",
|
|
@@ -5077,9 +4727,9 @@ dependencies = [
|
|
|
5077
4727
|
|
|
5078
4728
|
[[package]]
|
|
5079
4729
|
name = "wasmtime-internal-cranelift"
|
|
5080
|
-
version = "
|
|
4730
|
+
version = "49.0.0"
|
|
5081
4731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5082
|
-
checksum = "
|
|
4732
|
+
checksum = "974fd5dbc539ccc2d676499262e0fc445aa6da8b6370ca6eec13c1031e256b2c"
|
|
5083
4733
|
dependencies = [
|
|
5084
4734
|
"cranelift-codegen",
|
|
5085
4735
|
"cranelift-control",
|
|
@@ -5094,7 +4744,7 @@ dependencies = [
|
|
|
5094
4744
|
"smallvec",
|
|
5095
4745
|
"target-lexicon",
|
|
5096
4746
|
"thiserror 2.0.20",
|
|
5097
|
-
"wasmparser 0.
|
|
4747
|
+
"wasmparser 0.258.0",
|
|
5098
4748
|
"wasmtime-environ",
|
|
5099
4749
|
"wasmtime-internal-core",
|
|
5100
4750
|
"wasmtime-internal-unwinder",
|
|
@@ -5103,9 +4753,9 @@ dependencies = [
|
|
|
5103
4753
|
|
|
5104
4754
|
[[package]]
|
|
5105
4755
|
name = "wasmtime-internal-fiber"
|
|
5106
|
-
version = "
|
|
4756
|
+
version = "49.0.0"
|
|
5107
4757
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5108
|
-
checksum = "
|
|
4758
|
+
checksum = "aef18909d086959f1e2b4360e8164ae2c426c93bc29014a5ca2df00b952cf79f"
|
|
5109
4759
|
dependencies = [
|
|
5110
4760
|
"cc",
|
|
5111
4761
|
"libc",
|
|
@@ -5117,9 +4767,9 @@ dependencies = [
|
|
|
5117
4767
|
|
|
5118
4768
|
[[package]]
|
|
5119
4769
|
name = "wasmtime-internal-jit-debug"
|
|
5120
|
-
version = "
|
|
4770
|
+
version = "49.0.0"
|
|
5121
4771
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5122
|
-
checksum = "
|
|
4772
|
+
checksum = "6a077f592728c8d9be8013e47a7ae34586aac00e0b857734eb967450d08f39bb"
|
|
5123
4773
|
dependencies = [
|
|
5124
4774
|
"cc",
|
|
5125
4775
|
"object",
|
|
@@ -5129,9 +4779,9 @@ dependencies = [
|
|
|
5129
4779
|
|
|
5130
4780
|
[[package]]
|
|
5131
4781
|
name = "wasmtime-internal-jit-icache-coherence"
|
|
5132
|
-
version = "
|
|
4782
|
+
version = "49.0.0"
|
|
5133
4783
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5134
|
-
checksum = "
|
|
4784
|
+
checksum = "6ed19a4085fa63674ebdcfd217d76f2f5bd8088b35d1fd14444d60d2d3303f19"
|
|
5135
4785
|
dependencies = [
|
|
5136
4786
|
"libc",
|
|
5137
4787
|
"wasmtime-internal-core",
|
|
@@ -5140,9 +4790,9 @@ dependencies = [
|
|
|
5140
4790
|
|
|
5141
4791
|
[[package]]
|
|
5142
4792
|
name = "wasmtime-internal-unwinder"
|
|
5143
|
-
version = "
|
|
4793
|
+
version = "49.0.0"
|
|
5144
4794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5145
|
-
checksum = "
|
|
4795
|
+
checksum = "5978e43aa5e9a3a03ebea8a4d4a015c92144268167abb27d99ab1b53224b28ae"
|
|
5146
4796
|
dependencies = [
|
|
5147
4797
|
"cranelift-codegen",
|
|
5148
4798
|
"log",
|
|
@@ -5152,9 +4802,9 @@ dependencies = [
|
|
|
5152
4802
|
|
|
5153
4803
|
[[package]]
|
|
5154
4804
|
name = "wasmtime-internal-versioned-export-macros"
|
|
5155
|
-
version = "
|
|
4805
|
+
version = "49.0.0"
|
|
5156
4806
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5157
|
-
checksum = "
|
|
4807
|
+
checksum = "f1f1e49d9125fa0eb3465ad8b866899f149a3c02a6bdcfb8a6f56c09a04a0260"
|
|
5158
4808
|
dependencies = [
|
|
5159
4809
|
"proc-macro2",
|
|
5160
4810
|
"quote",
|
|
@@ -5163,9 +4813,9 @@ dependencies = [
|
|
|
5163
4813
|
|
|
5164
4814
|
[[package]]
|
|
5165
4815
|
name = "wasmtime-internal-wit-bindgen"
|
|
5166
|
-
version = "
|
|
4816
|
+
version = "49.0.0"
|
|
5167
4817
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5168
|
-
checksum = "
|
|
4818
|
+
checksum = "3630c8bb456daa668a423bfb016fdb0ff89b63928533f794fc3f64fe660f4030"
|
|
5169
4819
|
dependencies = [
|
|
5170
4820
|
"anyhow",
|
|
5171
4821
|
"bitflags 2.13.2",
|
|
@@ -5177,16 +4827,16 @@ dependencies = [
|
|
|
5177
4827
|
|
|
5178
4828
|
[[package]]
|
|
5179
4829
|
name = "wasmtime-wasi"
|
|
5180
|
-
version = "
|
|
4830
|
+
version = "49.0.0"
|
|
5181
4831
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5182
|
-
checksum = "
|
|
4832
|
+
checksum = "d943e3226c3782e876d6ff26cf6081e2731b8207544dfca5cbb357196383385d"
|
|
5183
4833
|
dependencies = [
|
|
5184
4834
|
"async-trait",
|
|
5185
4835
|
"bitflags 2.13.2",
|
|
5186
4836
|
"bytes",
|
|
5187
4837
|
"cap-primitives",
|
|
5188
4838
|
"futures",
|
|
5189
|
-
"rand 0.10.
|
|
4839
|
+
"rand 0.10.3",
|
|
5190
4840
|
"rustix",
|
|
5191
4841
|
"rustix-linux-procfs",
|
|
5192
4842
|
"thiserror 2.0.20",
|
|
@@ -5201,9 +4851,9 @@ dependencies = [
|
|
|
5201
4851
|
|
|
5202
4852
|
[[package]]
|
|
5203
4853
|
name = "wasmtime-wasi-http"
|
|
5204
|
-
version = "
|
|
4854
|
+
version = "49.0.0"
|
|
5205
4855
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5206
|
-
checksum = "
|
|
4856
|
+
checksum = "c91ec67afa7d94f3762ed523c7f25908406f146d91fadd4dd7c013869608c3ed"
|
|
5207
4857
|
dependencies = [
|
|
5208
4858
|
"async-trait",
|
|
5209
4859
|
"bytes",
|
|
@@ -5223,9 +4873,9 @@ dependencies = [
|
|
|
5223
4873
|
|
|
5224
4874
|
[[package]]
|
|
5225
4875
|
name = "wasmtime-wasi-io"
|
|
5226
|
-
version = "
|
|
4876
|
+
version = "49.0.0"
|
|
5227
4877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5228
|
-
checksum = "
|
|
4878
|
+
checksum = "df03abc75bc024c0c6eda4ad5779bc83e0097d16992631f8ee92d2baab965e23"
|
|
5229
4879
|
dependencies = [
|
|
5230
4880
|
"async-trait",
|
|
5231
4881
|
"bytes",
|
|
@@ -5631,12 +5281,6 @@ version = "0.53.1"
|
|
|
5631
5281
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5632
5282
|
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
5633
5283
|
|
|
5634
|
-
[[package]]
|
|
5635
|
-
name = "winnow"
|
|
5636
|
-
version = "0.7.15"
|
|
5637
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5638
|
-
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
5639
|
-
|
|
5640
5284
|
[[package]]
|
|
5641
5285
|
name = "winnow"
|
|
5642
5286
|
version = "1.0.4"
|
|
@@ -5684,9 +5328,9 @@ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
|
5684
5328
|
|
|
5685
5329
|
[[package]]
|
|
5686
5330
|
name = "wit-component"
|
|
5687
|
-
version = "0.
|
|
5331
|
+
version = "0.258.0"
|
|
5688
5332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5689
|
-
checksum = "
|
|
5333
|
+
checksum = "481b5c47b2ecce0389b5e08a05557d6a190c9cd761773b8880a8017ee04dc7ef"
|
|
5690
5334
|
dependencies = [
|
|
5691
5335
|
"anyhow",
|
|
5692
5336
|
"bitflags 2.13.2",
|
|
@@ -5695,17 +5339,17 @@ dependencies = [
|
|
|
5695
5339
|
"serde",
|
|
5696
5340
|
"serde_derive",
|
|
5697
5341
|
"serde_json",
|
|
5698
|
-
"wasm-encoder 0.
|
|
5342
|
+
"wasm-encoder 0.258.0",
|
|
5699
5343
|
"wasm-metadata",
|
|
5700
|
-
"wasmparser 0.
|
|
5344
|
+
"wasmparser 0.258.0",
|
|
5701
5345
|
"wit-parser",
|
|
5702
5346
|
]
|
|
5703
5347
|
|
|
5704
5348
|
[[package]]
|
|
5705
5349
|
name = "wit-parser"
|
|
5706
|
-
version = "0.
|
|
5350
|
+
version = "0.258.0"
|
|
5707
5351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5708
|
-
checksum = "
|
|
5352
|
+
checksum = "ff4daaa3cd97ae49ecd0a99dc009d453f93e0f083dd3be38c0f24a83a93e37ac"
|
|
5709
5353
|
dependencies = [
|
|
5710
5354
|
"anyhow",
|
|
5711
5355
|
"hashbrown 0.17.1",
|
|
@@ -5717,7 +5361,7 @@ dependencies = [
|
|
|
5717
5361
|
"serde_derive",
|
|
5718
5362
|
"serde_json",
|
|
5719
5363
|
"unicode-ident",
|
|
5720
|
-
"wasmparser 0.
|
|
5364
|
+
"wasmparser 0.258.0",
|
|
5721
5365
|
]
|
|
5722
5366
|
|
|
5723
5367
|
[[package]]
|
|
@@ -5805,20 +5449,6 @@ name = "zeroize"
|
|
|
5805
5449
|
version = "1.9.0"
|
|
5806
5450
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5807
5451
|
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
5808
|
-
dependencies = [
|
|
5809
|
-
"zeroize_derive",
|
|
5810
|
-
]
|
|
5811
|
-
|
|
5812
|
-
[[package]]
|
|
5813
|
-
name = "zeroize_derive"
|
|
5814
|
-
version = "1.5.0"
|
|
5815
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5816
|
-
checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
|
|
5817
|
-
dependencies = [
|
|
5818
|
-
"proc-macro2",
|
|
5819
|
-
"quote",
|
|
5820
|
-
"syn 2.0.119",
|
|
5821
|
-
]
|
|
5822
5452
|
|
|
5823
5453
|
[[package]]
|
|
5824
5454
|
name = "zerotrie"
|