From 9f220768c228fcb9393a2ba5abb74bc3466be27a Mon Sep 17 00:00:00 2001 From: link2xt Date: Sat, 3 Aug 2024 23:43:57 +0000 Subject: [PATCH] build: do not disable "vendored" feature in the workspace This fixes `nix build .#python-docs` --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8ca09d864..2f1bcde12 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -161,8 +161,8 @@ async-channel = "2.3.1" base64 = "0.22" chrono = { version = "0.4.38", default-features = false } deltachat-contact-tools = { path = "deltachat-contact-tools" } -deltachat-jsonrpc = { path = "deltachat-jsonrpc", default-features = false } -deltachat = { path = ".", default-features = false } +deltachat-jsonrpc = { path = "deltachat-jsonrpc" } +deltachat = { path = "." } futures = "0.3.30" futures-lite = "2.3.0" libc = "0.2"