-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
843237e Cargo: release 0.1 (Antoine Poinsot) 7c1e5c0 Cargo: remove Jake from the authors (Antoine Poinsot) Pull request description: ACKs for top commit: edouardparis: ACK 843237e Tree-SHA512: 07df6b028450c51c139353c0350fb0194f83a52ee09ceb9bf6a6554f0cc833f44ee9ab892590b99e3fca8eed7f5532b2f64097991f2c0b8699d8a0a68cc57ef2
- Loading branch information
Showing
2 changed files
with
14 additions
and
10 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "cosignerd" | ||
version = "0.0.3" | ||
authors = ["JSwambo <[email protected]>", "Antoine Poinsot <[email protected]>"] | ||
version = "0.1.0" | ||
authors = ["Antoine Poinsot <[email protected]>"] | ||
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 | ||
|