diff --git a/Cargo.toml b/Cargo.toml index 3fdd7715b..a45355a99 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -65,7 +65,7 @@ sqlx = { version = "0", features = [ "runtime-tokio-rustls", ] } helium-anchor-gen = { git = "https://github.com/helium/helium-anchor-gen.git" } -helium-crypto = { version = "0.8.4", features = ["sqlx-postgres", "multisig"] } +helium-crypto = { version = "0.8.4", features = ["multisig"] } helium-lib = { git = "https://github.com/helium/helium-wallet-rs.git", branch = "master" } hextree = { git = "https://github.com/jaykickliter/HexTree", branch = "main", features = [ "disktree", diff --git a/iot_config/Cargo.toml b/iot_config/Cargo.toml index 5e4ff5c22..cce124e9f 100644 --- a/iot_config/Cargo.toml +++ b/iot_config/Cargo.toml @@ -18,7 +18,7 @@ db-store = { path = "../db_store" } file-store = { path = "../file_store" } futures = { workspace = true } futures-util = { workspace = true } -helium-crypto = { workspace = true } +helium-crypto = { workspace = true, features = ["sqlx-postgres"] } helium-proto = { workspace = true } hextree = { workspace = true } http = { workspace = true } diff --git a/iot_verifier/Cargo.toml b/iot_verifier/Cargo.toml index 940445988..0a8638415 100644 --- a/iot_verifier/Cargo.toml +++ b/iot_verifier/Cargo.toml @@ -30,7 +30,7 @@ futures-util = { workspace = true } prost = { workspace = true } chrono = { workspace = true } helium-proto = { workspace = true } -helium-crypto = { workspace = true } +helium-crypto = { workspace = true, features = ["sqlx-postgres"] } async-trait = { workspace = true } h3o = { workspace = true, features = ["geo"] } xorf = { workspace = true } diff --git a/mobile_config/Cargo.toml b/mobile_config/Cargo.toml index b1a396c35..f413f4cba 100644 --- a/mobile_config/Cargo.toml +++ b/mobile_config/Cargo.toml @@ -18,7 +18,7 @@ db-store = { path = "../db_store" } file-store = { path = "../file_store" } futures = { workspace = true } futures-util = { workspace = true } -helium-crypto = { workspace = true } +helium-crypto = { workspace = true, features = ["sqlx-postgres"] } helium-proto = { workspace = true } hextree = { workspace = true } http = { workspace = true } diff --git a/mobile_verifier/Cargo.toml b/mobile_verifier/Cargo.toml index cc80ba81a..29d0989ca 100644 --- a/mobile_verifier/Cargo.toml +++ b/mobile_verifier/Cargo.toml @@ -32,7 +32,7 @@ futures-util = { workspace = true } prost = { workspace = true } once_cell = { workspace = true } helium-proto = { workspace = true } -helium-crypto = { workspace = true } +helium-crypto = { workspace = true, features = ["sqlx-postgres"] } humantime = { workspace = true } rust_decimal = { workspace = true } rust_decimal_macros = { workspace = true }