From 82b0075db1683e8831ca6cf5f3ad156dcff3cedc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BC=8A=E6=AC=A7?= Date: Thu, 19 Oct 2023 23:17:54 +0800 Subject: [PATCH] fix: Try to fix CI by remove toml. --- examples/proxy_wasmtime_example/Cargo.toml | 9 --------- examples/proxy_wasmtime_example/module/Cargo.toml | 6 ++++++ 2 files changed, 6 insertions(+), 9 deletions(-) delete mode 100644 examples/proxy_wasmtime_example/Cargo.toml diff --git a/examples/proxy_wasmtime_example/Cargo.toml b/examples/proxy_wasmtime_example/Cargo.toml deleted file mode 100644 index ae8b0cc70..000000000 --- a/examples/proxy_wasmtime_example/Cargo.toml +++ /dev/null @@ -1,9 +0,0 @@ -[workspace] -members = ["module", "vm"] -resolver = "2" - -[profile.release] -lto = true -opt-level = 'z' -codegen-units = 1 -panic = "abort" diff --git a/examples/proxy_wasmtime_example/module/Cargo.toml b/examples/proxy_wasmtime_example/module/Cargo.toml index 91cd77afb..be17322d6 100644 --- a/examples/proxy_wasmtime_example/module/Cargo.toml +++ b/examples/proxy_wasmtime_example/module/Cargo.toml @@ -16,3 +16,9 @@ sea-orm = { path = "../../../", default-features = false, features = [ "proxy", "runtime-tokio", ] } + +[profile.release] +lto = true +opt-level = 'z' +codegen-units = 1 +panic = "abort"