7de3e23bb0
802: Bump tracing-subscriber from 0.2.20 to 0.2.25 r=rishflab a=dependabot[bot] Bumps [tracing-subscriber](https://github.com/tokio-rs/tracing) from 0.2.20 to 0.2.25. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tracing/releases">tracing-subscriber's releases</a>.</em></p> <blockquote> <h2>tracing-subscriber 0.2.23</h2> <p>This release fixes a few bugs in the per-layer filtering API added in v0.2.21.</p> <h3>Fixed</h3> <ul> <li><strong>env-filter</strong>: Fixed excessive <code>EnvFilter</code> memory use (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1568">#1568</a>)</li> <li><strong>filter</strong>: Fixed a panic that may occur in debug mode when using per-layer filters together with global filters (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1569">#1569</a>)</li> <li>Fixed incorrect documentation formatting (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1572">#1572</a>)</li> </ul> <p><a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1568">#1568</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1568">#1568</a> <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1569">#1569</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1569">#1569</a> <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1572">#1572</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1572">#1572</a></p> <h2>tracing-subscriber 0.2.22</h2> <p>This fixes a regression where the <code>filter::ParseError</code> type was accidentally renamed.</p> <h3>Fixed</h3> <ul> <li><strong>filter</strong>: Fix <code>filter::ParseError</code> accidentally being renamed to <code>filter::DirectiveParseError</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1558">#1558</a>)</li> </ul> <p><a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1558">#1558</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/tracing/pull/1558">tokio-rs/tracing#1558</a></p> <h2>tracing-subscriber 0.2.21</h2> <p>This release introduces the [<code>Filter</code>] trait, a new API for [per-layer filtering][plf]. This allows controlling which spans and events are recorded by various layers individually, rather than globally.</p> <p>In addition, it adds a new [<code>Targets</code>] filter, which provides a lighter-weight version of the filtering provided by [<code>EnvFilter</code>], as well as other smaller API improvements and fixes.</p> <h3>Deprecated</h3> <ul> <li><strong>registry</strong>: <code>SpanRef::parent_id</code>, which cannot properly support per-layer filtering. Use <code>.parent().map(SpanRef::id)</code> instead. (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1523">#1523</a>)</li> </ul> <h3>Fixed</h3> <ul> <li><strong>layer</strong> <code>Context</code> methods that are provided when the <code>Subscriber</code> implements <code>LookupSpan</code> no longer require the "registry" feature flag (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1525">#1525</a>)</li> <li><strong>layer</strong> <code>fmt::Debug</code> implementation for <code>Layered</code> no longer requires the <code>S</code> type parameter to implement <code>Debug</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/tracing/issues/1528">#1528</a>)</li> </ul> <h3>Added</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
---|---|---|
.cargo | ||
.github | ||
docs | ||
monero-harness | ||
monero-rpc | ||
monero-wallet | ||
swap | ||
.gitignore | ||
bors.toml | ||
Cargo.lock | ||
Cargo.toml | ||
CHANGELOG.md | ||
CONTRIBUTING.md | ||
dprint.json | ||
LICENSE | ||
README.md | ||
rust-toolchain.toml |
XMR to BTC Atomic Swap
This repository hosts an MVP for atomically swapping BTC to XMR. It implements the protocol described in section 3 of this paper.
More information about the protocol in this presentation and this blog post.
Currently, swaps are only offered in one direction with the swap
CLI on the buying side (send BTC, receive XMR).
We are working on implementing a protocol where XMR moves first, but are currently blocked by advances on Monero itself.
You can read this blogpost for more information.
Quick Start
- Download the latest
swap
binary release for your operating system. - Find a seller to swap with:
./swap --testnet list-sellers
- Swap with a seller:
./swap --testnet buy-xmr --receive-address <YOUR MONERO ADDRESS> --change-address <YOUR BITCOIN CHANGE ADDRESS> --seller <SELLER MULTIADDRESS>
For more detailed documentation on the CLI, see this README.
Becoming a Market Maker
Swapping of course needs two parties - and the CLI is only one of them: The taker that occasionally starts a swap with a market maker.
If you are interested in becoming a market maker you will want to run the second binary provided in this repository: asb
- the Automated Swap Backend.
Detailed documentation for the asb
can be found in this README.
Safety
This software is using cryptography that has not been formally audited. While we do our best to make it safe, it is up to the user to evaluate whether or not it is safe to use for their purposes. Please also see section 15 and 16 of the license.
Contributing
We are encourage community contributions whether it be a bug fix or an improvement to the documentation. Please have a look at the contribution guidelines.
Contact
Feel free to reach out to us in the COMIT-Monero Matrix channel.