From b09577a1c5d743e9934a6c0a2a9cf21d8f76c7bc Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Thu, 23 May 2024 11:38:26 -0600 Subject: [PATCH 1/3] fix `rev` format --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c3f3920..9557d1d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ crate-type = [ [dependencies] -ark-circom = { git = "https://github.com/codex-storage/circom-compat.git#71f1ceb11aef27256", features = ["circom-2", "ethereum"]} +ark-circom = { git = "https://github.com/codex-storage/circom-compat.git", rev = "71f1ceb11aef27256", features = ["circom-2", "ethereum"]} ark-crypto-primitives = { version = "=0.4.0" } ark-ec = { version = "=0.4.1", default-features = false, features = ["parallel"] } From 58fb50520e1fa8c221f7866bbce24817f27feece Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Thu, 23 May 2024 11:38:49 -0600 Subject: [PATCH 2/3] pin toolchain --- rust-toolchain.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 rust-toolchain.toml diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..74cb24a --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,3 @@ +[toolchain] +channel = "stable" +version = "1.67.0" \ No newline at end of file From e193d2c8578130a447368a62e4d5a8edf9a62517 Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Thu, 23 May 2024 12:09:56 -0600 Subject: [PATCH 3/3] set channel to version, otherwise the latest stable is used --- rust-toolchain.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 74cb24a..969710a 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,2 @@ [toolchain] -channel = "stable" -version = "1.67.0" \ No newline at end of file +channel = "1.67.0"