diff --git a/Cargo.toml b/Cargo.toml index c91369e4..e759a367 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,6 +34,8 @@ socks = { version = "0.3", optional = true } hwi = { version = "0.5", optional = true, features = ["use-miniscript"] } # required for sqlite feature, hashlink versions after 0.8.1 depend on Hashbrown 0.13 with MSRV 1.61.0 hashlink = { version = "=0.8.1", optional = true } +# required for compact_filters feature, regex versions after 1.7.3 have MSRV 1.60.0 +regex = { version = "=1.7.3", optional = true } bip39 = { version = "2.0.0", optional = true } bitcoinconsensus = { version = "0.19.0-3", optional = true } @@ -60,7 +62,7 @@ default = ["std", "key-value-db", "electrum"] std = ["bitcoin/std", "miniscript/std"] sqlite = ["rusqlite", "ahash", "hashlink"] sqlite-bundled = ["sqlite", "rusqlite/bundled"] -compact_filters = ["rocksdb", "socks", "cc"] +compact_filters = ["rocksdb", "socks", "cc", "regex"] key-value-db = ["sled"] all-keys = ["keys-bip39"] keys-bip39 = ["bip39"]