From c4afe3068670c088a07606f5de697032d9ef6c82 Mon Sep 17 00:00:00 2001 From: Anatolii Kurotych Date: Tue, 16 Jul 2024 10:14:01 +0300 Subject: [PATCH 1/2] Use prost = 0.12 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8144a56df..3fdd7715b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -102,7 +102,7 @@ http = "<=0.2" triggered = "0" futures = "*" futures-util = "*" -prost = "*" +prost = "0.12" once_cell = "1" lazy_static = "1" config = { version = "0", default-features = false, features = ["toml"] } From ad0b815a66662c517dabc4dc478b86bc03cfc551 Mon Sep 17 00:00:00 2001 From: Anatolii Kurotych Date: Fri, 26 Jul 2024 07:58:11 +0300 Subject: [PATCH 2/2] Use helium-crypto feature in creates where it is required --- Cargo.toml | 2 +- iot_config/Cargo.toml | 2 +- iot_verifier/Cargo.toml | 2 +- mobile_config/Cargo.toml | 2 +- mobile_verifier/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) 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 }