From a76adcb68c0156407593337bbc365df2c69008a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Granh=C3=A3o?= Date: Wed, 26 Jul 2023 13:22:06 +0100 Subject: [PATCH] Upgrade wild to v1.7.0 --- Cargo.lock | 8 ++++---- Cargo.toml | 6 +++--- src/lib.rs | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 66be7cff..48c52e02 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -429,7 +429,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chameleon" version = "0.1.0" -source = "git+https://github.com/getlipa/wild?tag=v1.6.0#b56429e7dfac0a15e3a5c7177e1da79fcd33504e" +source = "git+https://github.com/getlipa/wild?tag=v1.7.0#5f2e80b278ba099bfdfd36e01f472fa9e64707ab" dependencies = [ "chrono", "graphql", @@ -1030,7 +1030,7 @@ dependencies = [ [[package]] name = "graphql" version = "0.1.0" -source = "git+https://github.com/getlipa/wild?tag=v1.6.0#b56429e7dfac0a15e3a5c7177e1da79fcd33504e" +source = "git+https://github.com/getlipa/wild?tag=v1.7.0#5f2e80b278ba099bfdfd36e01f472fa9e64707ab" dependencies = [ "graphql_client", "log", @@ -1190,7 +1190,7 @@ dependencies = [ [[package]] name = "honey-badger" version = "1.0.1" -source = "git+https://github.com/getlipa/wild?tag=v1.6.0#b56429e7dfac0a15e3a5c7177e1da79fcd33504e" +source = "git+https://github.com/getlipa/wild?tag=v1.7.0#5f2e80b278ba099bfdfd36e01f472fa9e64707ab" dependencies = [ "base64 0.21.2", "bdk", @@ -1686,7 +1686,7 @@ dependencies = [ [[package]] name = "mole" version = "0.1.0" -source = "git+https://github.com/getlipa/wild?tag=v1.6.0#b56429e7dfac0a15e3a5c7177e1da79fcd33504e" +source = "git+https://github.com/getlipa/wild?tag=v1.7.0#5f2e80b278ba099bfdfd36e01f472fa9e64707ab" dependencies = [ "graphql", "hex", diff --git a/Cargo.toml b/Cargo.toml index c88fa8b9..3e674938 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,9 +18,9 @@ nigiri = [] [dependencies] eel = { path = "eel" } -chameleon = { git = "https://github.com/getlipa/wild", tag = "v1.6.0" } -honey-badger = { git = "https://github.com/getlipa/wild", tag = "v1.6.0" } -mole = { git = "https://github.com/getlipa/wild", tag = "v1.6.0" } +chameleon = { git = "https://github.com/getlipa/wild", tag = "v1.7.0" } +honey-badger = { git = "https://github.com/getlipa/wild", tag = "v1.7.0" } +mole = { git = "https://github.com/getlipa/wild", tag = "v1.7.0" } perro = { git = "https://github.com/getlipa/perro", tag = "v1.1.0" } chrono = { version = "0.4.26", default-features = false, features = ["serde"] } diff --git a/src/lib.rs b/src/lib.rs index 3cadcaf4..44e450a9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -421,7 +421,7 @@ pub fn accept_terms_and_conditions(environment: EnvironmentCode, seed: Vec) let seed = sanitize_input::strong_type_seed(&seed) .map_runtime_error_using(RuntimeErrorCode::from_eel_runtime_error_code)?; let auth = build_auth(&seed, environment.backend_url)?; - auth.accept_custom_terms_and_conditions(CustomTermsAndConditions::Lipa) + auth.accept_terms_and_conditions() .map_runtime_error_to(RuntimeErrorCode::AuthServiceUnavailable) }