mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-01 01:45:40 -04:00
Enforce consistent formatting of Markdown files
This commit is contained in:
parent
7397cb5990
commit
febc68c780
14
.dprintrc.json
Normal file
14
.dprintrc.json
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://dprint.dev/schemas/v0.json",
|
||||||
|
"projectType": "openSource",
|
||||||
|
"incremental": true,
|
||||||
|
"markdown": {
|
||||||
|
},
|
||||||
|
"includes": ["**/*.{md}"],
|
||||||
|
"excludes": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"plugins": [
|
||||||
|
"https://plugins.dprint.dev/markdown-0.6.1.wasm"
|
||||||
|
]
|
||||||
|
}
|
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
@ -31,6 +31,9 @@ jobs:
|
|||||||
- name: Check code formatting
|
- name: Check code formatting
|
||||||
run: cargo fmt --all -- --check
|
run: cargo fmt --all -- --check
|
||||||
|
|
||||||
|
- name: Check markdown formatting
|
||||||
|
uses: dprint/check@v1
|
||||||
|
|
||||||
- name: Run clippy with default features
|
- name: Run clippy with default features
|
||||||
run: cargo clippy --workspace --all-targets -- -D warnings
|
run: cargo clippy --workspace --all-targets -- -D warnings
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
XMR to BTC Atomic Swap
|
# XMR to BTC Atomic Swap
|
||||||
======================
|
|
||||||
|
|
||||||
This repository hosts an MVP for atomically swapping BTC to XMR.
|
This repository hosts an MVP for atomically swapping BTC to XMR.
|
||||||
It implements the protocol described in section 3 of [this](https://arxiv.org/abs/2101.12332) paper.
|
It implements the protocol described in section 3 of [this](https://arxiv.org/abs/2101.12332) paper.
|
||||||
|
@ -1,12 +1,10 @@
|
|||||||
Monero Harness
|
# Monero Harness
|
||||||
==============
|
|
||||||
|
|
||||||
Provides an implementation of `testcontainers::Image` for a monero image to run
|
Provides an implementation of `testcontainers::Image` for a monero image to run
|
||||||
`monerod` and `monero-wallet-rpc` in a docker container.
|
`monerod` and `monero-wallet-rpc` in a docker container.
|
||||||
|
|
||||||
Also provides two standalone JSON RPC clients, one each for `monerod` and `monero-wallet-rpc`.
|
Also provides two standalone JSON RPC clients, one each for `monerod` and `monero-wallet-rpc`.
|
||||||
|
|
||||||
Example Usage
|
## Example Usage
|
||||||
-------------
|
|
||||||
|
|
||||||
Please see `tests/*` for example usage.
|
Please see `tests/*` for example usage.
|
||||||
|
@ -1,12 +1,10 @@
|
|||||||
Monero Harness
|
# Monero Harness
|
||||||
==============
|
|
||||||
|
|
||||||
Provides an implementation of `testcontainers::Image` for a monero image to run
|
Provides an implementation of `testcontainers::Image` for a monero image to run
|
||||||
`monerod` and `monero-wallet-rpc` in a docker container.
|
`monerod` and `monero-wallet-rpc` in a docker container.
|
||||||
|
|
||||||
Also provides two standalone JSON RPC clients, one each for `monerod` and `monero-wallet-rpc`.
|
Also provides two standalone JSON RPC clients, one each for `monerod` and `monero-wallet-rpc`.
|
||||||
|
|
||||||
Example Usage
|
## Example Usage
|
||||||
-------------
|
|
||||||
|
|
||||||
Please see `tests/*` for example usage.
|
Please see `tests/*` for example usage.
|
||||||
|
@ -83,10 +83,10 @@ fn main() {
|
|||||||
|
|
||||||
This project is licensed under either of
|
This project is licensed under either of
|
||||||
|
|
||||||
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
|
- Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
|
||||||
http://www.apache.org/licenses/LICENSE-2.0)
|
http://www.apache.org/licenses/LICENSE-2.0)
|
||||||
* MIT license ([LICENSE-MIT](LICENSE-MIT) or
|
- MIT license ([LICENSE-MIT](LICENSE-MIT) or
|
||||||
http://opensource.org/licenses/MIT)
|
http://opensource.org/licenses/MIT)
|
||||||
|
|
||||||
at your option.
|
at your option.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user