Skip to content

Commit 4b217b0

Browse files
committed
updated warg dep
1 parent e9a0e1d commit 4b217b0

4 files changed

Lines changed: 15 additions & 14 deletions

File tree

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ wat = "1.202.0"
7171
logos = "0.14.0"
7272
miette = "7.2.0"
7373
thiserror = "1.0.58"
74-
warg-protocol = { git = "https://github.com/bytecodealliance/registry", rev = "ac901b9" }
75-
warg-crypto = { git = "https://github.com/bytecodealliance/registry", rev = "ac901b9" }
76-
warg-client = { git = "https://github.com/bytecodealliance/registry", rev = "ac901b9" }
77-
warg-credentials = { git = "https://github.com/bytecodealliance/registry", rev = "ac901b9" }
78-
warg-server = { git = "https://github.com/bytecodealliance/registry", rev = "ac901b9" }
74+
warg-protocol = { git = "https://github.com/calvinrp/bytecodealliance-registry", rev = "3eb6368" }
75+
warg-crypto = { git = "https://github.com/calvinrp/bytecodealliance-registry", rev = "3eb6368" }
76+
warg-client = { git = "https://github.com/calvinrp/bytecodealliance-registry", rev = "3eb6368" }
77+
warg-credentials = { git = "https://github.com/calvinrp/bytecodealliance-registry", rev = "3eb6368" }
78+
warg-server = { git = "https://github.com/calvinrp/bytecodealliance-registry", rev = "3eb6368" }
7979
#warg-client = "0.4.1"
8080
#warg-protocol = "0.4.1"
8181
#warg-crypto = "0.4.1"

crates/wac-resolver/src/registry.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ impl RegistryPackageResolver {
107107
.await
108108
{
109109
Ok(_) => {}
110-
Err(ClientError::PackageDoesNotExist { name }) => {
110+
Err(ClientError::PackageDoesNotExist { name, .. }) => {
111111
return Err(Error::PackageDoesNotExist {
112112
name: name.to_string(),
113113
span: package_names_with_source_span.get(&name).unwrap().1,

crates/wac-resolver/tests/support/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ pub async fn spawn_server(root: &Path) -> Result<(ServerInstance, warg_client::C
151151
keys: Default::default(),
152152
ignore_federation_hints: false,
153153
auto_accept_federation_hints: false,
154+
disable_dialoguer: true,
154155
};
155156

156157
Ok((instance, config))

0 commit comments

Comments
 (0)