diff --git a/Cargo.lock b/Cargo.lock index d70abf8c7..dd8cecad3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3061,8 +3061,7 @@ checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" [[package]] name = "payjoin" version = "0.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "430b856cb226047d3e33e055efc8c271ff246662cbb804b2a81f411b446e5b9d" +source = "git+https://github.com/DanGould/rust-payjoin.git?rev=dcb934adc595e2f6e9654fe5ec6d66128a298077#dcb934adc595e2f6e9654fe5ec6d66128a298077" dependencies = [ "bhttp", "bip21", diff --git a/mutiny-core/Cargo.toml b/mutiny-core/Cargo.toml index e4e388919..90192536f 100644 --- a/mutiny-core/Cargo.toml +++ b/mutiny-core/Cargo.toml @@ -44,7 +44,7 @@ cbc = { version = "0.1", features = ["alloc"] } aes = { version = "0.8" } jwt-compact = { version = "0.8.0-beta.1", features = ["es256k"] } argon2 = { version = "0.5.0", features = ["password-hash", "alloc"] } -payjoin = { version = "0.12.0", features = ["v2", "send", "receive", "base64"] } +payjoin = { git = "https://github.com/DanGould/rust-payjoin.git", rev = "dcb934adc595e2f6e9654fe5ec6d66128a298077", features = ["v2", "send", "receive", "base64"] } gluesql = { version = "0.15", default-features = false, features = ["memory-storage"] } gluesql-core = "0.15.0" bincode = "1.3.3" diff --git a/mutiny-wasm/Cargo.toml b/mutiny-wasm/Cargo.toml index ed70f5495..5578d7de6 100644 --- a/mutiny-wasm/Cargo.toml +++ b/mutiny-wasm/Cargo.toml @@ -41,7 +41,7 @@ getrandom = { version = "0.2", features = ["js"] } futures = "0.3.25" urlencoding = "2.1.2" once_cell = "1.18.0" -payjoin = { version = "0.12.0", features = ["send", "base64"] } +payjoin = { git = "https://github.com/DanGould/rust-payjoin.git", rev = "dcb934adc595e2f6e9654fe5ec6d66128a298077", features = ["send", "base64"] } fedimint-core = { git = "https://github.com/fedimint/fedimint.git", rev = "51d09c76b8a15615114d4f2c2663c738d8ff3135" } # The `console_error_panic_hook` crate provides better debugging of panics by