From bfd3096991601298d3eae05be34f6315960d57e6 Mon Sep 17 00:00:00 2001 From: Yi Sun Date: Sat, 29 Jun 2024 19:05:50 -0400 Subject: [PATCH] chore: pin version --- circuit/Cargo.toml | 4 ++-- circuit/src/bin/registration.rs | 2 +- circuit/src/bin/renewal.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/circuit/Cargo.toml b/circuit/Cargo.toml index 542e5d8..f217b4b 100644 --- a/circuit/Cargo.toml +++ b/circuit/Cargo.toml @@ -7,8 +7,8 @@ edition = "2021" [dependencies] anyhow = "1.0.79" -axiom-circuit = { git = "https://github.com/axiom-crypto/axiom-sdk-rs.git", branch = "develop" } -axiom-sdk = { git = "https://github.com/axiom-crypto/axiom-sdk-rs.git", branch = "develop" } +axiom-circuit = { git = "https://github.com/axiom-crypto/axiom-sdk-rs.git", rev = "26c75d6" } +axiom-sdk = { git = "https://github.com/axiom-crypto/axiom-sdk-rs.git", rev = "26c75d6" } env_logger = "0.11.2" serde = { version = "1.0", features = ["derive"] } lazy_static = "1.4.0" diff --git a/circuit/src/bin/registration.rs b/circuit/src/bin/registration.rs index 61786b7..649ee0e 100644 --- a/circuit/src/bin/registration.rs +++ b/circuit/src/bin/registration.rs @@ -1,4 +1,4 @@ -use axiom_sdk::cli::run_cli; +use axiom_sdk::cmd::run_cli; use circuit::registration::ENSRegistrationInput; fn main() { diff --git a/circuit/src/bin/renewal.rs b/circuit/src/bin/renewal.rs index fbd5eb8..747b29b 100644 --- a/circuit/src/bin/renewal.rs +++ b/circuit/src/bin/renewal.rs @@ -1,4 +1,4 @@ -use axiom_sdk::cli::run_cli; +use axiom_sdk::cmd::run_cli; use circuit::renewal::ENSRenewalInput; fn main() {