mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-11-29 12:06:35 -05:00
feat(swap): Use art_client to dial over Tor (#196)
- Upgrade `sqlx` to `0.8` - Use `arti_client@0.24` in combination with [`libp2p-community-tor`](https://crates.io/crates/libp2p-community-tor/0.4.1). https://github.com/umgefahren/libp2p-tor/pull/18 was required for this. - Display spinner in GUI while Tor circuits are being established - Remove unused dependencies (`once_cell`, `tauri-plugin-devtools`, `digest`, `hyper`, `itertools`, `erased_serde`) - Bundle roboto font from npm registry
This commit is contained in:
parent
3aef92e848
commit
6cd228fada
41 changed files with 2689 additions and 871 deletions
|
|
@ -4,6 +4,7 @@ pub mod cancel_and_refund;
|
|||
pub mod command;
|
||||
mod event_loop;
|
||||
mod list_sellers;
|
||||
mod tor;
|
||||
pub mod transport;
|
||||
pub mod watcher;
|
||||
|
||||
|
|
@ -45,7 +46,7 @@ mod tests {
|
|||
rendezvous_peer_id,
|
||||
rendezvous_address,
|
||||
namespace,
|
||||
0,
|
||||
None,
|
||||
identity::Keypair::generate_ed25519(),
|
||||
);
|
||||
let sellers = tokio::time::timeout(Duration::from_secs(15), list_sellers)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue