Skip to content
This repository was archived by the owner on Nov 26, 2024. It is now read-only.

Commit 840a981

Browse files
committed
Add readmes and update manifest
1 parent 0a8deae commit 840a981

File tree

5 files changed

+41
-4
lines changed

5 files changed

+41
-4
lines changed

client/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,14 @@ authors = [
88
"Tobin C. Harding <[email protected]>"
99
]
1010
license = "CC0-1.0"
11+
repository = "https://github.com/tcharding/rust-bitcoind-json-rpc"
1112
description = "Bitcoin Core JSON-RPC client"
13+
categories = ["cryptography::cryptocurrencies"]
1214
keywords = ["bitcoin", "bitcoind", "json-rpc"]
15+
readme = "../README.md"
1316
edition = "2021"
17+
rust-version = "1.56.1"
18+
exclude = ["tests", "contrib"]
1419

1520
[features]
1621
# Enable this feature to get a blocking JSON-RPC client.

client/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# bitcoind-json-rpc-client
2+
3+
Rust client for the Bitcoin Core daemon's JSON-RPC API. Currently this
4+
is only a blocking client and is intended to be used in integration testing.
5+
6+
## Minimum Supported Rust Version (MSRV)
7+
8+
This library should always compile with any combination of features on **Rust 1.56.1**.
9+
10+
## Licensing
11+
12+
The code in this project is licensed under the [Creative Commons CC0 1.0 Universal license](LICENSE).
13+
We use the [SPDX license list](https://spdx.org/licenses/) and [SPDX IDs](https://spdx.dev/ids/).

json/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,14 @@ authors = [
88
"Tobin C. Harding <[email protected]>"
99
]
1010
license = "CC0-1.0"
11+
repository = "https://github.com/tcharding/rust-bitcoind-json-rpc"
1112
description = "Bitcoin Core JSON-RPC API types"
13+
categories = ["cryptography::cryptocurrencies"]
1214
keywords = ["bitcoin", "bitcoind", "json-rpc"]
15+
readme = "../README.md"
1316
edition = "2021"
17+
rust-version = "1.56.1"
18+
exclude = ["tests", "contrib"]
1419

1520
[features]
1621
default = []

json/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# bitcoind-json-rpc-types
2+
3+
Types returned by the JSON-RPC API of Bitcoin Core.
4+
5+
## Minimum Supported Rust Version (MSRV)
6+
7+
This library should always compile with any combination of features on **Rust 1.56.1**.
8+
9+
## Licensing
10+
11+
The code in this project is licensed under the [Creative Commons CC0 1.0 Universal license](LICENSE).
12+
We use the [SPDX license list](https://spdx.org/licenses/) and [SPDX IDs](https://spdx.dev/ids/).

regtest/Cargo.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22
name = "bitcoind-json-rpc-regtest"
33
version = "0.1.0"
44
authors = ["Riccardo Casatta <[email protected]>", "Tobin C. Harding <[email protected]>"]
5-
description = "Utility to run a regtest bitcoind process, useful in integration testing environments"
65
license = "MIT"
76
repository = "https://github.com/tcharding/rust-bitcoind-json-rpc"
8-
documentation = "https://docs.rs/bitcoind-json-rpc-regtest/"
9-
rust-version = "1.56.1"
10-
edition = "2018"
7+
description = "Utility to run a regtest bitcoind process, useful in integration testing environments"
118
categories = ["cryptography::cryptocurrencies", "development-tools::testing"]
9+
keywords = ["bitcoin", "bitcoind", "json-rpc"]
10+
readme = "../README.md"
11+
edition = "2021"
12+
rust-version = "1.56.1"
13+
exclude = ["tests", "contrib"]
1214

1315
[dependencies]
1416
bitcoind-json-rpc-client = { version = "0.1", features = ["client-sync"] }

0 commit comments

Comments
 (0)