From b5a6d2abf07608f980d5dd1db6e64dec91bf4c73 Mon Sep 17 00:00:00 2001 From: Michael Yuan Date: Sun, 28 Jan 2024 22:32:38 +0000 Subject: [PATCH] Update crates artifacts Signed-off-by: Michael Yuan --- .cargo/config.toml | 5 +++++ examples/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..a480ecf --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,5 @@ +[build] +target="wasm32-wasi" + +[target.wasm32-wasi] +runner="wasmedge" diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 91e8049..ac1b8e4 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -9,4 +9,4 @@ serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } url = "2.3" tokio_wasi = { version = "1", features = ["io-util", "fs", "net", "time", "rt", "macros"] } -qdrant_rest_client = { git = "https://github.com/juntao/qdrant-rest-client/" } +qdrant_rest_client = { git = "https://github.com/second-state/qdrant-rest-client/" }