diff --git a/Cargo.toml b/Cargo.toml index de688002d..15457d84b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -162,8 +162,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" } -deltachat = { path = "." } +deltachat-jsonrpc = { path = "deltachat-jsonrpc", default-features = false } +deltachat = { path = ".", default-features = false } futures = "0.3.30" futures-lite = "2.3.0" libc = "0.2" diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index ac684dc8d..6eba0fb3d 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -29,6 +29,6 @@ yerpc = { workspace = true, features = ["anyhow_expose"] } [features] default = ["vendored"] -vendored = ["deltachat/vendored"] +vendored = ["deltachat/vendored", "deltachat-jsonrpc/vendored"] jsonrpc = ["dep:deltachat-jsonrpc"] diff --git a/deltachat-rpc-server/Cargo.toml b/deltachat-rpc-server/Cargo.toml index a5228866e..3b6682af6 100644 --- a/deltachat-rpc-server/Cargo.toml +++ b/deltachat-rpc-server/Cargo.toml @@ -10,8 +10,8 @@ keywords = ["deltachat", "chat", "openpgp", "email", "encryption"] categories = ["cryptography", "std", "email"] [dependencies] -deltachat-jsonrpc = { workspace = true, default-features = false } -deltachat = { workspace = true, default-features = false } +deltachat-jsonrpc = { workspace = true } +deltachat = { workspace = true } anyhow = { workspace = true } futures-lite = { workspace = true }