From c0370ddd5ce03721b1158c77c470843be226212f Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 24 Oct 2024 14:53:16 +1100 Subject: [PATCH] Remove authors When this crate started out I copied a bunch of code from `rust-bitcoincore-rpc`, as such I kept the original authors. Since then I have re-started from scratch. The original authors should not be held accountable for this crate anymore. --- client/Cargo.toml | 7 +------ json/Cargo.toml | 7 +------ 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/client/Cargo.toml b/client/Cargo.toml index 51d3d32..a99a1ef 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,12 +1,7 @@ [package] name = "bitcoind-json-rpc-client" version = "0.3.0" -authors = [ - "Steven Roose ", - "Jean Pierre Dudey ", - "Dawid Ciężarkiewicz ", - "Tobin C. Harding " -] +authors = ["Tobin C. Harding "] license = "CC0-1.0" repository = "https://github.com/rust-bitcoin/rust-bitcoind-json-rpc" description = "Bitcoin Core JSON-RPC client" diff --git a/json/Cargo.toml b/json/Cargo.toml index b711f1d..f71d130 100644 --- a/json/Cargo.toml +++ b/json/Cargo.toml @@ -1,12 +1,7 @@ [package] name = "bitcoind-json-rpc-types" version = "0.3.0" -authors = [ - "Steven Roose ", - "Jean Pierre Dudey ", - "Dawid Ciężarkiewicz ", - "Tobin C. Harding " -] +authors = ["Tobin C. Harding "] license = "CC0-1.0" repository = "https://github.com/rust-bitcoin/rust-bitcoind-json-rpc" description = "Bitcoin Core JSON-RPC API types"