From 5c21f5071fbd21a8327dfdfd21f9d4fba1781165 Mon Sep 17 00:00:00 2001 From: decentclock Date: Tue, 2 Aug 2022 12:25:52 -0600 Subject: [PATCH] Pull fix on max SSID length We previously crashed whenever a SSID length was greater than 30 characters The standardized max length is 32 This is fixed in embedded-svc master, watch for a release soon that includes the fix --- sphinx-key/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/sphinx-key/Cargo.toml b/sphinx-key/Cargo.toml index 9ce3505..5c5efe6 100644 --- a/sphinx-key/Cargo.toml +++ b/sphinx-key/Cargo.toml @@ -42,6 +42,7 @@ rmp-serde = "1.1.0" getrandom = { version = "0.2", git = "https://github.com/esp-rs-compat/getrandom.git" } secp256k1 = { git = "https://github.com/Evanfeenstra/rust-secp256k1", branch = "v0.22.0-new-rand" } lightning = { git = "https://github.com/Evanfeenstra/rust-lightning", branch = "v0.0.108-branch" } +embedded-svc = { git = "https://github.com/esp-rs/embedded-svc.git" } [build-dependencies] embuild = "0.29"