Skip to content

Commit

Permalink
Use helium-crypto feature in creates where it is required
Browse files Browse the repository at this point in the history
  • Loading branch information
kurotych committed Jul 26, 2024
1 parent c4afe30 commit ad0b815
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion iot_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion iot_verifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion mobile_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion mobile_verifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit ad0b815

Please sign in to comment.