384: Include author information in the `--help` text r=thomaseizinger a=thomaseizinger



Co-authored-by: Thomas Eizinger <thomas@eizinger.io>
pull/361/head
bors[bot] 3 years ago committed by GitHub
commit a18c071559
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,7 +1,7 @@
[package]
name = "swap"
version = "0.3.0"
authors = ["CoBloX developers <team@coblox.tech>"]
authors = ["The COMIT guys <hello@comit.network>"]
edition = "2018"
description = "XMR/BTC trustless atomic swaps."

@ -6,7 +6,8 @@ use std::path::PathBuf;
#[derive(structopt::StructOpt, Debug)]
#[structopt(
name = "asb",
about = "Automated Swap Backend for swapping XMR for BTC"
about = "Automated Swap Backend for swapping XMR for BTC",
author
)]
pub struct Arguments {
#[structopt(

@ -17,7 +17,7 @@ pub const DEFAULT_ELECTRUM_HTTP_URL: &str = "https://blockstream.info/testnet/ap
const DEFAULT_ELECTRUM_RPC_URL: &str = "ssl://electrum.blockstream.info:60002";
#[derive(structopt::StructOpt, Debug)]
#[structopt(name = "swap", about = "CLI for swapping BTC for XMR")]
#[structopt(name = "swap", about = "CLI for swapping BTC for XMR", author)]
pub struct Arguments {
#[structopt(
long = "--data-dir",

Loading…
Cancel
Save