summaryrefslogtreecommitdiffstats
path: root/ffi
diff options
context:
space:
mode:
Diffstat (limited to 'ffi')
-rw-r--r--ffi/Cargo.toml2
-rw-r--r--ffi/src/core.rs4
-rw-r--r--ffi/src/error.rs2
3 files changed, 4 insertions, 4 deletions
diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml
index 6250a93e..edb21a5b 100644
--- a/ffi/Cargo.toml
+++ b/ffi/Cargo.toml
@@ -24,9 +24,9 @@ maintenance = { status = "actively-developed" }
[dependencies]
sequoia-ffi-macros = { path = "../ffi-macros", version = "0.22" }
sequoia-openpgp = { path = "../openpgp", version = "1.0.0", default-features = false }
-sequoia-core = { path = "../core", version = "0.22" }
sequoia-store = { path = "../store", version = "0.22", default-features = false }
sequoia-net = { path = "../net", version = "0.23", default-features = false }
+sequoia-ipc = { path = "../ipc", version = "0.22", default-features = false }
anyhow = "1.0.18"
lazy_static = "1.4.0"
libc = "0.2.66"
diff --git a/ffi/src/core.rs b/ffi/src/core.rs
index a24c2137..59f465b7 100644
--- a/ffi/src/core.rs
+++ b/ffi/src/core.rs
@@ -41,8 +41,8 @@
use std::ptr;
use libc::{c_char, c_int};
-use sequoia_core as core;
-use sequoia_core::Config;
+use sequoia_ipc::core as core;
+use sequoia_ipc::core::Config;
/// Wraps a Context and provides an error slot.
#[doc(hidden)]
diff --git a/ffi/src/error.rs b/ffi/src/error.rs
index ebce4e0d..b00984a1 100644
--- a/ffi/src/error.rs
+++ b/ffi/src/error.rs
@@ -3,7 +3,7 @@
use std::io;
use sequoia_openpgp as openpgp;
-use sequoia_core as core;
+use sequoia_ipc::core as core;
use sequoia_net as net;
pub use crate::openpgp::error::Status;