From d1c2484e0c5068bee6eabdc1c272237a2b6611ee Mon Sep 17 00:00:00 2001 From: Anatolii Kurotych Date: Mon, 11 Nov 2024 11:55:58 +0200 Subject: [PATCH] Try to build without sqlx-postgres --- Cargo.lock | 5 ++--- iot_config/Cargo.toml | 2 +- iot_packet_verifier/Cargo.toml | 1 - iot_verifier/Cargo.toml | 2 +- mobile_config/Cargo.toml | 2 +- mobile_packet_verifier/Cargo.toml | 1 - mobile_verifier/Cargo.toml | 2 +- 7 files changed, 6 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f49f6b66a..8bc072b77 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1835,7 +1835,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4114279215a005bc675e386011e594e1d9b800918cea18fcadadcce864a2046b" dependencies = [ "borsh-derive 0.10.3", - "hashbrown 0.13.1", + "hashbrown 0.12.3", ] [[package]] @@ -3778,7 +3778,6 @@ dependencies = [ "sha2 0.10.8", "signature", "solana-sdk", - "sqlx", "thiserror", ] @@ -5840,7 +5839,7 @@ dependencies = [ "anyhow", "base64 0.21.7", "blake3", - "bs58 0.5.0", + "bs58 0.3.1", "chrono", "clap 4.4.8", "config", diff --git a/iot_config/Cargo.toml b/iot_config/Cargo.toml index cce124e9f..5e4ff5c22 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, features = ["sqlx-postgres"] } +helium-crypto = { workspace = true } helium-proto = { workspace = true } hextree = { workspace = true } http = { workspace = true } diff --git a/iot_packet_verifier/Cargo.toml b/iot_packet_verifier/Cargo.toml index 8839d09a6..32146c15d 100644 --- a/iot_packet_verifier/Cargo.toml +++ b/iot_packet_verifier/Cargo.toml @@ -18,7 +18,6 @@ futures-util = { workspace = true } file-store = { path = "../file_store" } helium-proto = { workspace = true } helium-crypto = { workspace = true, features = [ - "sqlx-postgres", "multisig", "solana", ] } diff --git a/iot_verifier/Cargo.toml b/iot_verifier/Cargo.toml index 0a8638415..940445988 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, features = ["sqlx-postgres"] } +helium-crypto = { workspace = true } 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 f413f4cba..b1a396c35 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, features = ["sqlx-postgres"] } +helium-crypto = { workspace = true } helium-proto = { workspace = true } hextree = { workspace = true } http = { workspace = true } diff --git a/mobile_packet_verifier/Cargo.toml b/mobile_packet_verifier/Cargo.toml index b936682dd..f275e6fd5 100644 --- a/mobile_packet_verifier/Cargo.toml +++ b/mobile_packet_verifier/Cargo.toml @@ -18,7 +18,6 @@ futures-util = { workspace = true } file-store = { path = "../file_store" } helium-proto = { workspace = true } helium-crypto = { workspace = true, features = [ - "sqlx-postgres", "multisig", "solana", ] } diff --git a/mobile_verifier/Cargo.toml b/mobile_verifier/Cargo.toml index 84e6c61b3..76781e5d7 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, features = ["sqlx-postgres"] } +helium-crypto = { workspace = true } humantime = { workspace = true } rust_decimal = { workspace = true } rust_decimal_macros = { workspace = true }