From e946ee195bb556040bd5456790b6ab713318e5f8 Mon Sep 17 00:00:00 2001 From: alemi Date: Fri, 6 Sep 2024 00:13:17 +0200 Subject: [PATCH] fix: async-trait disabled by default provides better docs and it should be rare to need Box anyway, also Sync + Send is explicitly added so should be fine --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4c6ea0c..1855224 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,7 +62,7 @@ napi-build = { version = "2", optional = true } pyo3-build-config = { version = "0.19", optional = true } [features] -default = ["async-trait"] +default = [] # ffi rust = [] # used for ci matrix lua = ["mlua", "tracing-subscriber", "lazy_static"]