From e85aac82b69c01bdd38aa29f2e8240d0b56befd9 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Thu, 25 Jan 2024 19:06:08 +0000 Subject: [PATCH] zcash_client_sqlite: Add warning about `rusqlite` version constraint --- zcash_client_sqlite/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zcash_client_sqlite/Cargo.toml b/zcash_client_sqlite/Cargo.toml index 54db9a236..29cba7adc 100644 --- a/zcash_client_sqlite/Cargo.toml +++ b/zcash_client_sqlite/Cargo.toml @@ -51,6 +51,9 @@ incrementalmerkletree.workspace = true shardtree = { workspace = true, features = ["legacy-api"] } # - SQLite databases +# Warning: One of the downstream consumers requires that SQLite be available through +# CocoaPods, due to being bound to React Native. We need to ensure that the SQLite +# version required for `rusqlite` is a version that is available through CocoaPods. rusqlite = { version = "0.29.0", features = ["bundled", "time", "array"] } schemer = "0.2" schemer-rusqlite = "0.2.2"