From 7c21b527e9bb9439af5b4b065df094ee18a7e148 Mon Sep 17 00:00:00 2001 From: GroM Date: Thu, 10 Oct 2024 14:55:24 +0200 Subject: [PATCH] Bump Rust SDK versions --- .cargo/config.toml | 6 +++--- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 7cea8e1..c4e5bd0 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -9,7 +9,7 @@ build-std = ["core", "alloc"] build-std-features = ["compiler-builtins-mem"] # By default, heap size is enforced to 8192 bytes. -# Recommended values are [2048, 4096, 8192, 16384, 24576] -# Uncomment the following lines to set the heap size +# Authorized values are [2048, 4096, 8192, 16384, 24576] +# Uncomment the following lines to set the heap size to 4096 bytes for instance #[env] -#HEAP_SIZE = "8192" \ No newline at end of file +#HEAP_SIZE = "4096" \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index a405a98..529ecc4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -370,9 +370,9 @@ checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8" [[package]] name = "ledger_device_sdk" -version = "1.17.3" +version = "1.17.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "875d400a3d2607741f0eb107471611622fb99b75e612231c42b3b9e039fd96c9" +checksum = "ce9c82de15e92ffb12317cc437c3599e590745a1a2647b279ef7d8f04aa35ef4" dependencies = [ "const-zero", "include_gif", @@ -385,9 +385,9 @@ dependencies = [ [[package]] name = "ledger_secure_sdk_sys" -version = "1.5.0" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc289cbd2e3d451002a1cba0c71aeee97a5c7745e0570f05a665a8d9f8971688" +checksum = "dae67d1f69230aa9798ddf94b8fc0b6a21f3ea7206db813b9c12aa2f783fd396" dependencies = [ "bindgen", "cc", diff --git a/Cargo.toml b/Cargo.toml index 2ff2c25..f7e4650 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ authors = ["yhql", "agrojean-ledger"] edition = "2021" [dependencies] -ledger_device_sdk = "1.17.3" +ledger_device_sdk = "1.17.4" include_gif = "1.2.0" serde = {version="1.0.192", default_features = false, features = ["derive"]} serde-json-core = { git = "https://github.com/rust-embedded-community/serde-json-core"}