This repository has been archived by the owner on Nov 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
41 additions
and
4 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -8,9 +8,14 @@ authors = [ | |
"Tobin C. Harding <[email protected]>" | ||
] | ||
license = "CC0-1.0" | ||
repository = "https://github.com/tcharding/rust-bitcoind-json-rpc" | ||
description = "Bitcoin Core JSON-RPC client" | ||
categories = ["cryptography::cryptocurrencies"] | ||
keywords = ["bitcoin", "bitcoind", "json-rpc"] | ||
readme = "../README.md" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
exclude = ["tests", "contrib"] | ||
|
||
[features] | ||
# Enable this feature to get a blocking JSON-RPC client. | ||
|
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# bitcoind-json-rpc-client | ||
|
||
Rust client for the Bitcoin Core daemon's JSON-RPC API. Currently this | ||
is only a blocking client and is intended to be used in integration testing. | ||
|
||
## Minimum Supported Rust Version (MSRV) | ||
|
||
This library should always compile with any combination of features on **Rust 1.56.1**. | ||
|
||
## Licensing | ||
|
||
The code in this project is licensed under the [Creative Commons CC0 1.0 Universal license](LICENSE). | ||
We use the [SPDX license list](https://spdx.org/licenses/) and [SPDX IDs](https://spdx.dev/ids/). |
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 |
---|---|---|
|
@@ -8,9 +8,14 @@ authors = [ | |
"Tobin C. Harding <[email protected]>" | ||
] | ||
license = "CC0-1.0" | ||
repository = "https://github.com/tcharding/rust-bitcoind-json-rpc" | ||
description = "Bitcoin Core JSON-RPC API types" | ||
categories = ["cryptography::cryptocurrencies"] | ||
keywords = ["bitcoin", "bitcoind", "json-rpc"] | ||
readme = "../README.md" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
exclude = ["tests", "contrib"] | ||
|
||
[features] | ||
default = [] | ||
|
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# bitcoind-json-rpc-types | ||
|
||
Types returned by the JSON-RPC API of Bitcoin Core. | ||
|
||
## Minimum Supported Rust Version (MSRV) | ||
|
||
This library should always compile with any combination of features on **Rust 1.56.1**. | ||
|
||
## Licensing | ||
|
||
The code in this project is licensed under the [Creative Commons CC0 1.0 Universal license](LICENSE). | ||
We use the [SPDX license list](https://spdx.org/licenses/) and [SPDX IDs](https://spdx.dev/ids/). |
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 |
---|---|---|
|
@@ -2,13 +2,15 @@ | |
name = "bitcoind-json-rpc-regtest" | ||
version = "0.1.0" | ||
authors = ["Riccardo Casatta <[email protected]>", "Tobin C. Harding <[email protected]>"] | ||
description = "Utility to run a regtest bitcoind process, useful in integration testing environments" | ||
license = "MIT" | ||
repository = "https://github.com/tcharding/rust-bitcoind-json-rpc" | ||
documentation = "https://docs.rs/bitcoind-json-rpc-regtest/" | ||
rust-version = "1.56.1" | ||
edition = "2018" | ||
description = "Utility to run a regtest bitcoind process, useful in integration testing environments" | ||
categories = ["cryptography::cryptocurrencies", "development-tools::testing"] | ||
keywords = ["bitcoin", "bitcoind", "json-rpc"] | ||
readme = "../README.md" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
exclude = ["tests", "contrib"] | ||
|
||
[dependencies] | ||
bitcoind-json-rpc-client = { version = "0.1", features = ["client-sync"] } | ||
|