From b0d05b20fe92d7df55863529cd0ada350b047d77 Mon Sep 17 00:00:00 2001 From: George Mulhearn Date: Thu, 7 Sep 2023 11:18:48 +1000 Subject: [PATCH 1/2] attempt to loosen x25519 dep to 1.1 Signed-off-by: George Mulhearn --- indy-utils/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indy-utils/Cargo.toml b/indy-utils/Cargo.toml index 6bf2a70..2a1e33d 100644 --- a/indy-utils/Cargo.toml +++ b/indy-utils/Cargo.toml @@ -34,7 +34,7 @@ serde = { version = "1.0", optional = true, features = ["derive"] } serde_json = { version = "1.0", optional = true } sha2 = { version = "0.10", optional = true } thiserror = "1.0" -x25519-dalek = { version = "=1.2", default-features = false, features = [ +x25519-dalek = { version = "1.1", default-features = false, features = [ "u64_backend", ], optional = true } zeroize = { version = "1.3" } From 8ac44093c0e9c15fec04716dca0d69102726e922 Mon Sep 17 00:00:00 2001 From: George Mulhearn Date: Thu, 7 Sep 2023 11:57:36 +1000 Subject: [PATCH 2/2] bump rust ver Signed-off-by: George Mulhearn --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5504e82..f34c63d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,7 @@ name: "Indy-Credx" env: - RUST_VERSION: "1.64.0" + RUST_VERSION: "1.65.0" CROSS_VERSION: "0.2.4" OPENSSL_STATIC: 1