diff --git a/demos/chat-client/rust/.cargo/config b/demos/chat-client/rust/.cargo/config index b105d9c..d3f9ec0 100644 --- a/demos/chat-client/rust/.cargo/config +++ b/demos/chat-client/rust/.cargo/config @@ -2,5 +2,5 @@ target = "wasm32-wasi" [target.wasm32-wasi] -runner = ["enarx", "run", "--wasmcfgfile", "Enarx.toml"] +runner = ["enarx", "run", "--wasmcfgfile", "../Enarx.toml"] rustflags = [ "--cfg", "tokio_unstable"] diff --git a/demos/chat-client/rust/Cargo.lock b/demos/chat-client/rust/Cargo.lock index 3c26279..4922415 100644 --- a/demos/chat-client/rust/Cargo.lock +++ b/demos/chat-client/rust/Cargo.lock @@ -42,6 +42,16 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" +[[package]] +name = "chat-client" +version = "0.1.0" +dependencies = [ + "anyhow", + "futures 0.3.24", + "tokio", + "tokio-stream", +] + [[package]] name = "futures" version = "0.1.31" @@ -264,16 +274,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "tokio-chat-client" -version = "0.1.0" -dependencies = [ - "anyhow", - "futures 0.3.24", - "tokio", - "tokio-stream", -] - [[package]] name = "tokio-io" version = "0.1.13" diff --git a/demos/chat-server/rust/Cargo.lock b/demos/chat-server/rust/Cargo.lock index 8d2183e..f2792fc 100644 --- a/demos/chat-server/rust/Cargo.lock +++ b/demos/chat-server/rust/Cargo.lock @@ -311,17 +311,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "tokio-chat-server" -version = "0.1.0" -dependencies = [ - "anyhow", - "futures 0.3.24", - "tokio", - "tokio-stream", - "ulid", -] - [[package]] name = "tokio-io" version = "0.1.13"