mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-03-16 03:16:15 -04:00
![bors[bot]](/assets/img/avatar_default.png)
807: Bump pem from 0.8.3 to 1.0.0 r=rishflab a=dependabot[bot] Bumps [pem](https://github.com/jcreekmore/pem-rs) from 0.8.3 to 1.0.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/jcreekmore/pem-rs/blob/master/CHANGELOG.md">pem's changelog</a>.</em></p> <blockquote> <h1>1.0</h1> <ul> <li><code>pem::parse_many</code> now returns a <code>Result<Vec<Pem>></code> instead of a <code>Vec<Pem></code> that silently discarded invalid sections.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="15b1f99fb6
"><code>15b1f99</code></a> (cargo-release) version 1.0.0</li> <li><a href="765968bfab
"><code>765968b</code></a> update changelog for 1.0 release</li> <li><a href="9206bed247
"><code>9206bed</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/jcreekmore/pem-rs/issues/28">#28</a> from mhils/parse-many</li> <li><a href="e44bef628a
"><code>e44bef6</code></a> add CHANGELOG</li> <li><a href="936da99794
"><code>936da99</code></a> make <code>parse_many</code> return a <code>Result\<Vec<Pem>></code></li> <li><a href="b2cfec1848
"><code>b2cfec1</code></a> (cargo-release) start next development iteration 0.8.4-alpha.0</li> <li>See full diff in <a href="https://github.com/jcreekmore/pem-rs/compare/v0.8.3...v1.0.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting ``@dependabot` rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - ``@dependabot` rebase` will rebase this PR - ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it - ``@dependabot` merge` will merge this PR after your CI passes on it - ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it - ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging - ``@dependabot` reopen` will reopen this PR if it is closed - ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
92 lines
3.3 KiB
TOML
92 lines
3.3 KiB
TOML
[package]
|
|
name = "swap"
|
|
version = "0.9.0"
|
|
authors = [ "The COMIT guys <hello@comit.network>" ]
|
|
edition = "2018"
|
|
description = "XMR/BTC trustless atomic swaps."
|
|
|
|
[lib]
|
|
name = "swap"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
async-compression = { version = "0.3", features = [ "bzip2", "tokio" ] }
|
|
async-trait = "0.1"
|
|
atty = "0.2"
|
|
backoff = { version = "0.3", features = [ "tokio" ] }
|
|
base64 = "0.13"
|
|
bdk = "0.12"
|
|
big-bytes = "1"
|
|
bitcoin = { version = "0.27", features = [ "rand", "use-serde" ] }
|
|
bmrng = "0.5"
|
|
comfy-table = "4.1.1"
|
|
config = { version = "0.11", default-features = false, features = [ "toml" ] }
|
|
conquer-once = "0.3"
|
|
curve25519-dalek = { package = "curve25519-dalek-ng", version = "4" }
|
|
data-encoding = "2.3"
|
|
dialoguer = "0.8"
|
|
directories-next = "2"
|
|
ecdsa_fun = { git = "https://github.com/LLFourn/secp256kfun", default-features = false, features = [ "libsecp_compat", "serde" ] }
|
|
ed25519-dalek = "1"
|
|
futures = { version = "0.3", default-features = false }
|
|
hex = "0.4"
|
|
itertools = "0.10"
|
|
libp2p = { git = "https://github.com/comit-network/rust-libp2p", branch = "rendezvous", default-features = false, features = [ "tcp-tokio", "yamux", "mplex", "dns-tokio", "noise", "request-response", "websocket", "ping", "rendezvous" ] }
|
|
monero = { version = "0.12", features = [ "serde_support" ] }
|
|
monero-rpc = { path = "../monero-rpc" }
|
|
pem = "1.0"
|
|
proptest = "1"
|
|
qrcode = "0.12"
|
|
rand = "0.8"
|
|
rand_chacha = "0.3"
|
|
reqwest = { version = "0.11", features = [ "rustls-tls", "stream", "socks" ], default-features = false }
|
|
rust_decimal = { version = "1", features = [ "serde-float" ] }
|
|
rust_decimal_macros = "1"
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
serde_cbor = "0.11"
|
|
serde_json = "1"
|
|
serde_with = { version = "1", features = [ "macros" ] }
|
|
sha2 = "0.9"
|
|
sigma_fun = { git = "https://github.com/LLFourn/secp256kfun", default-features = false, features = [ "ed25519", "serde" ] }
|
|
sled = "0.34"
|
|
sqlx = { version = "0.5", features = [ "sqlite", "runtime-tokio-rustls", "offline" ] }
|
|
structopt = "0.3"
|
|
strum = { version = "0.21", features = [ "derive" ] }
|
|
thiserror = "1"
|
|
time = "0.3"
|
|
tokio = { version = "1", features = [ "rt-multi-thread", "time", "macros", "sync", "process", "fs", "net" ] }
|
|
tokio-socks = "0.5"
|
|
tokio-tungstenite = { version = "0.15", features = [ "rustls-tls" ] }
|
|
tokio-util = { version = "0.6", features = [ "io" ] }
|
|
toml = "0.5"
|
|
torut = { version = "0.2", default-features = false, features = [ "v3", "control" ] }
|
|
tracing = { version = "0.1", features = [ "attributes" ] }
|
|
tracing-appender = "0.1"
|
|
tracing-futures = { version = "0.2", features = [ "std-future", "futures-03" ] }
|
|
tracing-subscriber = { version = "0.2", default-features = false, features = [ "fmt", "ansi", "env-filter", "chrono", "tracing-log", "json" ] }
|
|
url = { version = "2", features = [ "serde" ] }
|
|
uuid = { version = "0.8", features = [ "serde", "v4" ] }
|
|
void = "1"
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
tokio-tar = "0.3"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
zip = "0.5"
|
|
|
|
[dev-dependencies]
|
|
bitcoin-harness = { git = "https://github.com/coblox/bitcoin-harness-rs" }
|
|
get-port = "3"
|
|
hyper = "0.14"
|
|
monero-harness = { path = "../monero-harness" }
|
|
port_check = "0.1"
|
|
proptest = "1"
|
|
serde_cbor = "0.11"
|
|
spectral = "0.6"
|
|
tempfile = "3"
|
|
testcontainers = "0.12"
|
|
|
|
[build-dependencies]
|
|
vergen = { version = "5", default-features = false, features = [ "git", "build" ] }
|
|
anyhow = "1"
|