From 7c1e5c0e58a86b44ff1423be99eb61184a8aeb6c Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Wed, 18 May 2022 12:23:40 +0200 Subject: [PATCH 1/2] Cargo: remove Jake from the authors He hasn't contributed to this project for more than a year, for safety remove his access to the crate on crates.io. It can always be restored later. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c9c45f1..c06f6a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cosignerd" version = "0.0.3" -authors = ["JSwambo ", "Antoine Poinsot "] +authors = ["Antoine Poinsot "] edition = "2018" repository = "https://github.com/revault/revaultd" license-file = "LICENCE" From 843237eb1c467d987360f7c075f3b8f761357e87 Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Wed, 18 May 2022 12:27:02 +0200 Subject: [PATCH 2/2] Cargo: release 0.1 --- Cargo.lock | 14 +++++++++----- Cargo.toml | 8 ++++---- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1558966..1ff04f0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "ahash" version = "0.4.7" @@ -99,7 +101,7 @@ dependencies = [ [[package]] name = "cosignerd" -version = "0.0.3" +version = "0.1.0" dependencies = [ "bitcoin", "fern", @@ -373,8 +375,9 @@ dependencies = [ [[package]] name = "revault_net" -version = "0.2.1" -source = "git+https://github.com/revault/revault_net#8b334557a04262dd224f5a42abaf62c26c546dbf" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21cf3a2aec4c7afc9900d88eed6ef84272fcd78f2f36c69a46146cdb233d57f6" dependencies = [ "bitcoin", "log", @@ -387,8 +390,9 @@ dependencies = [ [[package]] name = "revault_tx" -version = "0.4.1" -source = "git+https://github.com/revault/revault_tx#23f18b66a0f165a0091e1be8feffe363f37cea97" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "285230bfc2d0e7975ac997667505954ac39115d481c7482055d631497a1983c4" dependencies = [ "base64", "bitcoinconsensus", diff --git a/Cargo.toml b/Cargo.toml index c06f6a2..91a3388 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "cosignerd" -version = "0.0.3" +version = "0.1.0" authors = ["Antoine Poinsot "] edition = "2018" repository = "https://github.com/revault/revaultd" license-file = "LICENCE" keywords = ["revault", "bitcoin", "vault"] description = "Revault cosigning server" -exclude = [".github/"] +exclude = [".github/", "fuzz"] [dependencies] @@ -28,8 +28,8 @@ libc = "0.2" rusqlite = { version = "0.24.2", features = ["bundled"] } # Revault-specific libraries -revault_tx = { git = "https://github.com/revault/revault_tx", features = ["use-serde"] } -revault_net = { git = "https://github.com/revault/revault_net" } +revault_tx = { version = "0.5", features = ["use-serde"] } +revault_net = "0.3" # For fuzz testing