diff --git a/Cargo.lock b/Cargo.lock index 2b9b8d589..28071f3d5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1449,6 +1449,7 @@ version = "0.25.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29f835d03d717946d28b1d1ed632eb6f0e24a299388ee623d0c23118d3e8a7fa" dependencies = [ + "cc", "pkg-config", "vcpkg", ] @@ -1765,8 +1766,10 @@ dependencies = [ "flutter_rust_bridge", "futures", "hex", + "libsqlite3-sys", "lightning-invoice", "ln-dlc-node", + "openssl", "orderbook-client", "orderbook-commons", "reqwest", diff --git a/mobile/native/Cargo.toml b/mobile/native/Cargo.toml index dae3653cb..8d40dc440 100644 --- a/mobile/native/Cargo.toml +++ b/mobile/native/Cargo.toml @@ -16,8 +16,10 @@ dlc-messages = { version = "0.4.0" } flutter_rust_bridge = "1.68.0" futures = "0.3" hex = "0.4" +libsqlite3-sys = { version = "0.25.2", features = ["bundled"] } lightning-invoice = { version = "0.21" } ln-dlc-node = { path = "../../crates/ln-dlc-node" } +openssl = { version = "0.10.45", features = ["vendored"] } orderbook-client = { path = "../../crates/orderbook-client" } orderbook-commons = { path = "../../crates/orderbook-commons" } reqwest = { version = "0.11", default-features = false, features = ["json"] }