From 98da433553fbbf655301cac31f35472c973e96c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BC=8A=E6=AC=A7?= Date: Tue, 5 Dec 2023 13:22:20 +0800 Subject: [PATCH] fix: Exclude WASI example to avoid web-sys. --- Cargo.toml | 2 +- examples/history-wasi/.gitignore | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 examples/history-wasi/.gitignore diff --git a/Cargo.toml b/Cargo.toml index 74e8fedc..eb18af56 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -77,9 +77,9 @@ members = [ "examples/markdown", "examples/clock", "examples/file-hash", - "examples/history-wasi", "examples/prime", ] +exclude = ["examples/history-wasi"] # Passing arguments to the docsrs builder in order to properly document cfg's. # More information: https://docs.rs/about/builds#cross-compiling diff --git a/examples/history-wasi/.gitignore b/examples/history-wasi/.gitignore new file mode 100644 index 00000000..96ef6c0b --- /dev/null +++ b/examples/history-wasi/.gitignore @@ -0,0 +1,2 @@ +/target +Cargo.lock